:root {
  --navy: #062b56;
  --navy-2: #021f40;
  --blue: #0877df;
  --blue-2: #0b8cec;
  --sky: #eaf6ff;
  --ink: #0c2d53;
  --muted: #60748d;
  --line: #dce8f2;
  --white: #fff;
  --orange: #ff8500;
  --green: #19a451;
  --shadow: 0 18px 48px rgba(11, 67, 119, 0.12);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
.skip-link {
  position: fixed;
  top: -60px;
  left: 12px;
  z-index: 9999;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
}
.skip-link:focus {
  top: 12px;
}
.contact-dock {
  position: fixed;
  left: 18px;
  top: 90%;
  z-index: 999;
  display: grid;
  gap: 9px;
  transform: translateY(-50%);
}
.contact-dock a {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 48px;
  height: 48px;
  padding: 0 14px;
  overflow: hidden;
  border-radius: 24px;
  color: #fff;
  box-shadow: 0 10px 24px rgba(6, 43, 86, 0.22);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
  transition: width 0.25s ease, transform 0.25s ease;
}
.contact-dock a:hover,
.contact-dock a:focus-visible {
  width: 47px;
  color: #fff;
  transform: translateX(2px);
}
.contact-dock i {
  flex: 0 0 20px;
  font-size: 1.2rem;
  text-align: center;
}
.contact-dock__call {
  background: var(--blue);
}
.contact-dock__whatsapp {
  background: #25d366;
}
.container-xl {
  max-width: 1240px;
}
.section {
  padding: 100px 0;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}
h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 3.25rem);
}
p {
  color: var(--muted);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: 0.25s ease;
}
.btn-brand {
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 24px rgba(8, 119, 223, 0.22);
}
.btn-brand:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-brand {
  border: 1.5px solid var(--blue);
  background: #fff;
  color: var(--blue);
}
.btn-outline-brand:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
  border-bottom: 1px solid rgba(8, 119, 223, 0.35);
  padding-bottom: 3px;
}
.text-link i {
  transition: transform 0.2s ease;
}
.text-link:hover i {
  transform: translateX(5px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 82px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 232, 242, 0.8);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled {
  box-shadow: 0 8px 28px rgba(8, 50, 92, 0.09);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  width: 190px;
  flex: 0 0 auto;
}
.brand img {
  width: 100%;
  height: 80px;
  object-fit: contain;
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-left: auto;
}
.site-nav a {
  position: relative;
  color: #52677f;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 30px 0 27px;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 0;
  height: 2px;
  background: var(--blue);
  transform: translateX(-50%);
  transition: width 0.2s ease;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--blue);
}
.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}
.header-cta {
  margin-left: 8px;
  min-height: 44px;
  padding-inline: 20px;
}
.nav-dropdown {
  position: relative;
}
.site-nav .nav-dropdown__trigger {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-dropdown__trigger > i {
  font-size: 0.68rem;
  transition: transform 0.2s ease;
}
.nav-mega {
  position: fixed;
  top: 74px;
  left: 50%;
  z-index: 1020;
  width: min(1180px, calc(100vw - 40px));
  max-height: calc(100vh - 100px);
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid rgba(8, 119, 223, 0.13);
  border-top: 3px solid var(--blue);
  border-radius: 0 0 18px 18px;
  box-shadow: 0 24px 55px rgba(6, 43, 86, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.nav-dropdown:hover .nav-mega,
.nav-dropdown:focus-within .nav-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-dropdown:hover .nav-dropdown__trigger > i,
.nav-dropdown:focus-within .nav-dropdown__trigger > i {
  transform: rotate(180deg);
}
.nav-mega__group {
  min-width: 0;
}
.site-nav .nav-mega a {
  padding: 0;
}
.site-nav .nav-mega a::after {
  display: none;
}
.site-nav .nav-mega__heading {
  min-height: 46px;
  margin-bottom: 9px;
  padding-bottom: 11px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 0.85rem;
  line-height: 1.25;
  border-bottom: 1px solid var(--line);
}
.nav-mega__heading i {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #1aa8f5);
  border-radius: 9px;
}
.site-nav .nav-mega__item {
  display: block;
  padding: 6px 4px;
  color: #667a90;
  font-size: 0.74rem;
  line-height: 1.35;
  font-weight: 600;
}
.site-nav .nav-mega__item:hover {
  color: var(--blue);
  transform: translateX(3px);
}
.site-nav .nav-mega__all {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  color: #fff;
  background: var(--navy);
  border-radius: 9px;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  transition: 0.2s ease;
}

.hero {
  position: relative;
  background: #f7fbff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 95, 171, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 95, 171, 0.025) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to right, transparent 0, #000 55%, #000);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  min-height: 600px;
  padding-top: 0;
}
.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 55px 12px 60px;
}
.hero h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.6vw, 5.3rem);
}
.hero h1 span {
  color: var(--blue);
}
.hero-lead {
  max-width: 590px;
  margin-bottom: 30px;
  font-size: 1.08rem;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
  min-height: 600px;
  align-self: stretch;
  margin-right: calc((1240px - 100vw) / 2);
  overflow: hidden;
  background: #dcecf8;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 22%;
  background: linear-gradient(90deg, #f7fbff, transparent);
  z-index: 2;
  pointer-events: none;
}
.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-slide {
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 0.75s ease, transform 3s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.quality-badge {
  position: absolute;
  right: 22px;
  top: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
  z-index: 3;
}
.quality-badge i {
  color: var(--blue);
  font-size: 1.55rem;
}
.hero-caption {
  position: absolute;
  right: 32px;
  bottom: 24px;
  padding-left: 48px;
  color: #6785a5;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  z-index: 3;
}
.hero-caption::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 34px;
  height: 2px;
  background: var(--blue);
}
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 3;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}
.hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 1px 4px rgba(6, 43, 86, 0.25);
  transition: width 0.25s ease, background 0.25s ease;
}
.hero-dots button.active {
  width: 26px;
  background: var(--blue);
}
.trust-strip {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 106px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  justify-content: center;
}
.trust-strip > div {
  display: flex;
  align-items: center;
  gap: 13px;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
  padding: 0 28px;
  border-right: 1px solid var(--line);
  color: #516780;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}
.trust-strip > div:first-child {
  padding-left: 28px;
}
.trust-strip > div:last-child {
  border-right: 0;
}
.trust-strip i {
  color: var(--blue);
  font-size: 1.7rem;
}
.india-flag {
  font-size: 1.55rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-media {
  position: relative;
  padding: 0 0 28px 28px;
}
.about-media::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 74%;
  height: 75%;
  background: var(--sky);
  border-radius: 10px;
}
.about-media img {
  position: relative;
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.experience-card {
  position: absolute;
  left: 0;
  bottom: 0;
  min-width: 160px;
  padding: 22px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(3, 51, 93, 0.16);
}
.experience-card strong {
  display: block;
  color: var(--blue);
  font-size: 2.35rem;
  line-height: 1;
}
.experience-card span {
  color: var(--ink);
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.35;
}
.about-copy {
  position: relative;
  padding-right: 130px;
}
.about-copy > p:not(.eyebrow) {
  max-width: 520px;
}
.india-map {
  position: absolute;
  right: -25px;
  top: 50px;
  width: 155px;
  height: auto;
  opacity: 0.88;
  mix-blend-mode: multiply;
}
.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 30px 0;
}
.about-points div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 10px;
  border-right: 1px solid var(--line);
}
.about-points div:last-child {
  border-right: 0;
}
.about-points i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--blue);
  font-size: 1.15rem;
}
.about-points div:last-child i {
  color: var(--green);
}
.about-points span {
  color: #5f7289;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
}

.products,
.clients {
  background: #f8fbfe;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}
.section-head h2 {
  margin: 0;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(16, 73, 125, 0.06);
  transition: 0.3s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.product-image {
  height: 225px;
  overflow: hidden;
  background: #eff5f8;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-image img {
  transform: scale(1.05);
}
.product-image.sewerage img {
  filter: saturate(0.7) contrast(1.08);
  object-position: 72% center;
}
.product-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 137px;
  padding: 20px;
}
.product-body h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  letter-spacing: -0.02em;
}
.product-body p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.5;
}
.product-body > a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
}
.product-body > a:hover {
  background: var(--blue);
  color: #fff;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.application-card {
  position: relative;
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(16, 73, 125, 0.06);
  transition: 0.3s ease;
}
.application-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}
.application-card > img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.application-card:hover > img {
  transform: scale(1.04);
}
.application-body {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 110px;
  padding: 18px 20px;
}
.application-body > i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 1.05rem;
}
.application-card h3 {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 1rem;
  letter-spacing: -0.02em;
}
.application-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.quality {
  position: relative;
  padding: 85px 0;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(6, 43, 86, 0.9) 0%, rgba(6, 62, 120, 0.82) 100%),
    url("assets/bg.png") center / cover no-repeat;
  overflow: hidden;
}
.quality::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(104, 190, 255, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 35px rgba(104, 190, 255, 0.025),
    0 0 0 70px rgba(104, 190, 255, 0.02),
    0 0 0 105px rgba(104, 190, 255, 0.015);
}
.quality-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 64px;
  align-items: center;
}
.quality-image {
  position: relative;
  width: 370px;
  max-width: 100%;
  aspect-ratio: 1;
  margin-inline: auto;
  padding: 17px;
  border: 1px dashed #5bb7fa;
  border-radius: 50%;
}
.quality-image::before {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(91, 183, 250, 0.24);
  border-radius: 50%;
}
.quality-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 7px solid #fff;
  border-radius: 50%;
}
.eyebrow.light {
  color: #83c9ff;
}
.quality-content h2,
.quality-content h3 {
  color: #fff;
}
.quality-content > p:not(.eyebrow) {
  color: #c0d4e7;
}
.quality-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 32px 0;
}
.quality-steps > div {
  min-height: 185px;
  padding: 0 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.quality-steps > div:first-child {
  padding-left: 0;
}
.quality-steps > div:last-child {
  border-right: 0;
}
.quality-steps span {
  color: #33a9ff;
  font-weight: 800;
}
.quality-steps i {
  display: block;
  margin: 8px 0 12px;
  color: #7cc7ff;
  font-size: 1.4rem;
}
.quality-steps h3 {
  margin-bottom: 7px;
  font-size: 0.95rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.quality-steps p {
  margin: 0;
  color: #a9c3da;
  font-size: 0.72rem;
  line-height: 1.45;
}
.btn-light-outline {
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #fff;
}
.btn-light-outline:hover {
  background: #fff;
  color: var(--navy);
}

.manufacturing-video {
  background: #f7fbff;
}
.manufacturing-video .section-head {
  align-items: flex-end;
}
.video-intro {
  max-width: 430px;
  margin: 0 0 7px;
}
.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  border-radius: 14px;
  background: var(--navy);
  box-shadow: 0 24px 60px rgba(6, 43, 86, 0.18);
}
.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(2, 31, 64, 0.62));
  pointer-events: none;
}
.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-label {
  position: absolute;
  left: 28px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.video-label i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue);
  font-size: 1.15rem;
}

.partner-note {
  color: #6a8199;
  font-size: 0.82rem;
  font-weight: 700;
}
.logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 7%,
    #000 93%,
    transparent
  );
}
.logo-track {
  display: flex;
  width: max-content;
  animation: marquee 50s linear infinite;
}
.logo-set {
  display: flex;
  gap: 18px;
  padding-right: 18px;
}
.logo-card {
  display: grid;
  place-items: center;
  width: 100%;
  height: 200px;
  flex: 0 0 190px;
  padding: 12px;
  background: #fff;
  border: 1px solid #e5eef5;
  border-radius: 9px;
  box-shadow: 0 8px 20px rgba(17, 69, 117, 0.05);
}
.logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.cta-section {
  background: #eaf6ff;
}
.cta-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 330px;
  overflow: hidden;
}
.cta-wrap h2 {
  margin-bottom: 16px;
}
.cta-wrap p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
}
.cta-wrap > *:not(.pipe-drawing) {
  position: relative;
  z-index: 2;
}
.pipe-drawing {
  position: absolute;
  right: 0;
  top: 18px;
  width: 430px;
  height: auto;
  opacity: 0.88;
  mix-blend-mode: multiply;
}

.footer {
  padding: 72px 0 0;
  color: #b8cada;
  background: #00081e
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.65fr 0.8fr 1fr 0.8fr 1.2fr;
  gap: 42px;
  padding-bottom: 55px;
}
.footer-brand img {
  width: 220px;
  height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.18));
}
.footer-brand > p {
  max-width: 290px;
}
.footer h3 {
  margin: 8px 0 22px;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0;
}
.footer p,
.footer a {
  display: block;
  margin: 0 0 9px;
  color: #adc2d5;
  font-size: 0.79rem;
  line-height: 1.6;
}
.footer a:hover {
  color: #fff;
}
.socials {
  display: flex;
  gap: 9px;
  margin-top: 20px;
}
.socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.footer-enquiry {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  margin-top: 8px !important;
  color: #55b5ff !important;
  font-weight: 800;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #93abc0;
  font-size: 0.72rem;
}
.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 9px 25px rgba(8, 73, 135, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.2s ease;
}
.back-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 19px;
  }
  .header-cta {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
  .hero-visual {
    margin-right: 0;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .application-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1.5fr repeat(2, 1fr);
  }
  .footer-grid > div:nth-child(4),
  .footer-grid > div:nth-child(5) {
    margin-top: 20px;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 76px 0;
  }
  .nav-wrap {
    justify-content: space-between;
  }
  .brand {
    width: 165px;
  }
  .nav-toggle {
    display: block;
  }
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: grid;
    gap: 0;
    padding: 12px 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.2s ease;
  }
  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .site-nav a {
    padding: 12px 4px;
    border-bottom: 1px solid #edf3f8;
  }
  .site-nav a:last-child {
    border-bottom: 0;
  }
  .site-nav a::after {
    display: none;
  }
  .site-nav .nav-dropdown__trigger {
    justify-content: space-between;
  }
  .nav-mega {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0 8px;
    grid-template-columns: 1fr;
    gap: 16px;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    transform: none;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  .nav-dropdown:hover .nav-mega,
  .nav-dropdown:focus-within .nav-mega {
    transform: none;
  }
  .nav-dropdown.open .nav-mega {
    max-height: 68vh;
    padding: 12px 8px 18px;
    overflow-y: auto;
    pointer-events: auto;
  }
  .nav-dropdown.open .nav-dropdown__trigger > i {
    transform: rotate(180deg);
  }
  .site-nav .nav-mega__heading {
    border-bottom: 0;
    margin-bottom: 3px;
    min-height: 38px;
    padding-bottom: 3px;
  }
  .site-nav .nav-mega__item {
    padding: 6px 0 6px 42px;
    border-bottom: 0;
  }
  .site-nav .nav-mega__all {
    padding: 11px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 30px;
  }
  .hero-copy {
    padding-bottom: 28px;
  }
  .hero-visual {
    min-height: 440px;
    margin-inline: -12px;
    background-position: 58% center;
  }
  .trust-strip {
    overflow-x: auto;
    justify-content: flex-start;
  }
  .trust-strip > div {
    min-width: 175px;
    padding: 0 24px;
  }
  .about-grid,
  .quality-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .about-copy {
    padding-right: 145px;
  }
  .about-media img {
    height: 430px;
  }
  .quality-image {
    width: 330px;
  }
  .cta-wrap {
    grid-template-columns: 1fr;
    padding-top: 62px;
    padding-bottom: 62px;
  }
  .cta-wrap .btn {
    justify-self: start;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 580px) {
  body {
    font-size: 15px;
  }
  .section {
    padding: 62px 0;
  }
  .container-xl {
    padding-left: 20px;
    padding-right: 20px;
  }
  .site-header,
  .nav-wrap {
    min-height: 72px;
  }
  .brand {
    width: 142px;
  }
  .brand img {
    height: 58px;
  }
  .site-nav {
    top: 68px;
  }
  .contact-dock {
    left: 10px;
    top: auto;
    bottom: 18px;
    transform: none;
  }
  .contact-dock a,
  .contact-dock a:hover,
  .contact-dock a:focus-visible {
    width: 46px;
    height: 46px;
    padding: 0 13px;
  }
  .hero-grid {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-copy {
    padding-inline: 0;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .hero-lead {
    font-size: 1rem;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-visual {
    min-height: 330px;
    margin-inline: -20px;
    background-position: 62% center;
  }
  .quality-badge {
    top: 18px;
    right: 16px;
  }
  .hero-caption {
    bottom: 46px;
  }
  .hero-dots {
    bottom: 18px;
  }
  .trust-strip {
    padding-left: 0;
    padding-right: 0;
  }
  .about-grid {
    gap: 40px;
  }
  .about-copy {
    padding-right: 0;
  }
  .india-map {
    display: none;
  }
  .about-media {
    padding: 0 0 22px 16px;
  }
  .about-media img {
    height: 330px;
  }
  .about-points {
    grid-template-columns: 1fr;
  }
  .about-points div {
    padding: 10px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .section-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 30px;
  }
  .product-grid,
  .application-grid {
    grid-template-columns: 1fr;
  }
  .product-image {
    height: 240px;
  }
  .application-card {
    min-height: 340px;
  }
  .application-card > img {
    height: 230px;
  }
  .quality {
    padding: 70px 0;
  }
  .quality-image {
    width: 270px;
  }
  .quality-steps {
    grid-template-columns: 1fr;
  }
  .quality-steps > div {
    min-height: auto;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
  .quality-steps > div:last-child {
    border-bottom: 0;
  }
  .video-frame {
    aspect-ratio: 4 / 3;
    border-radius: 10px;
  }
  .video-label {
    left: 16px;
    bottom: 14px;
    max-width: calc(100% - 32px);
    font-size: 0.68rem;
  }
  .logo-card {
    width: 160px;
    height: 92px;
    flex-basis: 160px;
  }
  .partner-note {
    display: none;
  }
  .cta-wrap {
    min-height: 420px;
  }
  .pipe-drawing {
    right: -120px;
    top: 85px;
    width: 380px;
    opacity: 0.55;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-grid > div:nth-child(4),
  .footer-grid > div:nth-child(5) {
    margin-top: 0;
  }
  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* Full-width hero image — removes white left background */
.hero {
  background: #062b56;
}

.hero-grid {
  position: relative;
  isolation: isolate;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100vw;
  height: 100%;
  min-height: 100%;
  margin: 0 0 0 calc(50% - 50vw);
  overflow: hidden;
}

/* Dark gradient for text readability */
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(2, 31, 64, 0.94) 0%,
    rgba(4, 49, 91, 0.82) 30%,
    rgba(4, 49, 91, 0.28) 58%,
    rgba(2, 31, 64, 0.04) 100%
  );
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero-copy .eyebrow {
  color: #75c5ff;
}

.hero h1 {
  color: #ffffff;
}

.hero h1 span {
  color: #43adff;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions .btn-outline-brand {
  border-color: #ffffff;
  background: rgba(3, 38, 73, 0.25);
  color: #ffffff;
}

/* Stronger overlay on mobile */
@media (max-width: 580px) {
  .hero-visual::before {
    background: linear-gradient(
      90deg,
      rgba(2, 31, 64, 0.95),
      rgba(4, 49, 91, 0.72)
    );
  }
}


.environment-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(24, 164, 81, 0.12), transparent 30%),
    linear-gradient(135deg, #f5fbf7 0%, #ffffff 65%);
}

.environment-section::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(24, 164, 81, 0.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 45px rgba(24, 164, 81, 0.025),
    0 0 0 90px rgba(24, 164, 81, 0.018);
}

.environment-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 50px;
}

.environment-header h2 {
  margin-bottom: 0;
}

.environment-header > p {
  max-width: 510px;
  margin: 0 0 8px;
}

.environment-section .eyebrow {
  color: #15934a;
}

.environment-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #dcece2;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 50px rgba(14, 84, 47, 0.08);
}

.environment-card {
  position: relative;
  min-height: 275px;
  padding: 32px 26px;
  border-right: 1px solid #dcece2;
  transition: 0.3s ease;
}

.environment-card:last-child {
  border-right: 0;
}

.environment-card:hover {
  background: #15934a;
  transform: translateY(-5px);
}

.environment-card i {
  display: block;
  margin: 25px 0 20px;
  color: #15934a;
  font-size: 2rem;
}

.environment-number {
  color: #8ca799;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.environment-card h3 {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.environment-card p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.65;
}

.environment-card:hover i,
.environment-card:hover h3,
.environment-card:hover p,
.environment-card:hover .environment-number {
  color: #ffffff;
}

@media (max-width: 900px) {
  .environment-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

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

  .environment-card:nth-child(2) {
    border-right: 0;
  }

  .environment-card:nth-child(-n + 2) {
    border-bottom: 1px solid #dcece2;
  }
}

@media (max-width: 580px) {
  .environment-grid {
    grid-template-columns: 1fr;
  }

  .environment-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid #dcece2;
  }

  .environment-card:last-child {
    border-bottom: 0;
  }
}

.iso-banner {
  position: relative;
  padding: 85px 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 90% 15%,
      rgba(53, 169, 255, 0.2),
      transparent 35%
    ),
    linear-gradient(120deg, #031f40 0%, #063d76 100%);
}

.iso-banner::before {
  content: "";
  position: absolute;
  left: -180px;
  bottom: -270px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(120, 199, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 45px rgba(120, 199, 255, 0.025),
    0 0 0 90px rgba(120, 199, 255, 0.018);
}

.iso-banner-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 60px;
  align-items: center;
}

/* Left content */

.iso-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: #77c9ff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.iso-eyebrow i {
  font-size: 1rem;
}

.iso-banner-content h2 {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: clamp(2.1rem, 3.7vw, 3.5rem);
}

.iso-banner-content > p:not(.iso-eyebrow) {
  max-width: 470px;
  margin-bottom: 27px;
  color: #bdd2e5;
  font-size: 0.94rem;
}

.iso-banner-points {
  display: grid;
  gap: 11px;
}

.iso-banner-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
}

.iso-banner-points i {
  color: #51b8ff;
  font-size: 1rem;
}

/* Certificate cards */

.certificate-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.certificate-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 20px 45px rgba(0, 15, 35, 0.25);
  transition: 0.3s ease;
}

.certificate-card:hover {
  border-color: #62bdff;
  color: inherit;
  transform: translateY(-7px);
}

.certificate-image {
  position: relative;
  height: 285px;
  padding: 3px;
  overflow: hidden;
  background: #eef3f7;
}

.certificate-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: 0.35s ease;
}

.certificate-card:hover .certificate-image img {
  transform: scale(1.025);
}

.certificate-image span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(6, 43, 86, 0.92);
  color: #ffffff;
  opacity: 0;
  transform: translateY(5px);
  transition: 0.3s ease;
}

.certificate-card:hover .certificate-image span {
  opacity: 1;
  transform: translateY(0);
}

.certificate-info {
  min-height: 98px;
  padding: 18px 16px;
  border-top: 1px solid #dce8f2;
}

.certificate-info small {
  display: block;
  min-height: 32px;
  margin-bottom: 6px;
  color: #6b8096;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.certificate-info h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

/* Tablet */

@media (max-width: 1050px) {
  .iso-banner-grid {
    grid-template-columns: 1fr;
  }

  .iso-banner-content {
    max-width: 650px;
  }
}

/* Mobile */

@media (max-width: 760px) {
  .iso-banner {
    padding: 65px 0;
  }

  .certificate-cards {
    grid-template-columns: 1fr;
  }

  .certificate-image {
    height: 400px;
  }

  .certificate-image span {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 480px) {
  .certificate-image {
    height: 320px;
  }
}


.industry-marquee {
  position: relative;
  width: 100%;
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(90deg, #031f40, #075fab, #031f40);
}

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

.industry-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #031f40, transparent);
}

.industry-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #031f40, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: creator-marquee 32s linear infinite;
  will-change: transform;
}

.marquee-set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee-set span {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 0 30px;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-transform: uppercase;
}

.marquee-set i {
  color: #55baff;
  font-size: 0.38rem;
}

.industry-marquee:hover .marquee-track {
  animation-play-state: paused;
}

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

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

@media (max-width: 580px) {
  .industry-marquee {
    padding: 15px 0;
  }

  .industry-marquee::before,
  .industry-marquee::after {
    width: 45px;
  }

  .marquee-set span {
    padding: 0 20px;
    font-size: 0.72rem;
  }

  .marquee-track {
    animation-duration: 25s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation-play-state: paused;
  }
}


.benefit-strip {
  width: 100%;
  padding: 35px 20px;
 
}

.benefit-container {
  width: min(1400px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #ffffff;
  border: 1px solid #e5edf5;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(15, 49, 84, 0.08);
  overflow: hidden;
}

.benefit-item {
  position: relative;
  min-height: 135px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 17px;
  border-right: 1px solid #e5edf5;
  transition: background-color 0.3s ease;
}

.benefit-item:last-child {
  border-right: none;
}

.benefit-item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  background: #087de1;
  transition: width 0.3s ease;
}

.benefit-item:hover {
  background: #f8fbff;
}

.benefit-item:hover::before {
  width: 100%;
}

.benefit-icon {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #087de1;
  font-size: 24px;
  background: #eaf5ff;
  border-radius: 14px;
}

.benefit-content h3 {
  margin: 0 0 7px;
  color: #102a49;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.benefit-content p {
  margin: 0;
  color: #718096;
  font-size: 14px;
  line-height: 1.5;
}

/* Tablet */
@media (max-width: 1050px) {
  .benefit-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-item:nth-child(2) {
    border-right: none;
  }

  .benefit-item:nth-child(-n + 2) {
    border-bottom: 1px solid #e5edf5;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .benefit-strip {
    padding: 20px 15px;
  }

  .benefit-container {
    grid-template-columns: 1fr;
  }

  .benefit-item {
    min-height: 110px;
    border-right: none;
    border-bottom: 1px solid #e5edf5;
  }

  .benefit-item:last-child {
    border-bottom: none;
  }

  .benefit-content h3 {
    font-size: 16px;
  }
}

.environment-section {
  position: relative;
  width: 100%;
  min-height: 650px;
  padding: 100px 20px;
  overflow: hidden;

  /* Replace this path with your background image */
  background-image: url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR062rfCGNWs2JymEf1LyM8giEHKOp4FwmvkuIbBXaNCg&s=10");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.environment-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 55, 39, 0.94) 0%,
      rgba(0, 63, 46, 0.84) 48%,
      rgba(0, 62, 50, 0.76) 100%
    );
}

.environment-container {
  position: relative;
  z-index: 2;
  width: min(1400px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 80px;
}

/* Left content */

.environment-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;

  color: #37db91;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
}

.environment-label::before {
  content: "";
  width: 3px;
  height: 26px;
  background: #37db91;
  border-radius: 10px;
}

.environment-content h2 {
  max-width: 650px;
  margin: 0 0 24px;
  color: #ffffff;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 800;
  line-height: 1.08;
}

.environment-content h2 span {
  display: block;
  color: #27d77d;
}

.environment-content > p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.8;
}

.environment-highlight {
  max-width: 680px;
  margin-top: 38px;
  padding: 24px 26px;

  display: flex;
  align-items: flex-start;
  gap: 18px;

  background: rgba(0, 116, 74, 0.25);
  border: 1px solid rgba(50, 218, 139, 0.4);
  border-radius: 15px;
  backdrop-filter: blur(8px);
}

.environment-highlight > i {
  margin-top: 4px;
  color: #2ee38d;
  font-size: 27px;
}

.environment-highlight strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 18px;
}

.environment-highlight span {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.6;
}

/* Right cards */

.environment-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.environment-card {
  min-height: 205px;
  padding: 28px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 30, 20, 0.2);

  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.environment-card:hover {
  transform: translateY(-7px);
  
}

.environment-card-icon {
  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  font-size: 24px;
  background: linear-gradient(135deg, #08a965, #25d785);
  border-radius: 15px;
}

.environment-card h3 {
  margin: 22px 0 8px;
  color: #12352b;
  font-size: 19px;
  font-weight: 800;
}

.environment-card p {
  margin: 0;
  color: #63756f;
  font-size: 14px;
  line-height: 1.6;
}

/* Tablet */

@media (max-width: 1000px) {
  .environment-section {
    padding: 75px 20px;
  }

  .environment-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* Mobile */

@media (max-width: 600px) {
  .environment-section {
    padding: 60px 15px;
    background-position: center;
  }

  .environment-content h2 {
    font-size: 35px;
  }

  .environment-content > p {
    font-size: 16px;
  }

  .environment-benefits {
    grid-template-columns: 1fr;
  }

  .environment-card {
    min-height: auto;
    padding: 24px;
  }

  .environment-highlight {
    padding: 20px;
  }
}

.contact-section {
  position: relative;
  padding: 90px 20px;
  background: #f3f8fc;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;

  padding: 65px;
  background: #ffffff;
  border: 1px solid #e3edf5;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(12, 50, 84, 0.1);
}

/* Left content */

.contact-content .eyebrow {
  margin: 0 0 18px;
  color: #087de1;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-content h2 {
  margin: 0 0 22px;
  color: #0b2c52;
  font-size: clamp(36px, 4vw, 55px);
  font-weight: 800;
  line-height: 1.1;
}

.contact-content h2 span {
  display: block;
  color: #087de1;
}

.contact-content > p {
  max-width: 580px;
  margin: 0 0 35px;
  color: #65758a;
  font-size: 17px;
  line-height: 1.8;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 18px;
}

.contact-detail > i {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  font-size: 19px;
  background: #087de1;
  border-radius: 12px;
}

.contact-detail span {
  display: block;
  margin-bottom: 3px;
  color: #718096;
  font-size: 13px;
}

.contact-detail a {
  color: #0b2c52;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

/* Form */

.contact-form-box {
  padding: 38px;
  background: #f8fbfe;
  border: 1px solid #dfebf4;
  border-radius: 20px;
}

.contact-form-box h3 {
  margin: 0 0 7px;
  color: #0b2c52;
  font-size: 27px;
  font-weight: 800;
}

.contact-form-box > p {
  margin: 0 0 28px;
  color: #718096;
  font-size: 14px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: #183b60;
  font-size: 14px;
  font-weight: 700;
}

.form-group input {
  width: 100%;
  height: 53px;
  padding: 0 16px;

  color: #142b44;
  font-family: inherit;
  font-size: 15px;

  background: #ffffff;
  border: 1px solid #d6e2ed;
  border-radius: 10px;
  outline: none;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.form-group input::placeholder {
  color: #9aa8b6;
}

.form-group input:focus {
  border-color: #087de1;
  box-shadow: 0 0 0 4px rgba(8, 125, 225, 0.1);
}

.contact-submit {
  grid-column: 1 / -1;
  min-height: 55px;
  margin-top: 5px;
  padding: 14px 25px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  color: #ffffff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;

  background: #087de1;
  border: none;
  border-radius: 10px;
  cursor: pointer;

  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.contact-submit:hover {
  background: #0566bd;
  transform: translateY(-2px);
}

/* Tablet and mobile */

@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 45px;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 55px 15px;
  }

  .contact-wrapper {
    padding: 27px 20px;
    border-radius: 17px;
  }

  .contact-content h2 {
    font-size: 34px;
  }

  .contact-form-box {
    padding: 25px 18px;
  }

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

  .contact-submit {
    grid-column: auto;
  }
}

.why-hdpe-section {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
  background: #f4f8fc;
}

.why-hdpe-section::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 450px;
  height: 450px;
  background: rgba(0, 125, 225, 0.07);
  border-radius: 50%;
}

.why-hdpe-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 80px;
}

/* Left content */

.why-hdpe-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;

  color: #087de1;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
}

.why-hdpe-label::before {
  content: "";
  width: 38px;
  height: 2px;
  background: #087de1;
}

.why-hdpe-content h2 {
  max-width: 700px;
  margin: 0 0 25px;
  color: #092c53;
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 800;
  line-height: 1.08;
}

.why-hdpe-content h2 span {
  display: block;
  color: #087de1;
}

.why-hdpe-description {
  max-width: 680px;
  margin: 0 0 20px;
  color: #65758a;
  font-size: 17px;
  line-height: 1.8;
}

.why-hdpe-tagline {
  max-width: 650px;
  margin: 0 0 32px;
  padding-left: 18px;
  color: #183b60;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  border-left: 3px solid #087de1;
}

.why-hdpe-button {
  min-height: 52px;
  padding: 14px 25px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;

  background: #087de1;
  border-radius: 9px;
  box-shadow: 0 10px 25px rgba(8, 125, 225, 0.2);

  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}

.why-hdpe-button:hover {
  color: #ffffff;
  background: #0567bd;
  transform: translateY(-3px);
}

/* Statistics */

.why-hdpe-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-stat-card {
  min-height: 310px;
  padding: 32px 26px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  background: #ffffff;
  border: 1px solid #dfebf5;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(12, 48, 80, 0.1);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.why-stat-card:nth-child(2) {
  margin-top: 45px;
}

.why-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(12, 48, 80, 0.16);
}

.why-stat-icon {
  width: 58px;
  height: 58px;
  margin-bottom: auto;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #087de1;
  font-size: 25px;
  background: #eaf5ff;
  border-radius: 15px;
}

.why-stat-number {
  display: flex;
  align-items: flex-start;
  color: #092c53;
  line-height: 1;
}

.why-stat-number span {
  font-size: 58px;
  font-weight: 800;
}

.why-stat-number sup {
  margin: 4px 0 0 3px;
  color: #087de1;
  font-size: 27px;
  font-weight: 800;
}

.why-stat-card h3 {
  margin: 14px 0 8px;
  color: #173958;
  font-size: 18px;
  font-weight: 800;
}

.why-stat-card p {
  margin: 0;
  color: #718096;
  font-size: 14px;
  line-height: 1.6;
}

/* Blue card */

.why-stat-card-blue {
  color: #ffffff;
  background: linear-gradient(145deg, #087de1, #055da9);
  border-color: transparent;
}

.why-stat-card-blue .why-stat-icon {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}

.why-stat-card-blue .why-stat-number,
.why-stat-card-blue .why-stat-number sup,
.why-stat-card-blue h3 {
  color: #ffffff;
}

.why-stat-card-blue p {
  color: rgba(255, 255, 255, 0.75);
}

/* Responsive */

@media (max-width: 1000px) {
  .why-hdpe-wrapper {
    grid-template-columns: 1fr;
    gap: 55px;
  }
}

@media (max-width: 600px) {
  .why-hdpe-section {
    padding: 65px 15px;
  }

  .why-hdpe-content h2 {
    font-size: 36px;
  }

  .why-hdpe-description {
    font-size: 16px;
  }

  .why-hdpe-stats {
    grid-template-columns: 1fr;
  }

  .why-stat-card,
  .why-stat-card:nth-child(2) {
    min-height: 260px;
    margin-top: 0;
  }

  .why-stat-number span {
    font-size: 50px;
  }
}
/* =========================================================
   Inner pages + applications carousel
   Built from the homepage Creator Poly design system
   ========================================================= */

.application-carousel {
  width: 100%;
  overflow: hidden;
  padding: 8px 0 26px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
}
.application-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: applicationLoop 32s linear infinite;
  will-change: transform;
}
.application-carousel:hover .application-track {
  animation-play-state: paused;
}
.application-track .application-card {
  flex: 0 0 clamp(265px, 23vw, 292px);
  width: clamp(265px, 23vw, 292px);
}
.application-track .application-card h3 {
  font-size: 0.94rem;
  line-height: 1.3;
}
@keyframes applicationLoop {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}
@media (prefers-reduced-motion: reduce) {
  .application-track { animation: none; }
  .application-carousel { overflow-x: auto; mask-image: none; -webkit-mask-image: none; }
}

.inner-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 20%, rgba(8, 119, 223, 0.12), transparent 33%),
    linear-gradient(135deg, #f7fbff 0%, #eef7ff 55%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
}
.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(7, 95, 171, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 95, 171, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 70%);
}
.inner-hero__grid {
  position: relative;
  z-index: 2;
  min-height: 540px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
}
.inner-hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(2.8rem, 5vw, 5rem);
}
.inner-hero__lead {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: 1.06rem;
}
.inner-hero__media {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
  padding: 22px;
  border: 1px solid rgba(8, 119, 223, 0.14);
  border-radius: 26px;
  background: rgba(255,255,255,0.76);
  box-shadow: 0 30px 70px rgba(6, 43, 86, 0.12);
  backdrop-filter: blur(14px);
}
.inner-hero__media::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(8,119,223,0.09);
  border-radius: 18px;
  pointer-events: none;
}
.inner-hero__media > img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 17px;
}
.inner-hero--category .inner-hero__media > img,
.inner-hero--wide .inner-hero__media > img {
  /* object-fit: contain; */
  background: #fff;
}
.inner-hero--wide .inner-hero__grid {
  grid-template-columns: 0.88fr 1.12fr;
}
.inner-hero--small {
  padding: 85px 0;
}
.inner-hero--small h1 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
}
.breadcrumb-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  color: #7890a8;
  font-size: 0.78rem;
  font-weight: 700;
}
.breadcrumb-line a:hover { color: var(--blue); }
.breadcrumb-line i { font-size: 0.62rem; }
.standard-badge {
  position: absolute;
  left: -22px;
  bottom: 28px;
  z-index: 4;
  display: flex;
  gap: 12px;
  align-items: center;
  max-width: 280px;
  padding: 14px 17px;
  border: 1px solid rgba(8,119,223,0.16);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(6,43,86,0.14);
}
.standard-badge i { color: var(--blue); font-size: 1.55rem; }
.standard-badge span { color: var(--muted); font-size: 0.68rem; line-height: 1.35; }
.standard-badge strong { color: var(--navy); font-size: 0.72rem; }

.product-detail-section { background: #fff; }
.product-detail-grid,
.quality-policy-grid,
.safety-grid,
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 78px;
  align-items: start;
}
.detail-copy > p,
.story-copy > p,
.quality-policy-grid > div > p,
.safety-grid > div > p {
  font-size: 1rem;
  line-height: 1.85;
}
.feature-grid--compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}
.feature-tile {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 78px;
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #f9fcff;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 800;
}
.feature-tile i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  background: #e8f4ff;
  color: var(--blue);
}
.detail-panel {
  position: sticky;
  top: 112px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, #fafdff, #f1f8ff);
  box-shadow: var(--shadow);
}
.detail-panel h3 {
  margin-bottom: 24px;
  font-size: 1.55rem;
}
.use-list { display: grid; gap: 12px; margin-bottom: 26px; }
.use-list > div {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 14px;
  border-radius: 10px;
  background: #fff;
  color: #39546f;
  font-size: 0.86rem;
  font-weight: 700;
}
.use-list i { color: var(--green); font-size: 1rem; }
.related-section,
.all-products-section,
.leaders-section { background: #f5f9fc; }
.inner-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.inner-product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 73, 125, 0.07);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.inner-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(8,119,223,.28);
  box-shadow: var(--shadow);
}
.inner-product-card__image {
  height: 245px;
  padding: 14px;
  background: linear-gradient(145deg, #f8fbfe, #edf6fd);
}
.inner-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.inner-product-card__body {
  min-height: 150px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
}
.inner-product-card__body span,
.category-card span,
.leader-card span {
  color: var(--blue);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.inner-product-card__body h3 { margin: 7px 0 8px; font-size: 1.18rem; }
.inner-product-card__body p { margin: 0; font-size: .78rem; line-height: 1.6; }
.inner-product-card__body > i {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border: 1px solid rgba(8,119,223,.3);
  border-radius: 50%;
  color: var(--blue);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.category-card {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 335px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 15px 38px rgba(6,43,86,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.category-card > img { width: 100%; height: 100%; object-fit: cover; }
.category-card > div { padding: 34px 30px; align-self: center; }
.category-card h3 { margin: 8px 0 14px; font-size: 1.7rem; }
.category-card p { font-size: .86rem; }
.category-card b { display: inline-flex; gap: 8px; align-items: center; color: var(--blue); font-size: .82rem; }

.inner-cta { padding: 0 0 95px; background: #fff; }
.inner-cta__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 46px 54px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 10%, rgba(10,140,236,.28), transparent 32%),
    linear-gradient(120deg, var(--navy-2), var(--navy));
  box-shadow: 0 26px 62px rgba(6,43,86,.2);
}
.inner-cta__box h2 { margin-bottom: 10px; color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); }
.inner-cta__box p { margin-bottom: 0; max-width: 700px; color: rgba(255,255,255,.72); }
.inner-cta__box .eyebrow { color: #73c3ff; }
.inner-cta__box .btn-brand { background: #fff; border-color: #fff; color: var(--navy); box-shadow: none; }
.inner-cta__box .btn-brand:hover { background: var(--blue); color: #fff; }

.story-grid { grid-template-columns: .8fr 1.2fr; }
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.stat-row > div {
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fbfe;
}
.stat-row strong { display: block; color: var(--blue); font-size: 2rem; line-height: 1; }
.stat-row span { display: block; margin-top: 9px; color: var(--muted); font-size: .72rem; font-weight: 700; }
.leader-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.leader-card {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.leader-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  font-size: 1.55rem;
}
.leader-card h3 { margin: 7px 0 14px; font-size: 1.45rem; }
.leader-card p { margin: 0; font-size: .86rem; line-height: 1.75; }
.certification-section { background: #fff; }

.application-detail-list { display: grid; gap: 34px; }
.application-detail {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  min-height: 410px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 15px 42px rgba(7,63,114,.08);
}
.application-detail:nth-child(even) .application-detail__image { order: 2; }
.application-detail__image img { width: 100%; height: 100%; object-fit: cover; }
.application-detail__copy { position: relative; align-self: center; padding: 48px 52px; }
.application-detail__copy > i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 1.2rem;
}
.application-detail__copy h2 { margin-bottom: 18px; font-size: clamp(2rem,4vw,3rem); }
.application-number { position: absolute; top: 26px; right: 32px; color: #e3eef7; font-size: 4rem; font-weight: 800; line-height: 1; }

.policy-list { display: grid; gap: 14px; }
.policy-list > div {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8fbfe;
  color: #3e5870;
  font-size: .86rem;
  line-height: 1.6;
}
.policy-list i { color: var(--blue); font-size: 1.15rem; }
.safety-band {
  background:
    linear-gradient(115deg, rgba(6,43,86,.94), rgba(5,78,144,.9)),
    url("assets/bg.png") center/cover no-repeat;
}
.safety-band h2 { color: #fff; }
.safety-band p { color: rgba(255,255,255,.7); }
.safety-band .eyebrow { color: #62bbff; }
.safety-icons { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.safety-icons > div {
  min-height: 145px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  color: #fff;
  text-align: center;
  font-size: .78rem;
  font-weight: 800;
  backdrop-filter: blur(9px);
}
.safety-icons i { font-size: 1.6rem; color: #61c4ff; }

.contact-hero-cards { display: grid; gap: 14px; }
.contact-hero-cards > a,
.contact-hero-cards > div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border: 1px solid rgba(8,119,223,.14);
  border-radius: 14px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 14px 32px rgba(6,43,86,.08);
}
.contact-hero-cards i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue);
  color: #fff;
}
.contact-hero-cards span { color: var(--muted); font-size: .72rem; }
.contact-hero-cards strong { display: block; margin-top: 3px; color: var(--navy); font-size: .9rem; }
.form-group--full { grid-column: 1 / -1; }
.form-group textarea {
  width: 100%;
  min-height: 118px;
  padding: 14px 16px;
  color: #142b44;
  font-family: inherit;
  font-size: 15px;
  background: #fff;
  border: 1px solid #d6e2ed;
  border-radius: 10px;
  outline: none;
  resize: vertical;
}
.form-group textarea:focus { border-color: #087de1; box-shadow: 0 0 0 4px rgba(8,125,225,.1); }
.form-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.form-alert { grid-column: 1/-1; margin-bottom: 18px; padding: 12px 14px; border-radius: 9px; font-size: .82rem; font-weight: 700; }
.form-alert--success { background: #e9f8ef; color: #14743b; border: 1px solid #bfe8ce; }
.form-alert--error { background: #fff0f0; color: #a12b2b; border: 1px solid #f0c4c4; }
.map-section { padding: 0 0 100px; background: #f3f8fc; }
.map-card { display: grid; grid-template-columns: 1.25fr .75fr; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow); }
.map-card iframe { width: 100%; min-height: 430px; border: 0; }
.map-card > div { align-self: center; padding: 42px; }
.map-card h2 { font-size: 2rem; }
.policy-page { max-width: 900px; }
.policy-page h2 { margin: 36px 0 10px; font-size: 1.65rem; }
.policy-page h2:first-child { margin-top: 0; }
.policy-page p { line-height: 1.85; }
.policy-page a { color: var(--blue); font-weight: 700; }
.inner-empty { min-height: 55vh; display: grid; align-items: center; }

/* Quote popup */
body.modal-open { overflow: hidden; }
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}
.quote-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.quote-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 24, 48, .72);
  backdrop-filter: blur(7px);
}
.quote-modal__panel {
  position: relative;
  width: min(900px, 100%);
  max-height: calc(100vh - 48px);
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  overflow: auto;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(0, 22, 50, .34);
  transform: translateY(18px) scale(.98);
  transition: transform .25s ease;
}
.quote-modal.open .quote-modal__panel { transform: translateY(0) scale(1); }
.quote-modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: #eef6fc;
  border: 0;
  border-radius: 50%;
  transition: .2s ease;
}
.quote-modal__close:hover { color: #fff; background: var(--blue); transform: rotate(6deg); }
.quote-modal__intro {
  padding: 46px 34px;
  color: #dbeeff;
  background: linear-gradient(145deg, #062e58, #075da7);
}
.quote-modal__intro .eyebrow { color: #77d0ff; }
.quote-modal__intro h2 { margin: 7px 0 14px; color: #fff; font-size: 2.15rem; }
.quote-modal__intro > p:not(.eyebrow) { margin: 0; color: #d4e7f7; line-height: 1.7; }
.quote-modal__icon {
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.45rem;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 15px;
}
.quote-modal__contact { margin-top: 32px; display: grid; gap: 12px; }
.quote-modal__contact a { display: flex; align-items: center; gap: 9px; color: #fff; font-size: .78rem; font-weight: 700; }
.quote-modal__form { padding: 56px 42px 38px; align-content: start; }
.quote-modal__form .form-group label { display: flex; align-items: center; gap: 6px; }
.quote-modal__form .form-group label i { color: var(--blue); }
.quote-modal__form .form-group textarea { min-height: 90px; }

@media (max-width: 720px) {
  .quote-modal { padding: 12px; }
  .quote-modal__panel { max-height: calc(100vh - 24px); grid-template-columns: 1fr; border-radius: 16px; }
  .quote-modal__intro { padding: 28px 24px 24px; }
  .quote-modal__icon { width: 44px; height: 44px; margin-bottom: 17px; }
  .quote-modal__intro h2 { font-size: 1.7rem; }
  .quote-modal__contact { margin-top: 18px; }
  .quote-modal__form { padding: 25px 22px 28px; grid-template-columns: 1fr; }
  .quote-modal__close { top: 10px; right: 10px; background: #fff; }
  .quote-modal__form .form-group--full,
  .quote-modal__form .contact-submit { grid-column: auto; }
}

@media (max-width: 1100px) {
  .inner-hero__grid { gap: 38px; }
  .inner-card-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .category-card { min-height: 300px; }
  .product-detail-grid, .quality-policy-grid, .safety-grid { gap: 42px; }
}

@media (max-width: 860px) {
  .inner-hero__grid,
  .product-detail-grid,
  .quality-policy-grid,
  .safety-grid,
  .story-grid,
  .application-detail,
  .map-card {
    grid-template-columns: 1fr;
  }
  .inner-hero__grid { min-height: auto; padding-top: 58px; padding-bottom: 58px; }
  .inner-hero__media { min-height: 320px; }
  .inner-hero__media > img { height: 300px; }
  .standard-badge { left: 20px; bottom: 20px; }
  .detail-panel { position: static; }
  .category-grid, .leader-grid { grid-template-columns: 1fr; }
  .application-detail:nth-child(even) .application-detail__image { order: 0; }
  .application-detail__image { min-height: 300px; }
  .inner-cta__box { align-items: flex-start; flex-direction: column; padding: 38px 34px; }
  .safety-icons { grid-template-columns: repeat(3,1fr); }
  .map-card > div { padding: 34px; }
}

@media (max-width: 600px) {
  .application-track .application-card { flex-basis: 82vw; width: 82vw; }
  .inner-hero h1 { font-size: clamp(2.45rem, 13vw, 3.55rem); }
  .inner-hero__media { padding: 12px; border-radius: 18px; }
  .inner-hero__media > img { height: 260px; border-radius: 12px; }
  .inner-card-grid, .feature-grid--compact, .stat-row, .safety-icons { grid-template-columns: 1fr; }
  .category-card { grid-template-columns: 1fr; }
  .category-card > img { height: 230px; }
  .category-card > div { padding: 26px 22px; }
  .leader-card { grid-template-columns: 1fr; padding: 26px 22px; }
  .application-detail__copy { padding: 36px 24px; }
  .application-number { top: 22px; right: 20px; font-size: 3rem; }
  .inner-cta { padding-bottom: 65px; }
  .inner-cta__box { padding: 30px 24px; border-radius: 16px; }
  .form-group--full { grid-column: auto; }
  .map-card iframe { min-height: 330px; }
}

/* =========================================================
   Product detail upgrade — full technical product pages
   ========================================================= */
.product-inner-hero .inner-hero__grid { min-height: 570px; }
.product-hero-media { overflow: visible; }
.product-hero-media > img {
  object-fit: contain;
  background: linear-gradient(145deg, #ffffff, #f7fbff);
  padding: 22px;
}
.product-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
}
.product-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5e7790;
  font-size: .76rem;
  font-weight: 800;
}
.product-hero-points i { color: var(--blue); font-size: .96rem; }

.product-facts-bar {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 35px rgba(7, 63, 115, .055);
}
.product-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.product-facts-grid > div {
  min-width: 0;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}
.product-facts-grid > div:first-child { border-left: 1px solid var(--line); }
.product-facts-grid span {
  display: block;
  margin-bottom: 7px;
  color: #8398ab;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.product-facts-grid strong {
  display: block;
  color: var(--navy);
  font-size: .88rem;
  line-height: 1.45;
}

.product-overview-section { background: #fff; }
.product-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  gap: 78px;
  align-items: start;
}
.product-overview-grid .detail-copy h2 { margin-bottom: 24px; }
.product-overview-grid .detail-copy > p { color: #536d86; }
.product-application-panel { position: sticky; top: 112px; }

.product-feature-detail-section {
  background:
    radial-gradient(circle at 90% 0%, rgba(8,119,223,.08), transparent 28%),
    #f5f9fc;
}
.section-head--center {
  justify-content: center;
  text-align: center;
}
.section-head--center > div { max-width: 760px; margin-inline: auto; }
.product-feature-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.product-feature-detail-card {
  min-height: 265px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 32px rgba(8, 70, 126, .06);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.product-feature-detail-card:hover {
  transform: translateY(-6px);
  border-color: rgba(8,119,223,.24);
  box-shadow: 0 20px 42px rgba(8, 70, 126, .11);
}
.product-feature-detail-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 23px;
  border-radius: 14px;
  background: linear-gradient(145deg, #eaf6ff, #dcefff);
  color: var(--blue);
  font-size: 1.25rem;
}
.product-feature-detail-card h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.03rem;
}
.product-feature-detail-card p {
  margin: 0;
  color: #627a91;
  font-size: .84rem;
  line-height: 1.72;
}

.technical-detail-section { background: #fff; }
.technical-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: 62px;
  align-items: start;
}
.technical-copy > p { max-width: 760px; font-size: .95rem; line-height: 1.8; }
.technical-table-wrap {
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(7, 63, 115, .045);
}
.technical-table {
  width: 100%;
  border-collapse: collapse;
}
.technical-table th,
.technical-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: .82rem;
  line-height: 1.55;
}
.technical-table tr:last-child th,
.technical-table tr:last-child td { border-bottom: 0; }
.technical-table th {
  width: 34%;
  background: #f8fbfe;
  color: var(--navy);
  font-weight: 800;
}
.technical-table td { color: #536d86; font-weight: 650; }
.spec-note {
  display: flex;
  gap: 12px;
  margin-top: 17px;
  padding: 14px 16px;
  border: 1px solid rgba(8,119,223,.14);
  border-radius: 12px;
  background: #f2f9ff;
}
.spec-note i { flex: 0 0 auto; margin-top: 2px; color: var(--blue); }
.spec-note p { margin: 0; color: #587188; font-size: .76rem; line-height: 1.6; }
.benefits-card {
  position: sticky;
  top: 112px;
  padding: 32px;
  border-radius: 21px;
  background: linear-gradient(145deg, #0b3155, #0b5b98);
  box-shadow: 0 28px 60px rgba(4, 44, 80, .19);
}
.benefits-card .eyebrow { color: #83d3ff; }
.benefits-card h3 {
  margin-bottom: 24px;
  color: #fff;
  font-size: 1.6rem;
}
.benefit-list { display: grid; gap: 12px; margin-bottom: 26px; }
.benefit-list > div {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 11px;
  background: rgba(255,255,255,.07);
  color: #eaf6ff;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.55;
}
.benefit-list i { flex: 0 0 auto; margin-top: 2px; color: #76dcaa; }
.btn-block { width: 100%; justify-content: center; }

.product-highlight-section { background: #f8fbfd; }
.feature-grid--product {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.product-feature-tile {
  min-height: 88px;
  background: #fff;
  box-shadow: 0 9px 25px rgba(7, 63, 115, .045);
}

.selection-guide-section {
  background:
    linear-gradient(135deg, rgba(5,45,80,.98), rgba(8,91,152,.96)),
    #063b66;
}
.selection-guide-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.selection-guide-intro .eyebrow { color: #76d0ff; }
.selection-guide-intro h2 { color: #fff; }
.selection-guide-intro p { color: #c2d8e9; font-size: .95rem; line-height: 1.8; }
.selection-guide-intro .text-link { color: #fff; }
.selection-note-list { display: grid; gap: 12px; }
.selection-note-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 88px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 14px;
  background: rgba(255,255,255,.07);
}
.selection-note-card > span {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: rgba(255,255,255,.11);
  color: #80d8ff;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.selection-note-card p { margin: 0; color: #ecf7ff; font-size: .83rem; font-weight: 650; line-height: 1.6; }

@media (max-width: 1120px) {
  .product-feature-detail-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .product-facts-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .product-facts-grid > div:nth-child(2) { border-right: 0; }
  .product-facts-grid > div:nth-child(n+3) { border-top: 1px solid var(--line); }
  .technical-detail-grid { gap: 38px; }
}

@media (max-width: 900px) {
  .product-overview-grid,
  .technical-detail-grid,
  .selection-guide-grid { grid-template-columns: 1fr; gap: 42px; }
  .product-application-panel,
  .benefits-card { position: static; }
  .feature-grid--product { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .product-hero-points { margin-bottom: 10px; }
}

@media (max-width: 640px) {
  .product-inner-hero .inner-hero__grid { min-height: auto; }
  .product-hero-media > img { padding: 8px; }
  .product-facts-grid { grid-template-columns: 1fr; }
  .product-facts-grid > div,
  .product-facts-grid > div:first-child {
    padding: 17px 4px;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }
  .product-facts-grid > div:first-child { border-top: 0; }
  .product-feature-detail-grid,
  .feature-grid--product { grid-template-columns: 1fr; }
  .product-feature-detail-card { min-height: 0; }
  .technical-table th,
  .technical-table td { display: block; width: 100%; }
  .technical-table th { padding-bottom: 6px; border-bottom: 0; }
  .technical-table td { padding-top: 6px; }
  .selection-note-card { grid-template-columns: 46px 1fr; padding: 14px; }
  .selection-note-card > span { width: 40px; height: 40px; }
  .standard-badge { left: 12px; right: 12px; bottom: 14px; max-width: none; }
}


/* Main products dropdown */
.nav-dropdown {
  position: relative;
}

.site-nav .nav-dropdown__trigger {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown__trigger > i {
  font-size: 10px;
  transition: transform 0.2s ease;
}

.product-category-menu {
  position: absolute;
  top: calc(100% - 12px);
  left: 50%;
  z-index: 1100;

  width: 285px;
  padding: 10px;

  background: #ffffff;
  border: 1px solid #e1ebf4;
  border-top: 3px solid #0877df;
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(6, 43, 86, 0.16);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 10px);

  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
}

.nav-dropdown:hover .product-category-menu,
.nav-dropdown:focus-within .product-category-menu,
.nav-dropdown.open .product-category-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown:hover .nav-dropdown__trigger > i,
.nav-dropdown:focus-within .nav-dropdown__trigger > i,
.nav-dropdown.open .nav-dropdown__trigger > i {
  transform: rotate(180deg);
}

/* Category rows */
.product-category-item {
  position: relative;
}

.site-nav .product-category-link {
  min-height: 48px;
  padding: 8px 10px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  color: #183b60;
  font-size: 12px;
  font-weight: 700;

  border-radius: 7px;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.product-category-link > span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.product-category-link > span > i {
  width: 30px;
  height: 30px;

  display: grid;
  place-items: center;

  color: #0877df;
  font-size: 13px;
  background: #edf7ff;
  border-radius: 7px;
}

.product-category-link .category-arrow {
  color: #8aa0b5;
  font-size: 10px;
}

.product-category-item:hover > .product-category-link,
.product-category-item:focus-within > .product-category-link,
.product-category-item.open > .product-category-link {
  color: #0877df;
  background: #f2f8fd;
}

/* Products sub-dropdown */
.product-submenu {
 position: absolute;
  top: -10px;
  left: calc(100% - 1px);

  width: 300px;
  max-height: 430px;
  padding: 14px;
  overflow-y: auto;

  background: #ffffff;
  border: 1px solid #e1ebf4;
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(6, 43, 86, 0.16);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(8px);

  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
}
/* Keeps hover active while moving into the submenu */
.product-submenu::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 14px;
  height: 100%;
}

.product-category-item:hover > .product-submenu,
.product-category-item:focus-within > .product-submenu,
.product-category-item.open > .product-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}
.product-category-item:hover > .product-submenu,
.product-category-item:focus-within > .product-submenu,
.product-category-item.open > .product-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.product-submenu__title {
  margin-bottom: 7px;
  padding: 3px 7px 10px;

  color: #062b56;
  font-size: 13px;
  font-weight: 800;

  border-bottom: 1px solid #e5edf5;
}

.site-nav .product-submenu a {
  padding: 8px 7px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;

  color: #61758a;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.35;

  border-radius: 6px;
}

.site-nav .product-submenu a:hover {
  color: #0877df;
  background: #f2f8fd;
}

.product-submenu a > i {
  font-size: 10px;
}

.site-nav .product-submenu__all {
  margin-top: 7px;
  padding-top: 10px;
  color: #0877df;
  border-top: 1px solid #e5edf5;
}

/* View all products */
.site-nav .all-products-link {
  min-height: 40px;
  margin-top: 7px;
  padding: 9px 12px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  color: #ffffff;
  font-size: 12px;
  font-weight: 700;

  background: #062b56;
  border-radius: 7px;
}

.site-nav .all-products-link:hover {
  color: #ffffff;
  background: #0877df;
}

/* Remove normal navbar underline inside dropdown */
.site-nav .product-category-menu a::after {
  display: none;
}

/* Mobile */
@media (max-width: 860px) {
  .site-nav .nav-dropdown__trigger {
    justify-content: space-between;
  }

  .product-category-menu {
    position: static;

    width: 100%;
    max-height: 0;
    padding: 0 6px;

    overflow: hidden;
    border: 0;
    border-radius: 0;
    box-shadow: none;

    opacity: 1;
    visibility: visible;
    pointer-events: none;
    transform: none;

    transition:
      max-height 0.3s ease,
      padding 0.3s ease;
  }

  .nav-dropdown.open .product-category-menu {
    max-height: 70vh;
    padding: 8px 6px 14px;

    overflow-y: auto;
    pointer-events: auto;
    transform: none;
  }

  .site-nav .product-category-link {
    padding: 7px 4px;
    border-bottom: 1px solid #edf2f7;
  }

  .product-submenu {
    position: static;

    width: 100%;
    max-height: 0;
    padding: 0 8px 0 42px;

    overflow: hidden;
    border: 0;
    border-radius: 0;
    box-shadow: none;

    opacity: 1;
    visibility: visible;
    pointer-events: none;
    transform: none;

    transition:
      max-height 0.3s ease,
      padding 0.3s ease;
  }

  .product-category-item.open > .product-submenu {
    max-height: 450px;
    padding: 7px 8px 12px 42px;

    overflow-y: auto;
    pointer-events: auto;
  }

  .product-category-item.open .category-arrow {
    transform: rotate(90deg);
  }

  .product-submenu__title {
    display: none;
  }

  .site-nav .product-submenu a {
    padding: 7px 5px;
  }
}
/* Quote popup — small-device responsive hardening */
@media (max-width: 720px) {
  .quote-modal {
    place-items: start center;
    padding: 8px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .quote-modal__panel {
    width: 100%;
    max-height: calc(100vh - 16px);
    max-height: calc(100dvh - 16px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .quote-modal__form {
    min-width: 0;
    gap: 16px;
  }

  .quote-modal__form .form-group,
  .quote-modal__form input,
  .quote-modal__form textarea,
  .quote-modal__form .contact-submit {
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .quote-modal { padding: 6px; }

  .quote-modal__panel {
    max-height: calc(100vh - 12px);
    max-height: calc(100dvh - 12px);
    border-radius: 13px;
  }

  .quote-modal__intro { padding: 22px 18px 18px; }
  .quote-modal__icon { width: 38px; height: 38px; margin-bottom: 12px; border-radius: 11px; font-size: 1.05rem; }
  .quote-modal__intro h2 { margin: 4px 0 8px; padding-right: 34px; font-size: 1.45rem; }
  .quote-modal__intro > p:not(.eyebrow) { font-size: .78rem; line-height: 1.55; }
  .quote-modal__contact { margin-top: 12px; gap: 7px; }
  .quote-modal__contact a { overflow-wrap: anywhere; font-size: .72rem; }

  .quote-modal__form { padding: 18px 16px 20px; gap: 13px; }
  .quote-modal__form .form-group { gap: 6px; }
  .quote-modal__form .form-group label { font-size: 12px; }
  .quote-modal__form .form-group input { height: 46px; padding: 0 12px; font-size: 14px; }
  .quote-modal__form .form-group textarea { min-height: 76px; padding: 11px 12px; font-size: 14px; }
  .quote-modal__form .contact-submit { min-height: 48px; padding: 11px 16px; font-size: 14px; }
  .quote-modal__close { top: 8px; right: 8px; width: 36px; height: 36px; }
}

@media (max-width: 360px), (max-height: 640px) and (max-width: 720px) {
  .quote-modal__intro { padding-top: 18px; padding-bottom: 14px; }
  .quote-modal__icon { display: none; }
  .quote-modal__intro .eyebrow { margin-bottom: 2px; }
  .quote-modal__intro h2 { font-size: 1.3rem; }
  .quote-modal__intro > p:not(.eyebrow) { font-size: .72rem; }
  .quote-modal__contact { margin-top: 9px; }
  .quote-modal__form { padding-top: 15px; }
}
/* =========================================
   SMALL MOBILE QUOTE POPUP
========================================= */

@media (max-width: 600px) {

  .quote-modal {
    padding: 20px 12px;
    place-items: center;
    overflow: hidden;
  }

  .quote-modal__panel {
    width: min(92%, 380px);
    max-height: 82dvh;

    grid-template-columns: 1fr;

    border-radius: 16px;

    overflow-y: auto;
    overflow-x: hidden;
  }

  /* Make blue top section smaller */
  .quote-modal__intro {
    padding: 18px 18px 14px;
  }

  .quote-modal__icon {
    display: none;
  }

  .quote-modal__intro .eyebrow {
    font-size: 10px;
    margin-bottom: 2px;
  }

  .quote-modal__intro h2 {
    font-size: 1.35rem;
    margin: 3px 0 5px;
    padding-right: 35px;
  }

  .quote-modal__intro > p:not(.eyebrow) {
    font-size: 12px;
    line-height: 1.4;
  }

  /* Hide contact details inside popup on mobile */
  .quote-modal__contact {
    display: none;
  }

  /* Compact form */
  .quote-modal__form {
    padding: 15px 16px 18px;
    gap: 10px;
  }

  .quote-modal__form .form-group {
    gap: 4px;
  }

  .quote-modal__form .form-group label {
    font-size: 11px;
  }

  .quote-modal__form .form-group input {
    height: 40px;
    padding: 0 11px;
    font-size: 13px;
  }

  .quote-modal__form .form-group textarea {
    min-height: 58px;
    max-height: 70px;
    padding: 9px 11px;
    font-size: 13px;
  }

  .quote-modal__form .contact-submit {
    min-height: 42px;
    padding: 9px 14px;
    font-size: 13px;
  }

  .quote-modal__close {
    width: 32px;
    height: 32px;
    top: 8px;
    right: 8px;
  }
}