:root {
  --navy: #071a2f;
  --navy2: #0b2542;
  --blue: #123e69;
  --green: #24a257;
  --ink: #101820;
  --muted: #62707b;
  --line: #dce2e5;
  --paper: #f5f7f6;
  --white: #f7f7f7;

  --radius: 28px
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  color: var(--ink);
  background: #f7f7f7;

  overflow-x: hidden
}

body.menu-open {
  overflow: hidden
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")
}

.site-header {
  height: 86px;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 4.5vw;
  position: fixed;
  z-index: 50;
  top: 0;
  width: 100%;
  transition: .35s;
  color: var(--ink);
  background: #f7f7f7;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 32px rgba(7, 26, 47, .07)
}

.site-header.scrolled {
  height: 72px;
  /* background: rgba(255, 255, 255, .94); */
  background: #f7f7f7;
  backdrop-filter: blur(16px);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: 0 8px 32px rgba(7, 26, 47, .07)
}

.brand {
  width: 210px;
  height: 60px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 8px
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply
}

.desktop-nav {
  display: flex;
  gap: 30px;
  margin-left: auto
}

.desktop-nav a,
.nav-cta {
  text-decoration: none;
  color: inherit;
  font-size: 13px;
  font-weight: 600
}

.desktop-nav a {
  position: relative
}

.desktop-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: .3s
}

.desktop-nav a:hover:after {
  width: 100%
}

.nav-cta {
  border: 1px solid currentColor;
  padding: 12px 18px;
  border-radius: 100px
}

.nav-cta span {
  margin-left: 12px
}

.menu-toggle,
.mobile-menu {
  display: none
}

.hero {
  height: 100svh;
  min-height: 720px;
  position: relative;
  color: #fff;
  overflow: hidden
}

.hero-media,
.equipment-bg {
  position: absolute;
  inset: -5%;
  background-image: url('assets/industrial-port-hero.png');
  background-size: cover;
  background-position: center;
  will-change: transform
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 15, 28, .92) 0%, rgba(4, 21, 38, .73) 43%, rgba(4, 18, 31, .12) 76%), linear-gradient(0deg, rgba(2, 12, 23, .75), transparent 45%)
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(90deg, #000, transparent 75%)
}

.hero-content {
  position: absolute;
  left: 7vw;
  top: 50%;
  transform: translateY(-45%);
  max-width: 900px
}

.eyebrow,
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 14px
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: var(--green)
}

.hero h1 {
  font-size: clamp(58px, 6.3vw, 106px);
  line-height: .94;
  letter-spacing: -.065em;
  margin: 28px 0 30px;
  font-weight: 600
}

.display em,
.hero h1 em {
  font-family: Georgia, serif;
  font-weight: 400
}

.hero h1 em {
  color: #b6c9d7
}

.hero-copy {
  font-size: 17px;
  line-height: 1.7;
  max-width: 620px;
  color: #d7e0e6
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 35px
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 210px;
  padding: 16px 20px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  font: 600 13px Manrope;
  cursor: pointer;
  transition: .3s
}

.button span {
  font-size: 18px
}

.button-light {
  background: #fff;
  color: var(--navy)
}

.button-light:hover {
  background: #e8f4ec;
  transform: translateY(-2px)
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, .45);
  color: #fff
}

.button-ghost:hover {
  background: rgba(255, 255, 255, .1)
}

.button-dark {
  background: var(--navy);
  color: #fff
}

.button-green {
  background: var(--green);
  color: #fff;
  width: 100%
}

.hero-stats {
  position: absolute;
  right: 5vw;
  bottom: 55px;
  display: flex;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  background: rgba(4, 17, 29, .3)
}

.hero-stats div {
  padding: 20px 28px;
  border-right: 1px solid rgba(255, 255, 255, .18);
  min-width: 140px
}

.hero-stats div:last-child {
  border: 0
}

.hero-stats strong {
  font-size: 26px;
  display: block
}

.hero-stats span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #becad2
}

.scroll-cue {
  position: absolute;
  left: 7vw;
  bottom: 54px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .16em;
  display: flex;
  align-items: center;
  gap: 12px
}

.scroll-cue span {
  display: block;
  width: 24px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 20px;
  position: relative
}

.scroll-cue span:after {
  content: "";
  width: 2px;
  height: 7px;
  background: #fff;
  position: absolute;
  top: 7px;
  left: 10px;
  animation: scroll 1.8s infinite
}

@keyframes scroll {
  0% {
    transform: translateY(0);
    opacity: 0
  }

  30% {
    opacity: 1
  }

  100% {
    transform: translateY(12px);
    opacity: 0
  }
}

.trust-strip {
  padding: 22px 5vw;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  letter-spacing: .12em
}

.trust-strip p {
  font-weight: 800
}

.trust-strip div {
  display: flex;
  gap: 26px;
  align-items: center;
  color: var(--muted)
}

.trust-strip i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green)
}

.section {
  padding: 130px 7vw
}

.section-label {
  margin-bottom: 50px;
  color: #61707a
}

.section-label span {
  color: var(--green)
}

.section-label.light {
  color: #aebbc5
}

.display {
  font-size: clamp(48px, 5.2vw, 84px);
  line-height: 1.03;
  letter-spacing: -.055em;
  font-weight: 600;
  margin: 0
}

.display em {
  color: #768a98
}

.intro-layout,
.section-heading-row {
  display: grid;
  grid-template-columns: 1.55fr .8fr;
  gap: 9vw;
  align-items: end
}

.intro-copy {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75
}

.intro-copy p:first-child {
  font-size: 20px;
  color: var(--ink);
  margin-top: 0
}

.text-link {
  display: inline-flex;
  gap: 30px;
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding: 14px 0;
  margin-top: 18px
}

.about-visual {
  height: 460px;
  margin-top: 80px;
  border-radius: var(--radius);
  background: linear-gradient(120deg, #0a2540, #153e61);
  display: grid;
  grid-template-columns: 1fr 360px;
  overflow: hidden;
  position: relative
}

.visual-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}

.visual-panel:before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%
}

.visual-panel p {
  font-size: 50px;
  line-height: .9;
  letter-spacing: -.04em;
  color: #fff;
  font-weight: 800;
  z-index: 1
}

.visual-orbit {
  position: absolute;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, .23);
  border-radius: 50%;
  animation: spin 18s linear infinite
}

.visual-orbit span {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--green);
  border: 3px solid #fff;
  border-radius: 50%
}

.visual-orbit span:nth-child(1) {
  left: 30px;
  top: 46px
}

.visual-orbit span:nth-child(2) {
  right: -5px;
  top: 50%
}

.visual-orbit span:nth-child(3) {
  bottom: 12px;
  left: 50%
}

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

.metric-card {
  margin: 28px;
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  display: flex;
  flex-direction: column
}

.metric-card>span,
.product-info>span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--green);
  font-weight: 800
}

.metric-card strong {
  font-size: 32px;
  line-height: 1.15;
  margin: 45px 0 15px
}

.metric-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6
}

.mini-bars {
  display: flex;
  gap: 8px;
  align-items: end;
  height: 90px;
  margin-top: auto
}

.mini-bars i {
  flex: 1;
  background: #dce7e2;
  border-radius: 6px 6px 0 0
}

.mini-bars i:nth-child(1) {
  height: 30%
}

.mini-bars i:nth-child(2) {
  height: 48%
}

.mini-bars i:nth-child(3) {
  height: 42%
}

.mini-bars i:nth-child(4) {
  height: 70%
}

.mini-bars i:nth-child(5) {
  height: 92%;
  background: var(--green)
}

.dark-section {
  background: var(--navy);
  color: #fff
}

.section-heading-row {
  margin-bottom: 75px
}

.section-heading-row>p {
  font-size: 16px;
  line-height: 1.7;
  color: #9fb0bd
}

.light {
  color: #fff
}

.division-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px
}

.division-card {
  min-height: 500px;
  background: #0d2945;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 24px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  transition: .45s;
  overflow: hidden;
  position: relative
}

.division-card:after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  background: var(--green);
  filter: blur(80px);
  opacity: 0;
  right: -70px;
  bottom: -70px;
  transition: .45s
}

.division-card:hover,
.division-card.active {
  transform: translateY(-10px);
  background: #113552
}

.division-card:hover:after,
.division-card.active:after {
  opacity: .22
}

.card-top {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #91a3b1
}

.card-top b {
  font-size: 18px
}

.division-icon {
  font-size: 34px;
  margin: 65px 0 25px;
  color: #87b89b
}

.division-card h3 {
  font-size: 30px;
  line-height: 1.05;
  margin: 0 0 20px
}

.division-card p {
  font-size: 13px;
  line-height: 1.65;
  color: #aab9c3
}

.card-tags {
  margin-top: auto;
  display: flex;
  gap: 6px;
  flex-wrap: wrap
}

.card-tags span {
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50px;
  padding: 7px 10px;
  font-size: 9px;
  color: #b7c5ce
}

.section-heading-row.dark p {
  color: var(--muted)
}

.product-tabs {
  display: flex;
  background: var(--paper);
  padding: 4px;
  border-radius: 100px
}

.product-tabs button {
  border: 0;
  background: transparent;
  border-radius: 100px;
  padding: 12px 16px;
  font: 600 11px Manrope;
  cursor: pointer
}

.product-tabs button.active {
  background: var(--navy);
  color: #fff
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.product-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 47% 1fr;
  min-height: 300px;
  transition: .35s
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(7, 26, 47, .12)
}

.product-card.hidden {
  display: none
}

.product-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.product-art:before,
.product-art:after {
  content: "";
  position: absolute;
  border-radius: 50%
}

.product-art:before {
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, .45)
}

.product-art:after {
  width: 110px;
  height: 110px;
  background: rgba(255, 255, 255, .13);
  box-shadow: 0 15px 50px rgba(0, 0, 0, .14)
}

.product-art span {
  font-size: 25px;
  letter-spacing: .1em;
  color: #fff;
  font-weight: 800;
  z-index: 2
}

.product-art i {
  position: absolute;
  width: 220px;
  height: 1px;
  background: rgba(255, 255, 255, .35);
  transform: rotate(-35deg)
}

.art-poly {
  background: linear-gradient(135deg, #0c8252, #4ab57c)
}

.art-hdpe {
  background: linear-gradient(135deg, #174f79, #4b91bf)
}

.art-al {
  background: linear-gradient(135deg, #71808b, #c3cbd0)
}

.art-bitumen {
  background: linear-gradient(135deg, #1b2024, #57626a)
}

.product-info {
  padding: 36px 30px;
  display: flex;
  flex-direction: column
}

.product-info h3 {
  font-size: 24px;
  margin: 28px 0 12px
}

.product-info p {
  font-size: 12px;
  line-height: 1.65;
  color: var(--muted)
}

.product-info a {
  margin-top: auto;
  font-size: 11px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none
}

.edge {
  background: var(--paper)
}

.edge-layout {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 12vw
}

.edge-sticky {
  position: sticky;
  top: 130px;
  align-self: start
}

.edge-sticky>p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 450px;
  margin: 30px 0
}

.process-list {
  border-top: 1px solid #bdc9cd
}

.process-item {
  padding: 35px 0;
  border-bottom: 1px solid #bdc9cd;
  display: grid;
  grid-template-columns: 45px 1fr 45px;
  gap: 20px
}

.process-item>span {
  font-size: 10px;
  color: var(--green);
  font-weight: 800
}

.process-item h3 {
  margin: 0 0 12px;
  font-size: 23px
}

.process-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6
}

.process-item b {
  font-size: 23px;
  color: #7e919b
}

.equipment {
  min-height: 760px;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

.equipment-bg {
  background-position: center 80%;
  filter: saturate(.75)
}

.equipment-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 17, 31, .93), rgba(3, 18, 32, .3)), linear-gradient(0deg, rgba(3, 17, 31, .7), transparent)
}

.equipment-content,
.equipment-chips {
  position: relative;
  z-index: 1
}

.equipment-content>div:last-child {
  margin-top: 100px
}

.equipment-content p {
  max-width: 500px;
  color: #c9d4db;
  line-height: 1.7
}

.equipment-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.equipment-chips span {
  padding: 12px 17px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 100px;
  font-size: 10px
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line)
}

.industry-card {
  height: 220px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 25px;
  position: relative;
  transition: .3s
}

.industry-card:hover {
  background: var(--navy);
  color: #fff
}

.industry-card span {
  font-size: 9px;
  color: var(--green)
}

.industry-card i {
  font-style: normal;
  position: absolute;
  right: 25px;
  top: 25px;
  font-size: 24px
}

.industry-card h3 {
  position: absolute;
  bottom: 25px;
  left: 25px;
  font-size: 22px
}

.global {
  background: #0a223a;
  color: #fff;
  display: grid;
  grid-template-columns: .75fr 1fr;
  gap: 8vw;
  align-items: center
}

.global-copy>p {
  color: #a9b9c4;
  line-height: 1.8
}

.global-stats {
  display: flex;
  gap: 45px;
  margin-top: 45px
}

.global-stats strong {
  display: block;
  font-size: 26px
}

.global-stats span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #91a4b2
}

.world-map {
  position: relative;
  color: #5f8097
}

.world-map svg {
  width: 100%
}

.map-badge {
  position: absolute;
  left: 50%;
  top: 36%;
  background: #fff;
  color: var(--ink);
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .25);
  display: grid
}

.map-badge span {
  font-size: 8px;
  color: var(--green);
  font-weight: 800
}

.map-badge strong {
  font-size: 16px
}

.map-badge small {
  font-size: 8px;
  color: var(--muted)
}

.testimonial {
  position: relative;
  text-align: center;
  min-height: 650px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center
}

.quote-mark {
  font: 100px Georgia;
  color: #dfe8e3;
  height: 80px
}

.testimonial-track {
  max-width: 1000px
}

.testimonial-slide {
  display: none;
  margin: 0
}

.testimonial-slide.active {
  display: block;
  animation: fade .5s
}

.testimonial-slide p {
  font: clamp(28px, 3vw, 48px)/1.35 Georgia;
  color: #27333b
}

.testimonial-slide footer {
  margin-top: 35px;
  display: grid;
  gap: 7px
}

.testimonial-slide footer strong {
  font-size: 12px
}

.testimonial-slide footer span {
  font-size: 10px;
  color: var(--muted)
}

.testimonial-controls {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 50px
}

.testimonial-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer
}

.testimonial-controls span {
  font-size: 10px;
  color: var(--muted)
}

.faq {
  display: grid;
  grid-template-columns: .6fr 1fr;
  gap: 12vw;
  background: var(--paper)
}

.faq-list {
  border-top: 1px solid #bcc9cd
}

.faq-list details {
  border-bottom: 1px solid #bcc9cd;
  padding: 25px 0
}

.faq-list summary {
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between
}

.faq-list summary span {
  font-size: 24px;
  font-weight: 400;
  transition: .3s
}

.faq-list details[open] summary span {
  transform: rotate(45deg)
}

.faq-list p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 13px;
  padding-right: 60px
}

.contact {
  background: var(--navy);
  color: #fff;
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 10vw
}

.contact-copy>p {
  color: #aebcc6;
  line-height: 1.7;
  max-width: 500px
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 45px
}

.contact-details a,
.contact-details span {
  color: #fff;
  text-decoration: none;
  font-size: 13px
}

.inquiry-form {
  background: #fff;
  color: var(--ink);
  padding: 38px;
  border-radius: 24px;
  position: relative
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.inquiry-form label {
  display: grid;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 800;
  margin-bottom: 20px
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  border: 0;
  border-bottom: 1px solid #cbd3d7;
  padding: 13px 0;
  font: 13px Manrope;
  outline: none;
  background: #fff;
  border-radius: 0
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--green)
}

.inquiry-form .invalid {
  border-color: #c94d4d
}

.form-note {
  font-size: 8px;
  color: var(--muted);
  text-align: center
}

.form-success {
  display: none;
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: 24px;
  align-items: center;
  justify-content: center;
  flex-direction: column
}

.form-success.show {
  display: flex;
  animation: fade .4s
}

.form-success strong {
  font: 46px Georgia;
  color: var(--navy)
}

.form-success span {
  font-size: 12px;
  color: var(--muted)
}

.site-footer {
  padding: 70px 7vw 25px;
  background: #061524;
  color: #fff
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw
}

.footer-brand img {
  width: 260px;
}

.footer-brand p {
  font: 25px/1.3 Georgia;
  color: #91a8b7
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 13px
}

.footer-links span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #6e899a;
  margin-bottom: 9px
}

.footer-links a {
  font-size: 12px;
  color: #fff;
  text-decoration: none
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 65px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: #7690a0
}

.footer-bottom a {
  color: #fff
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(4px);
  transition: opacity .8s ease, transform .8s ease, filter .8s ease
}

.reveal.in-view {
  opacity: 1;
  transform: none;
  filter: none
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@media(max-width:1100px) {
  .desktop-nav {
    display: none
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
    background: none;
    border: 0;
    width: 36px
  }

  .menu-toggle span {
    height: 1px;
    background: currentColor;
    display: block;
    margin: 7px
  }

  .nav-cta {
    display: none
  }

  .mobile-menu {
    position: fixed;
    display: flex;
    flex-direction: column;
    inset: 72px 0 0;
    background: #fff;
    padding: 40px 7vw;
    transform: translateX(100%);
    transition: .4s;
    color: var(--navy)
  }

  .mobile-menu.open {
    transform: none
  }

  .mobile-menu a {
    font-size: 36px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid var(--line);
    padding: 20px 0
  }

  .division-grid {
    grid-template-columns: 1fr 1fr
  }

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

  .product-art {
    height: 220px
  }

  .hero-stats {
    right: 3vw
  }

  .scroll-cue {
    display: none
  }
}

@media(max-width:760px) {
  .site-header {
    height: 70px;
    padding: 0 20px
  }

  .brand {
    width: 170px
  }

  .hero {
    min-height: 780px
  }

  .hero-content {
    left: 22px;
    right: 22px;
    top: 43%;
    transform: translateY(-40%)
  }

  .hero h1 {
    font-size: 52px;
    letter-spacing: -.055em
  }

  .hero-copy {
    font-size: 14px
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch
  }

  .button {
    width: 100%
  }

  .hero-stats {
    left: 20px;
    right: 20px;
    bottom: 25px
  }

  .hero-stats div {
    padding: 13px 10px;
    min-width: 0;
    flex: 1
  }

  .hero-stats strong {
    font-size: 20px
  }

  .hero-stats span {
    font-size: 7px
  }

  .hero-media {
    background-position: 62% center
  }

  .trust-strip {
    overflow: hidden;
    white-space: nowrap
  }

  .trust-strip div {
    display: none
  }

  .section {
    padding: 85px 22px
  }

  .section-label {
    margin-bottom: 35px
  }

  .display {
    font-size: 47px
  }

  .intro-layout,
  .section-heading-row,
  .edge-layout,
  .global,
  .faq,
  .contact,
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .about-visual {
    height: 560px;
    grid-template-columns: 1fr
  }

  .visual-panel p {
    font-size: 36px
  }

  .metric-card {
    margin: 12px
  }

  .division-grid {
    grid-template-columns: 1fr
  }

  .division-card {
    min-height: 420px
  }

  .section-heading-row {
    align-items: start
  }

  .product-tabs {
    overflow: auto
  }

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

  .product-card {
    grid-template-columns: 42% 1fr;
    min-height: 280px
  }

  .product-art {
    height: auto
  }

  .product-info {
    padding: 26px 20px
  }

  .product-info h3 {
    font-size: 20px
  }

  .edge-sticky {
    position: static
  }

  .equipment {
    min-height: 720px
  }

  .equipment-content>div:last-child {
    margin-top: 90px
  }

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

  .industry-card {
    height: 170px
  }

  .global {
    padding-top: 90px
  }

  .world-map {
    margin-top: 10px
  }

  .testimonial {
    min-height: 700px
  }

  .faq-head {
    margin-bottom: 30px
  }

  .contact {
    padding-bottom: 80px
  }

  .inquiry-form {
    padding: 25px
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0
  }

  .footer-links {
    grid-template-columns: 1fr 1fr
  }

  .footer-bottom {
    gap: 15px;
    flex-wrap: wrap
  }
}

@media(max-width:480px) {
  .hero h1 {
    font-size: 44px
  }

  .display {
    font-size: 40px
  }

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

  .product-art {
    height: 190px
  }

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

  .industry-card {
    height: 150px
  }

  .global-stats {
    gap: 25px
  }

  .footer-links {
    grid-template-columns: 1fr 1fr
  }

  .testimonial-slide p {
    font-size: 27px
  }
}

@media(prefers-reduced-motion:reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none
  }

  .hero-media,
  .equipment-bg {
    transform: none !important
  }
}

/* Multi-page navigation and detail pages */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center
}

.nav-drop-toggle {
  border: 0;
  background: transparent;
  color: inherit;
  font: 600 13px Manrope;
  cursor: pointer;
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 7px
}

.nav-drop-toggle span {
  font-size: 14px;
  transition: .25s
}

.nav-dropdown:hover .nav-drop-toggle span,
.nav-dropdown.open .nav-drop-toggle span {
  transform: rotate(180deg)
}

.dropdown-menu {
  position: absolute;
  top: 52px;
  left: 50%;
  transform: translate(-50%, 10px);
  width: 380px;
  background: #fff;
  color: var(--navy);
  border: 1px solid #e3e8ea;
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 24px 70px rgba(3, 17, 31, .20);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .25s
}

.dropdown-menu:before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: #fff;
  border-left: 1px solid #e3e8ea;
  border-top: 1px solid #e3e8ea;
  transform: translateX(-50%) rotate(45deg)
}

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

.dropdown-menu>a {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 2px 8px;
  padding: 13px 12px;
  border-radius: 11px;
  color: var(--navy) !important;
  text-decoration: none
}

.dropdown-menu>a:hover {
  background: #f1f7f3
}

.dropdown-menu small {
  grid-row: 1/3;
  color: var(--green);
  font-weight: 800;
  padding-top: 2px
}

.dropdown-menu strong {
  font-size: 12px
}

.dropdown-menu>a>span {
  font-size: 9px;
  color: #73808a
}

.dropdown-menu .dropdown-all {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  background: var(--navy);
  color: #fff !important;
  font-size: 11px;
  font-weight: 700
}

.dropdown-menu.compact {
  width: 330px
}

.mobile-sub {
  display: grid;
  padding-left: 18px;
  border-left: 2px solid #dce8e1
}

.mobile-sub a {
  font-size: 17px !important;
  padding: 10px 0 !important
}

.inner-page .site-header:not(.scrolled) {
  background: #fff
}

.page-hero {
  height: 78vh;
  min-height: 620px;
  position: relative;
  color: #fff;
  overflow: hidden
}

.page-hero-media {
  position: absolute;
  inset: 0;
  background: url('assets/industrial-port-hero.png') center/cover;
  filter: saturate(.7)
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 16, 29, .94), rgba(4, 20, 35, .55) 60%, rgba(3, 16, 29, .3)), linear-gradient(0deg, rgba(3, 16, 29, .8), transparent)
}

.page-hero-content {
  position: absolute;
  left: 7vw;
  bottom: 120px;
  max-width: 920px
}

.page-hero h1 {
  font-size: clamp(54px, 6vw, 96px);
  line-height: .98;
  letter-spacing: -.06em;
  margin: 24px 0;
  font-weight: 600
}

.page-hero-content>p {
  font-size: 17px;
  line-height: 1.7;
  color: #ced9df;
  max-width: 690px
}

.page-breadcrumb {
  position: absolute;
  left: 7vw;
  bottom: 38px;
  display: flex;
  gap: 11px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #a9bac5
}

.page-breadcrumb a {
  color: #fff;
  text-decoration: none
}

.detail-section {
  padding: 120px 7vw
}

.detail-section.soft {
  background: var(--paper)
}

.dark-detail {
  background: var(--navy);
  color: #fff
}

.detail-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw
}

.detail-split h2,
.page-section-head h2,
.contact-panel h2 {
  font-size: clamp(38px, 4.5vw, 70px);
  line-height: 1.06;
  letter-spacing: -.05em;
  margin: 18px 0
}

.detail-split p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted)
}

.dark-detail .detail-split p {
  color: #aebdc7
}

.micro-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--green);
  font-weight: 800
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #d7dfe2
}

.metric-row>div {
  background: #fff;
  padding: 45px 28px
}

.metric-row strong {
  font-size: 45px;
  color: var(--navy);
  display: block
}

.metric-row span {
  font-size: 11px;
  color: var(--muted)
}

.page-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 55px
}

.page-section-head h2 {
  max-width: 760px
}

.feature-grid,
.link-card-grid,
.material-grid,
.industry-page-grid {
  display: grid;
  gap: 16px
}

.feature-grid.three {
  grid-template-columns: repeat(3, 1fr)
}

.feature-grid article,
.material-grid article,
.industry-page-grid article {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 20px;
  min-height: 250px;
  display: flex;
  flex-direction: column
}

.feature-grid article>b,
.link-card-grid>a>span,
.material-grid article>span,
.industry-page-grid article>span {
  font-size: 10px;
  color: var(--green);
  letter-spacing: .13em
}

.feature-grid h3,
.material-grid h3,
.industry-page-grid h3 {
  font-size: 24px;
  margin: 45px 0 12px
}

.feature-grid p,
.material-grid p,
.industry-page-grid p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted)
}

.feature-grid a {
  margin-top: auto;
  color: var(--ink);
  text-decoration: none;
  font-size: 11px;
  font-weight: 800
}

.link-card-grid {
  grid-template-columns: 1fr 1fr
}

.link-card-grid>a {
  min-height: 330px;
  padding: 36px;
  border-radius: 22px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: .3s
}

.link-card-grid>a:hover {
  transform: translateY(-7px);
  background: #103653
}

.link-card-grid h3 {
  font-size: 34px;
  margin: 65px 0 15px
}

.link-card-grid p {
  font-size: 13px;
  line-height: 1.7;
  color: #a9bac5;
  max-width: 430px
}

.link-card-grid b {
  margin-top: auto;
  font-size: 11px
}

.material-grid {
  grid-template-columns: repeat(3, 1fr)
}

.material-grid article {
  background: linear-gradient(145deg, #f8faf9, #edf2ef)
}

.industry-page-grid {
  grid-template-columns: repeat(3, 1fr)
}

.industry-page-grid article:hover {
  background: var(--navy);
  color: #fff
}

.industry-page-grid article:hover p {
  color: #b6c4cc
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line)
}

.steps li {
  display: grid;
  grid-template-columns: 60px 1fr;
  padding: 24px 0;
  border-bottom: 1px solid var(--line)
}

.steps b {
  color: var(--green)
}

.steps span {
  font-size: 15px
}

.page-cta {
  padding: 105px 7vw;
  background: linear-gradient(120deg, #0b2742, #123c60);
  color: #fff;
  text-align: center
}

.page-cta>span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #77cb99
}

.page-cta h2 {
  font-size: clamp(40px, 5vw, 76px);
  letter-spacing: -.05em;
  margin: 20px 0 35px
}

.contact-page {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 8vw;
  background: var(--paper)
}

.contact-panel {
  display: flex;
  flex-direction: column
}

.contact-panel a {
  font-size: 18px;
  color: var(--navy);
  text-decoration: none;
  margin: 7px 0
}

.contact-panel p {
  color: var(--muted);
  line-height: 1.7;
  margin-top: 35px
}

@media(max-width:1100px) {
  .nav-dropdown {
    display: none
  }
}

@media(max-width:760px) {
  .page-hero {
    height: 76vh;
    min-height: 620px
  }

  .page-hero-content {
    left: 22px;
    right: 22px;
    bottom: 105px
  }

  .page-hero h1 {
    font-size: 48px
  }

  .page-hero-content>p {
    font-size: 14px
  }

  .page-breadcrumb {
    left: 22px;
    bottom: 30px
  }

  .detail-section {
    padding: 80px 22px
  }

  .detail-split,
  .contact-page {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .metric-row {
    grid-template-columns: 1fr 1fr
  }

  .feature-grid.three,
  .material-grid,
  .industry-page-grid,
  .link-card-grid {
    grid-template-columns: 1fr
  }

  .page-section-head {
    display: block
  }

  .feature-grid article,
  .material-grid article,
  .industry-page-grid article {
    min-height: 220px
  }

  .mobile-menu {
    overflow: auto
  }

  .mobile-menu>a {
    font-size: 20px;
    padding: 14px 0
  }
}

/* Tablet and mobile dropdown hardening */
@media(max-width:1100px) {
  .mobile-menu {
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-bottom: 90px
  }

  .mobile-dropdown {
    border-bottom: 1px solid var(--line)
  }

  .mobile-drop-toggle {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--navy);
    font: 500 22px Manrope;
    text-align: left;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer
  }

  .mobile-drop-toggle span {
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 20px;
    transition: .25s
  }

  .mobile-dropdown.open .mobile-drop-toggle span {
    transform: rotate(45deg);
    background: var(--navy);
    color: #fff
  }

  .mobile-sub {
    display: grid;
    max-height: 0;
    overflow: hidden;
    padding-left: 18px;
    border-left: 2px solid #dce8e1;
    transition: max-height .35s ease, margin .35s ease;
    visibility: hidden
  }

  .mobile-dropdown.open .mobile-sub {
    max-height: 330px;
    margin: 0 0 18px;
    visibility: visible
  }

  .mobile-sub a {
    font-size: 14px !important;
    padding: 10px 0 !important;
    border: 0 !important;
    color: #50616c !important
  }
}

@media(max-width:760px) {
  .mobile-drop-toggle {
    font-size: 20px;
    padding: 14px 0
  }

  .mobile-menu {
    inset: 70px 0 0;
    padding: 26px 22px 90px
  }

  .mobile-menu>a {
    font-size: 20px;
    padding: 14px 0
  }
}

/* Mobile menu viewport stacking fix */
@media(max-width:1100px) {
  .mobile-menu {
    z-index: 49
  }
}

/* Editorial industrial image system */
.visual-library {
  background: #fff
}

.image-led-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.editorial-figure {
  position: relative;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: var(--navy)
}

.editorial-figure.image-wide {
  grid-column: span 2;
  height: 520px
}

.editorial-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s ease, filter .7s ease
}

.editorial-figure:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 17, 31, .82), transparent 55%)
}

.editorial-figure:hover img {
  transform: scale(1.035);
  filter: saturate(1.08)
}

.editorial-figure>span {
  position: absolute;
  z-index: 1;
  left: 30px;
  right: 30px;
  bottom: 28px;
  display: flex;
  justify-content: space-between;
  align-items: end
}

.editorial-figure b {
  font-size: 25px
}

.editorial-figure small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em
}

.page-image-banner {
  margin: 0;
  padding: 28px 7vw 0;
  background: #fff
}

.page-image-banner .image-frame {
  height: min(62vw, 680px);
  min-height: 420px;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  background: var(--navy)
}

.page-image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.page-image-banner figcaption {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 26px;
  z-index: 1;
  color: #fff;
  font-size: 12px;
  letter-spacing: .04em
}

.page-image-banner .image-frame:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 17, 31, .72), transparent 45%)
}

.inner-page .page-hero-media {
  background-position: center
}

.inner-page .page-hero {
  height: 72vh
}

@media(max-width:760px) {
  .image-led-grid {
    grid-template-columns: 1fr
  }

  .editorial-figure,
  .editorial-figure.image-wide {
    grid-column: auto;
    height: 300px
  }

  .editorial-figure>span {
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: grid;
    gap: 6px
  }

  .editorial-figure b {
    font-size: 21px
  }

  .editorial-figure small {
    font-size: 8px
  }

  .page-image-banner {
    padding: 16px 16px 0
  }

  .page-image-banner .image-frame {
    height: 300px;
    min-height: 0;
    border-radius: 18px
  }

  .page-image-banner figcaption {
    left: 18px;
    right: 18px;
    bottom: 17px;
    font-size: 10px
  }

  .inner-page .page-hero {
    height: 68vh
  }
}

/* Photo-led product and industry cards */
.product-photo {
  background: var(--navy)
}

.product-photo:before,
.product-photo:after,
.product-photo i {
  display: none
}

.product-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
  filter: saturate(.86)
}

.product-photo:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  border-radius: 0;
  background: linear-gradient(0deg, rgba(3, 17, 31, .76), rgba(3, 17, 31, .04) 65%);
  width: auto;
  height: auto;
  box-shadow: none
}

.product-photo span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
  font-size: 11px;
  letter-spacing: .12em;
  background: rgba(7, 26, 47, .82);
  border: 1px solid rgba(255, 255, 255, .3);
  padding: 8px 11px;
  border-radius: 100px;
  backdrop-filter: blur(8px)
}

.product-card:hover .product-photo img {
  transform: scale(1.06)
}

.photo-poly img {
  object-position: center
}

.photo-hdpe img {
  object-position: center
}

.photo-aluminum img {
  object-position: center
}

.photo-bitumen img {
  object-position: center
}

.industry-photo {
  overflow: hidden;
  color: #fff;
  background: var(--navy);
  border-color: #153a5a
}

.industry-photo>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.75);
  transition: transform .55s ease, filter .55s ease
}

.industry-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 17, 31, .9), rgba(3, 17, 31, .18))
}

.industry-photo>span,
.industry-photo>i,
.industry-photo>h3 {
  z-index: 1
}

.industry-photo>span {
  color: #8bdaa9
}

.industry-photo:hover>img {
  transform: scale(1.06);
  filter: saturate(1)
}

.industry-photo h3 {
  font-size: 23px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .4)
}

/* Global presence pinpoint map */
.global-map {
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 28px;
  overflow: hidden;
  background: radial-gradient(circle at 68% 48%, rgba(36, 162, 87, .16), transparent 27%), linear-gradient(145deg, #0c2944, #071a2f);
  position: relative;
  padding: 26px
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image: linear-gradient(rgba(255, 255, 255, .2) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .2) 1px, transparent 1px);
  background-size: 48px 48px
}

.map-svg {
  position: absolute;
  inset: 5% 3%;
  width: 94%;
  height: 90%;
  color: #577892
}

.continents {
  fill: rgba(102, 142, 165, .27);
  stroke: #7598ad;
  stroke-width: 1.3
}

.route-lines {
  fill: none;
  stroke: #5cc781;
  stroke-width: 1.4;
  stroke-dasharray: 5 7;
  opacity: .65
}

.map-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 3;
  transform: translate(-50%, -50%)
}

.map-pin>i {
  display: block;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  background: #52c67e;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(82, 198, 126, .15);
  animation: mapPulse 2.2s ease-out infinite
}

.map-pin>i:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(82, 198, 126, .6);
  border-radius: 50%;
  left: -7px;
  top: -7px;
  animation: mapRing 2.2s ease-out infinite
}

.map-pin>span {
  position: absolute;
  left: 17px;
  top: -17px;
  white-space: nowrap;
  background: rgba(255, 255, 255, .96);
  color: var(--navy);
  padding: 8px 10px;
  border-radius: 9px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
  display: grid
}

.map-pin b {
  font-size: 10px
}

.map-pin small {
  font-size: 7px;
  color: #6d7c86
}

.pin-hq>i {
  width: 14px;
  height: 14px;
  background: #fff;
  border: 4px solid var(--green);
  box-shadow: 0 0 0 8px rgba(36, 162, 87, .22)
}

.pin-hq>span {
  background: var(--green);
  color: #fff
}

.pin-hq small {
  color: #d9f2e3
}

.map-legend {
  position: absolute;
  left: 24px;
  bottom: 20px;
  display: flex;
  gap: 18px;
  color: #c1cdd5;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .1em
}

.map-legend span {
  display: flex;
  align-items: center;
  gap: 7px
}

.map-legend i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #52c67e
}

.map-legend .hq-dot {
  background: #fff;
  border: 2px solid var(--green);
  width: 9px;
  height: 9px
}

@keyframes mapPulse {

  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(82, 198, 126, .12)
  }

  50% {
    box-shadow: 0 0 0 11px rgba(82, 198, 126, .22)
  }
}

@keyframes mapRing {
  0% {
    transform: scale(.6);
    opacity: 1
  }

  100% {
    transform: scale(1.8);
    opacity: 0
  }
}

@media(max-width:760px) {
  .global-map {
    min-height: 390px;
    border-radius: 20px;
    padding: 10px
  }

  .map-svg {
    inset: 8% 0;
    width: 100%;
    height: 84%
  }

  .map-pin>span {
    display: none
  }

  .pin-hq>span {
    display: grid;
    left: -30px;
    top: 20px
  }

  .map-legend {
    left: 14px;
    bottom: 12px;
    gap: 12px;
    font-size: 7px
  }

  .route-lines {
    stroke-width: 2
  }

  .continents {
    stroke-width: 2
  }
}

/* Static global presence map image */
.global-map-image {
  margin: 0;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .22);
  background: #071a2f
}

.global-map-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover
}

.global-map-image figcaption {
  position: absolute;
  right: 20px;
  bottom: 16px;
  color: #afbfca;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .12em;
  background: rgba(7, 26, 47, .74);
  padding: 8px 11px;
  border-radius: 100px;
  backdrop-filter: blur(8px)
}

@media(max-width:760px) {
  .global-map-image {
    border-radius: 19px
  }

  .global-map-image img {
    aspect-ratio: 1/1;
    object-position: center
  }

  .global-map-image figcaption {
    display: none
  }
}

/* Expanded company, product and enquiry content */
.company-profile-grid,
.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.company-profile,
.product-detail-grid article {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
  background: #fff
}

.company-profile>b,
.product-detail-grid article>span {
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--green);
  font-weight: 800
}

.company-profile h3,
.product-detail-grid h3 {
  font-size: 25px;
  margin: 20px 0 12px
}

.company-profile h4,
.detail-split h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 24px 0 8px
}

.company-profile p,
.company-profile li,
.product-detail-grid p,
.product-detail-grid li {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted)
}

.company-profile ul,
.product-detail-grid ul {
  padding-left: 18px
}

.company-profile a {
  display: inline-block;
  margin-top: 18px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none
}

.product-detail-grid {
  grid-template-columns: repeat(3, 1fr)
}

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

.content-gallery.four {
  grid-template-columns: repeat(4, 1fr)
}

.content-gallery.five {
  grid-template-columns: repeat(5, 1fr)
}

.content-gallery img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 22px
}

.content-gallery.four img,
.content-gallery.five img {
  height: 240px
}

.form-section {
  display: grid;
  grid-template-columns: .7fr 1fr;
  gap: 8vw;
  align-items: start
}

.page-inquiry {
  box-shadow: 0 24px 70px rgba(7, 26, 47, .1)
}

.quick-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px
}

.quick-actions .button {
  min-width: 170px
}

.map-embed {
  height: 430px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e9efec
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0
}

.contact-panel .button {
  font-size: 12px
}

.equipment-list {
  grid-template-columns: repeat(4, 1fr)
}

@media(max-width:1000px) {

  .company-profile-grid,
  .product-detail-grid {
    grid-template-columns: 1fr 1fr
  }

  .content-gallery.four,
  .content-gallery.five {
    grid-template-columns: 1fr 1fr
  }

  .equipment-list {
    grid-template-columns: 1fr 1fr
  }

  .form-section {
    grid-template-columns: 1fr
  }
}

@media(max-width:620px) {

  .company-profile-grid,
  .product-detail-grid,
  .content-gallery,
  .content-gallery.four,
  .content-gallery.five,
  .equipment-list {
    grid-template-columns: 1fr
  }

  .content-gallery img,
  .content-gallery.four img,
  .content-gallery.five img {
    height: 230px
  }

  .quick-actions {
    flex-direction: column
  }

  .quick-actions .button {
    width: 100%
  }

  .map-embed {
    height: 330px
  }
}

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  padding: 0;
  margin: 24px 0;
  list-style: none
}

.about-points li {
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 10px 13px;
  font-size: 10px;
  font-weight: 700;
  color: var(--navy)
}

@media(max-width:480px) {
  .about-points {
    grid-template-columns: 1fr
  }
}

/* Page-specific content expansions */
.rich-copy {
  display: grid;
  gap: 8px
}

.rich-copy h3 {
  font-size: 18px;
  margin: 12px 0 0
}

.rich-copy p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0
}

.mini-faq {
  border-top: 1px solid var(--line)
}

.mini-faq details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0
}

.mini-faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  gap: 20px
}

.mini-faq summary span {
  font-size: 22px;
  color: var(--green)
}

.mini-faq p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 13px
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px
}

.checklist-grid span {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  font-size: 12px;
  font-weight: 700;
  background: #fff
}

.content-expansion .feature-grid a {
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none
}

@media(max-width:760px) {
  .checklist-grid {
    grid-template-columns: 1fr
  }
}

/* Export page deep-dive */
.export-company-detail {
  display: grid;
  gap: 16px
}

.export-company-detail article {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 7vw;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px;
  background: #fff
}

.export-company-detail span {
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--green);
  font-weight: 800
}

.export-company-detail h3 {
  font-size: 28px;
  margin: 18px 0 12px
}

.export-company-detail p,
.export-company-detail li {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted)
}

.export-company-detail ul {
  columns: 2;
  padding-left: 18px;
  margin: 0
}

.export-company-detail li {
  margin-bottom: 8px;
  break-inside: avoid
}

.export-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .16)
}

.export-timeline article {
  padding: 28px;
  background: var(--navy)
}

.export-timeline b {
  color: var(--green);
  font-size: 11px
}

.export-timeline h3 {
  font-size: 18px;
  margin: 28px 0 10px
}

.export-timeline p {
  font-size: 12px;
  line-height: 1.65;
  color: #aebcc6
}

.export-segments {
  grid-template-columns: repeat(3, 1fr)
}

@media(max-width:900px) {
  .export-timeline {
    grid-template-columns: 1fr 1fr
  }

  .export-company-detail article {
    grid-template-columns: 1fr
  }

  .export-company-detail ul {
    columns: 1
  }
}

@media(max-width:600px) {

  .export-timeline,
  .export-segments {
    grid-template-columns: 1fr
  }
}

/* Rajdhani Mill Store complete catalogue */
.rajdhani-catalogue .page-section-head p {
  max-width: 700px;
  color: var(--muted);
  line-height: 1.7
}

.rajdhani-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.rajdhani-product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: .35s
}

.rajdhani-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(7, 26, 47, .1)
}

.rajdhani-product-image {
  height: 190px;
  background: #fff;
  overflow: hidden
}

.rajdhani-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform .4s
}

.rajdhani-product-card:hover img {
  transform: scale(1.05)
}

.rajdhani-product-card>div:last-child {
  padding: 20px
}

.rajdhani-product-card span {
  font-size: 9px;
  color: var(--green);
  font-weight: 800
}

.rajdhani-product-card h3 {
  font-size: 17px;
  line-height: 1.25;
  margin: 10px 0 24px
}

.rajdhani-product-card a {
  font-size: 11px;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none
}

.catalogue-source {
  font-size: 10px;
  color: var(--muted);
  margin-top: 24px
}

@media(max-width:1100px) {
  .rajdhani-product-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:760px) {
  .rajdhani-product-grid {
    grid-template-columns: 1fr 1fr
  }

  .rajdhani-product-image {
    height: 160px
  }
}

@media(max-width:460px) {
  .rajdhani-product-grid {
    grid-template-columns: 1fr
  }
}

/* Full products page catalogue */
.catalogue-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.catalogue-nav a {
  padding: 12px 17px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none
}

.catalogue-text-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px
}

.catalogue-text-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 20px;
  padding: 26px
}

.catalogue-text-card span,
.catalogue-image-card span {
  font-size: 9px;
  letter-spacing: .1em;
  color: var(--green);
  font-weight: 800
}

.catalogue-text-card h3 {
  font-size: 19px;
  margin: 16px 0 10px
}

.catalogue-text-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6
}

.catalogue-text-card a,
.catalogue-image-card a,
.full-product-catalogue .product-detail-grid a {
  font-size: 11px;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none
}

.catalogue-image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px
}

.catalogue-image-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  transition: .35s
}

.catalogue-image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(7, 26, 47, .1)
}

.catalogue-image-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  padding: 12px;
  background: #fff
}

.catalogue-image-card div {
  padding: 18px
}

.catalogue-image-card h3 {
  font-size: 17px;
  margin: 10px 0 20px
}

.full-product-catalogue .page-section-head>p {
  color: var(--muted);
  line-height: 1.7
}

@media(max-width:1050px) {

  .catalogue-text-grid,
  .catalogue-image-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:760px) {

  .catalogue-text-grid,
  .catalogue-image-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:480px) {

  .catalogue-text-grid,
  .catalogue-image-grid {
    grid-template-columns: 1fr
  }
}

/* Business profile pages */
.desktop-nav {
  gap: clamp(10px, 1.2vw, 23px)
}

.desktop-nav>a,
.nav-drop-toggle {
  font-size: 10px;
  white-space: nowrap
}

.dropdown-menu {
  max-height: 72vh;
  overflow: auto
}

.profile-hero {
  padding: 170px 6vw 80px;
  background: linear-gradient(120deg, #061a30, #123d5f);
  color: #fff
}

.profile-hero h1 {
  font-size: clamp(44px, 6vw, 84px);
  margin: 22px 0
}

.profile-hero p {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.75;
  color: #d2deea
}

.profile-layout {
  padding: 90px 6vw
}

.profile-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px
}

.profile-card {
  background: #fff;
  border: 1px solid #dce5eb;
  border-radius: 24px;
  padding: 34px
}

.profile-card.wide {
  grid-column: 1/-1
}

.profile-card h2 {
  font-size: 28px;
  color: #092039
}

.profile-card p {
  color: #536473;
  line-height: 1.75
}

.product-pill-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.product-pill-list span {
  padding: 10px 14px;
  border: 1px solid #cddae2;
  border-radius: 999px
}

.quick-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 25px
}

.quick-actions a {
  padding: 13px 20px;
  border-radius: 999px;
  background: #168f52;
  color: #fff;
  text-decoration: none
}

.quick-actions .secondary {
  background: #0b2942
}

.profile-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px
}

.profile-form label,
.profile-form button,
.profile-form .form-success {
  grid-column: 1/-1
}

.profile-form input,
.profile-form textarea,
.profile-form select {
  width: 100%;
  box-sizing: border-box;
  padding: 14px;
  border: 1px solid #ccd9e1;
  border-radius: 10px;
  font: inherit
}

.profile-form textarea {
  min-height: 120px
}

.profile-form button {
  border: 0;
  border-radius: 999px;
  background: #168f52;
  color: #fff;
  padding: 15px;
  font-weight: 700
}

.service-area {
  background: #edf5f1
}

.mobile-sub {
  max-height: 45vh;
  overflow: auto
}

@media(max-width:1180px) {

  .desktop-nav,
  .nav-cta {
    display: none
  }

  .menu-toggle {
    display: flex
  }
}

@media(max-width:760px) {
  .profile-hero {
    padding: 130px 24px 58px
  }

  .profile-layout {
    padding: 55px 22px
  }

  .profile-grid {
    grid-template-columns: 1fr
  }

  .profile-card.wide {
    grid-column: auto
  }

  .profile-form {
    grid-template-columns: 1fr
  }

  .profile-form>* {
    grid-column: 1 !important
  }
}

/* Click-only dropdown behavior and profile imagery */
.nav-dropdown:not(.open):hover .dropdown-menu {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translate(-50%, 12px) !important
}

.nav-dropdown:not(.open):hover .nav-drop-toggle span {
  transform: none !important
}

.profile-showcase {
  display: grid;
  grid-template-columns: 1fr minmax(320px, .85fr);
  gap: 40px;
  align-items: center
}

.profile-showcase figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  min-height: 300px
}

.profile-showcase img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block
}

.mobile-dropdown:not(.open) .mobile-sub {
  max-height: 0 !important;
  visibility: hidden !important;
  margin: 0 !important;
  overflow: hidden !important
}

@media(max-width:760px) {
  .profile-showcase {
    grid-template-columns: 1fr
  }

  .profile-showcase figure,
  .profile-showcase img {
    min-height: 220px
  }
}

/* Expanded page storytelling */
.expanded-story {
  padding: 30px 6vw 100px;
  background: #f5f8fa
}

.expanded-story-image {
  height: min(58vw, 620px);
  min-height: 340px;
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 65px
}

.expanded-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.expanded-story-copy {
  display: grid;
  grid-template-columns: .55fr 1.2fr 1fr;
  gap: 35px;
  align-items: start;
  margin-bottom: 50px
}

.expanded-story-copy h2 {
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.08;
  margin: 0;
  color: #092039
}

.expanded-story-copy p {
  font-size: 17px;
  line-height: 1.8;
  color: #576977;
  margin: 0
}

.expanded-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.expanded-info-grid article {
  background: #fff;
  border: 1px solid #dce5eb;
  border-radius: 20px;
  padding: 28px
}

.expanded-info-grid span {
  font-size: 12px;
  color: #168f52;
  font-weight: 800
}

.expanded-info-grid h3 {
  font-size: 19px;
  color: #092039;
  margin: 25px 0 12px
}

.expanded-info-grid p {
  color: #60717e;
  line-height: 1.7;
  font-size: 14px
}

.expanded-assurance {
  margin-top: 55px;
  padding: 45px;
  border-radius: 24px;
  background: #092039;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 35px;
  align-items: center
}

.expanded-assurance h2 {
  font-size: 30px;
  margin: 12px 0 0
}

.expanded-assurance p {
  color: #c7d4de;
  line-height: 1.7
}

.expanded-assurance a {
  color: #fff;
  text-decoration: none;
  border: 1px solid #668096;
  border-radius: 999px;
  padding: 14px 20px;
  white-space: nowrap
}

@media(max-width:950px) {
  .expanded-story-copy {
    grid-template-columns: 1fr
  }

  .expanded-info-grid {
    grid-template-columns: 1fr 1fr
  }

  .expanded-assurance {
    grid-template-columns: 1fr
  }
}

@media(max-width:600px) {
  .expanded-story {
    padding: 20px 22px 65px
  }

  .expanded-story-image {
    min-height: 260px;
    margin-bottom: 40px
  }

  .expanded-info-grid {
    grid-template-columns: 1fr
  }

  .expanded-assurance {
    padding: 28px
  }
}

/* Desktop navbar alignment correction */
@media (min-width:1181px) {
  .site-header {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr) auto;
    align-items: center;
    column-gap: clamp(18px, 2vw, 34px);
    box-sizing: border-box
  }

  .brand {
    grid-column: 1;
    margin: 0
  }

  .desktop-nav {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: clamp(12px, 1.25vw, 24px);
    margin: 0;
    min-width: 0;
    height: 100%
  }

  .desktop-nav>a,
  .nav-dropdown,
  .nav-drop-toggle {
    align-self: center
  }

  .desktop-nav>a {
    display: inline-flex;
    align-items: center;
    height: 44px;
    line-height: 1
  }

  .nav-dropdown {
    height: 44px;
    flex: 0 0 auto
  }

  .nav-drop-toggle {
    height: 44px;
    padding: 0;
    line-height: 1
  }

  .nav-cta {
    grid-column: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    margin: 0
  }

  .dropdown-menu {
    top: 50px
  }
}

@media (min-width:1181px) and (max-width:1320px) {
  .site-header {
    grid-template-columns: 190px minmax(0, 1fr) auto;
    padding-left: 3vw;
    padding-right: 3vw;
    column-gap: 16px
  }

  .brand {
    width: 190px
  }

  .desktop-nav {
    gap: 12px
  }

  .desktop-nav>a,
  .nav-drop-toggle {
    font-size: 9px
  }

  .nav-cta {
    padding: 11px 14px;
    font-size: 11px
  }
}

/* Unified hamburger navigation on every device */
.site-header,
.site-header.scrolled {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: none
}

.desktop-nav,
.nav-cta {
  display: none !important
}

.brand {
  margin: 0
}

.menu-toggle {
  display: block !important;
  margin-left: auto;
  background: transparent;
  border: 0;
  width: 48px;
  height: 48px;
  padding: 10px;
  cursor: pointer;
  color: var(--navy);
  position: relative
}

.menu-toggle span {
  height: 1px;
  width: 24px;
  background: currentColor;
  display: block;
  margin: 7px auto;
  transition: transform .3s ease
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg)
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg)
}

.mobile-menu {
  position: fixed;
  display: flex !important;
  flex-direction: column;
  inset: 0;
  background: #fff;
  padding: 125px 7vw 70px;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.7, 0, .2, 1);
  color: var(--navy);
  z-index: 49;
  overflow-y: auto;
  overscroll-behavior: contain
}

.mobile-menu.open {
  transform: none
}

.mobile-menu>a {
  font-size: clamp(20px, 2.8vw, 32px);
  line-height: 1.1;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--line);
  padding: 18px 0
}

.mobile-dropdown {
  border-bottom: 1px solid var(--line)
}

.mobile-drop-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--navy);
  font: 500 clamp(20px, 2.8vw, 32px) Manrope;
  text-align: left;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer
}

.mobile-drop-toggle span {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  transition: .25s
}

.mobile-dropdown.open .mobile-drop-toggle span {
  transform: rotate(45deg);
  background: var(--navy);
  color: #fff
}

.mobile-sub {
  display: grid;
  max-height: 0;
  overflow: hidden;
  padding-left: 20px;
  border-left: 2px solid #dce8e1;
  transition: max-height .35s ease, margin .35s ease;
  visibility: hidden
}

.mobile-dropdown.open .mobile-sub {
  max-height: 460px;
  margin: 0 0 20px;
  visibility: visible
}

.mobile-sub a {
  font-size: 18px !important;
  padding: 10px 0 !important;
  border: 0 !important;
  color: #50616c !important;
  text-decoration: none
}

@media(min-width:900px) {
  .mobile-menu {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    align-content: start;
    column-gap: 8vw
  }

  .mobile-menu>*,
  .mobile-dropdown {
    align-self: start
  }

  .mobile-menu.open {
    transform: none
  }

  .mobile-menu>a:last-child {
    grid-column: 2
  }
}

@media(max-width:760px) {
  .mobile-menu {
    display: flex !important;
    inset: 0;
    padding: 100px 22px 60px
  }

  .mobile-menu>a,
  .mobile-drop-toggle {
    font-size: 20px;
    padding: 14px 0
  }

  .mobile-drop-toggle span {
    width: 34px;
    height: 34px;
    font-size: 20px
  }

  .mobile-sub a {
    font-size: 14px !important
  }
}

/* Additional product galleries */
.additional-product-gallery {
  padding: 100px 6vw;
  background: #fff
}

.additional-product-gallery .page-section-head>p {
  max-width: 520px;
  color: #687985;
  line-height: 1.7
}

.additional-gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  grid-template-rows: 260px 260px;
  gap: 16px
}

.additional-gallery-grid figure {
  position: relative;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #092039
}

.additional-gallery-grid figure.large {
  grid-row: 1/3
}

.additional-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease
}

.additional-gallery-grid figure:hover img {
  transform: scale(1.035)
}

.additional-gallery-grid figure:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 17, 31, .74), transparent 55%)
}

.additional-gallery-grid figcaption {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 1;
  color: #fff;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase
}

@media(max-width:760px) {
  .additional-product-gallery {
    padding: 70px 22px
  }

  .additional-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 320px 220px 220px
  }

  .additional-gallery-grid figure.large {
    grid-row: auto
  }
}

.source-product-section {
  padding: clamp(64px, 8vw, 112px) max(24px, 6vw);
  background: #f4f7f8;
  color: #0b2942
}

.source-product-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .65fr);
  gap: 28px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 36px
}

.source-product-head h2 {
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -.045em;
  margin: 10px 0 0
}

.source-product-head>p {
  font-size: 17px;
  line-height: 1.7;
  color: #506372;
  margin: 0
}

.source-product-visual {
  max-width: 1180px;
  margin: 0 auto 28px;
  border-radius: 30px;
  overflow: hidden;
  background: #dce6eb;
  box-shadow: 0 24px 65px rgba(8, 39, 61, .13)
}

.source-product-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16/8;
  object-fit: cover
}

.source-product-visual figcaption {
  padding: 12px 18px;
  background: #fff;
  color: #637582;
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase
}

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

.source-detail-grid article {
  padding: 26px;
  min-height: 210px;
  border: 1px solid #d9e3e7;
  border-radius: 22px;
  background: #fff
}

.source-detail-grid article>span {
  display: inline-block;
  color: #18a85b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  margin-bottom: 28px
}

.source-detail-grid h3 {
  font-size: 21px;
  margin: 0 0 12px;
  color: #0b2942
}

.source-detail-grid p {
  margin: 0;
  color: #5a6c78;
  line-height: 1.65
}

.source-note {
  max-width: 1180px;
  margin: 14px auto 0;
  padding: 24px 28px;
  border-radius: 20px;
  background: #0b2942;
  color: #fff;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: center
}

.source-note strong {
  color: #7ed6a6;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px
}

.source-note p {
  margin: 0;
  line-height: 1.65;
  color: #d7e2e9
}

@media(max-width:900px) {
  .source-product-head {
    grid-template-columns: 1fr
  }

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

  .source-product-visual img {
    aspect-ratio: 4/3
  }

  .source-note {
    grid-template-columns: 1fr;
    gap: 8px
  }
}

@media(max-width:580px) {
  .source-product-section {
    padding-left: 18px;
    padding-right: 18px
  }

  .source-detail-grid {
    grid-template-columns: 1fr
  }

  .source-detail-grid article {
    min-height: 0
  }

  .source-product-visual {
    border-radius: 20px
  }

  .source-note {
    padding: 22px
  }
}

/* Consistent navigation typography */
.desktop-nav,
.desktop-nav a,
.nav-drop-toggle {
  font-family: Manrope, Arial, sans-serif !important
}

/* Final contact section */
.page-bottom-contact {
  padding: clamp(64px, 8vw, 110px) max(22px, 6vw);
  background: #071f34;
  color: #fff
}

.page-bottom-contact-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px
}

.page-bottom-contact-info,
.page-bottom-quote {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 52px)
}

.page-bottom-contact-info {
  background: linear-gradient(145deg, #0c3452, #09263d)
}

.page-bottom-contact .micro-label {
  color: #83d7a8
}

.page-bottom-contact h2 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -.045em;
  margin: 12px 0 26px
}

.page-bottom-contact-info>p {
  color: #c9d8e1;
  line-height: 1.8
}

.bottom-contact-links {
  display: grid;
  gap: 10px;
  margin: 26px 0
}

.bottom-contact-links a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  color: #fff;
  text-decoration: none
}

.bottom-contact-links span {
  color: #8fa9b9;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em
}

.page-bottom-contact .quick-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px
}

.page-bottom-contact .quick-actions a {
  padding: 13px 20px;
  border-radius: 999px;
  background: #20aa61;
  color: #fff;
  text-decoration: none;
  font-weight: 700
}

.page-bottom-contact .quick-actions a.secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .35)
}

.page-bottom-quote {
  background: #f2f6f7;
  color: #0b2942;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.page-bottom-quote h3 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  margin: 14px 0 18px
}

.page-bottom-quote p {
  color: #566b78;
  line-height: 1.75;
  margin: 0 0 28px
}

.bottom-inquiry-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0b2942;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  padding: 15px 20px;
  font-weight: 700;
  max-width: 260px
}

/* Floating contact and live-chat controls */
.sticky-support {
  position: fixed;
  right: 20px;
  bottom: 92px;
  z-index: 1400;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  font-family: Manrope, Arial, sans-serif
}

.support-item {
  position: relative
}

.support-toggle {
  border: 0;
  border-radius: 999px;
  min-width: 132px;
  height: 48px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: #0b2942;
  color: #fff;
  font: 700 12px Manrope, Arial, sans-serif;
  letter-spacing: .02em;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(4, 26, 44, .25)
}

.support-toggle.live {
  background: #20aa61
}

.support-toggle .support-icon {
  font-size: 17px;
  line-height: 1
}

.support-panel {
  position: absolute;
  right: 0;
  bottom: 58px;
  width: min(340px, calc(100vw - 32px));
  padding: 24px;
  background: #fff;
  color: #0b2942;
  border: 1px solid #dbe5e9;
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(4, 28, 47, .24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(.98);
  transform-origin: bottom right;
  transition: .2s ease
}

.support-item.open .support-panel {
  opacity: 1;
  visibility: visible;
  transform: none
}

.support-panel h3 {
  font-size: 24px;
  margin: 0 0 8px
}

.support-panel p {
  font-size: 14px;
  line-height: 1.6;
  color: #617480;
  margin: 0 0 18px
}

.support-panel-links {
  display: grid;
  gap: 8px
}

.support-panel-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f1f5f6;
  color: #0b2942;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px
}

.support-panel-links a.primary {
  background: #20aa61;
  color: #fff
}

@media(max-width:760px) {
  .page-bottom-contact-inner {
    grid-template-columns: 1fr
  }

  .bottom-contact-links a {
    display: grid;
    gap: 5px
  }

  .sticky-support {
    right: 12px;
    bottom: 82px;
    gap: 8px
  }

  .support-toggle {
    min-width: 48px;
    width: 48px;
    padding: 0;
    border-radius: 50%
  }

  .support-toggle .support-label {
    display: none
  }

  .support-panel {
    right: 0
  }

  .page-bottom-contact-info,
  .page-bottom-quote {
    border-radius: 22px;
    padding: 26px
  }
}

.live-chat-panel {
  width: min(390px, calc(100vw - 28px));
  padding: 0;
  overflow: hidden
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: #0b2942;
  color: #fff
}

.chat-header>div {
  display: flex;
  align-items: center;
  gap: 11px
}

.chat-header h3 {
  color: #fff;
  font-size: 19px;
  margin: 0
}

.chat-header small {
  color: #aec1cc
}

.chat-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #52d78d;
  box-shadow: 0 0 0 5px rgba(82, 215, 141, .13)
}

.chat-close {
  border: 0;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer
}

.chat-messages {
  height: 190px;
  overflow: auto;
  padding: 18px;
  background: #f3f6f7;
  display: flex;
  flex-direction: column;
  gap: 11px
}

.chat-message {
  max-width: 86%
}

.chat-message span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #7c909b;
  margin: 0 0 4px 4px
}

.chat-message p {
  margin: 0;
  padding: 10px 13px;
  border-radius: 15px 15px 15px 4px;
  background: #fff;
  color: #314b5b;
  font-size: 13px;
  line-height: 1.5;
  box-shadow: 0 3px 10px rgba(8, 39, 61, .06)
}

.chat-message.visitor {
  align-self: flex-end
}

.chat-message.visitor span {
  text-align: right;
  margin-right: 4px
}

.chat-message.visitor p {
  background: #0b2942;
  color: #fff;
  border-radius: 15px 15px 4px 15px
}

.chat-message.system {
  align-self: center;
  max-width: 100%
}

.chat-message.system p {
  background: #fff3e4;
  color: #7d541f;
  border-radius: 12px
}

.live-chat-form {
  padding: 16px 18px 18px;
  background: #fff
}

.chat-identity {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px
}

.live-chat-form label>span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #6e828e;
  margin: 0 0 5px
}

.live-chat-form input,
.live-chat-form textarea {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #d8e2e6;
  border-radius: 10px;
  padding: 10px 11px;
  font: 13px Manrope, Arial, sans-serif;
  color: #0b2942;
  outline: none
}

.live-chat-form input:focus,
.live-chat-form textarea:focus {
  border-color: #20aa61;
  box-shadow: 0 0 0 3px rgba(32, 170, 97, .1)
}

.chat-message-field {
  display: block;
  margin-top: 10px
}

.live-chat-form textarea {
  resize: vertical;
  min-height: 68px
}

.chat-form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 10px
}

.chat-feedback {
  font-size: 11px;
  color: #687d89;
  line-height: 1.3
}

.chat-form-footer button {
  border: 0;
  border-radius: 999px;
  background: #20aa61;
  color: #fff;
  padding: 10px 16px;
  font: 700 12px Manrope, Arial, sans-serif;
  cursor: pointer
}

.chat-form-footer button:disabled {
  opacity: .55;
  cursor: wait
}

@media(max-width:480px) {
  .live-chat-panel {
    position: fixed;
    right: 10px;
    bottom: 76px;
    width: calc(100vw - 20px)
  }

  .chat-identity {
    grid-template-columns: 1fr
  }

  .chat-messages {
    height: 160px
  }
}

/* Redesigned inquiry and quotation page */
.quote-page {
  background: #f4f7f8;
  color: #0b2942
}

.quote-hero {
  min-height: 680px;
  padding: 150px max(24px, 7vw) 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .6fr);
  gap: 50px;
  align-items: end;
  background: linear-gradient(120deg, rgba(5, 27, 46, .96), rgba(7, 45, 70, .82)), url('assets/warehouse-logistics.webp') center/cover;
  color: #fff
}

.quote-hero-copy {
  max-width: 850px
}

.quote-hero .eyebrow {
  color: #8bddae
}

.quote-hero h1 {
  font-size: clamp(58px, 8.5vw, 124px);
  line-height: .91;
  letter-spacing: -.065em;
  margin: 20px 0 28px
}

.quote-hero-copy>p {
  max-width: 720px;
  color: #c7d5dd;
  font-size: 19px;
  line-height: 1.72
}

.quote-hero-button {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  margin-top: 22px;
  padding: 15px 20px;
  border-radius: 999px;
  background: #20aa61;
  color: #fff;
  text-decoration: none;
  font-weight: 700
}

.quote-hero-button span {
  font-size: 18px
}

.quote-hero-aside {
  padding: 30px;
  border-left: 1px solid rgba(255, 255, 255, .28)
}

.quote-hero-aside>span {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #7ed6a6
}

.quote-hero-aside strong {
  display: block;
  font-size: 24px;
  line-height: 1.35;
  margin: 14px 0
}

.quote-hero-aside p {
  color: #b9cad4;
  line-height: 1.65;
  margin: 0
}

.quote-contact-top,
.quote-preparation,
.quotation-section {
  padding: clamp(70px, 9vw, 120px) max(24px, 7vw)
}

.quote-section-heading {
  max-width: 1180px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: end
}

.quote-section-heading h2,
.quote-preparation h2,
.quotation-intro h2 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -.05em;
  margin: 12px 0 0
}

.quote-section-heading>p {
  color: #607481;
  line-height: 1.7
}

.quote-contact-cards {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px
}

.quote-contact-cards>a,
.quote-contact-cards>article {
  min-height: 230px;
  padding: 25px;
  border: 1px solid #d9e4e8;
  border-radius: 22px;
  background: #fff;
  color: #0b2942;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: .2s
}

.quote-contact-cards>a:hover {
  transform: translateY(-4px);
  border-color: #20aa61;
  box-shadow: 0 16px 35px rgba(8, 39, 61, .1)
}

.quote-contact-icon {
  font-size: 12px;
  color: #20aa61;
  font-weight: 800;
  margin-bottom: auto
}

.quote-contact-cards small {
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #788c98
}

.quote-contact-cards strong {
  font-size: 18px;
  margin: 10px 0;
  overflow-wrap: anywhere
}

.quote-contact-cards em {
  font-size: 12px;
  color: #607481;
  font-style: normal
}

.quote-preparation {
  background: #fff
}

.quote-preparation>div:first-child {
  max-width: 1180px;
  margin: 0 auto 38px
}

.quote-preparation-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px
}

.quote-preparation-grid article {
  padding: 30px;
  border-radius: 22px;
  background: #eef4f5
}

.quote-preparation-grid article>span {
  font-size: 12px;
  color: #20aa61;
  font-weight: 800
}

.quote-preparation-grid h3 {
  font-size: 23px;
  margin: 35px 0 12px
}

.quote-preparation-grid p {
  color: #607481;
  line-height: 1.7;
  margin: 0
}

.quotation-section {
  display: grid;
  grid-template-columns: minmax(280px, .58fr) minmax(0, 1.2fr);
  gap: clamp(35px, 6vw, 90px);
  align-items: start;
  background: #0a2942;
  color: #fff
}

.quotation-intro {
  position: sticky;
  top: 120px
}

.quotation-intro .micro-label {
  color: #7ed6a6
}

.quotation-intro h2 {
  margin-bottom: 24px
}

.quotation-intro>p {
  color: #bfd0da;
  line-height: 1.75
}

.quotation-support {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  display: grid;
  gap: 9px
}

.quotation-support span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #7ed6a6
}

.quotation-support a {
  color: #fff;
  text-decoration: none
}

.quote-form {
  padding: clamp(26px, 4vw, 46px);
  border-radius: 30px;
  background: #fff;
  color: #0b2942;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .2)
}

.quote-form-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 28px
}

.quote-form-heading span {
  font-size: 22px;
  font-weight: 800
}

.quote-form-heading strong {
  font-size: 11px;
  color: #718691;
  font-weight: 600
}

.quote-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.quote-form label>span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #627783;
  margin-bottom: 7px
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #d4e0e4;
  border-radius: 11px;
  background: #f8fafb;
  color: #0b2942;
  font: 14px Manrope, Arial, sans-serif;
  outline: none
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: #20aa61;
  box-shadow: 0 0 0 3px rgba(32, 170, 97, .1)
}

.quote-form .quote-message {
  grid-column: 1/-1
}

.quote-form textarea {
  resize: vertical
}

.quote-form-submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 22px
}

.quote-form-submit p {
  max-width: 380px;
  color: #788b96;
  font-size: 12px;
  line-height: 1.5
}

.quote-form-submit button {
  border: 0;
  border-radius: 999px;
  background: #20aa61;
  color: #fff;
  padding: 15px 21px;
  font: 700 13px Manrope, Arial, sans-serif;
  white-space: nowrap;
  cursor: pointer
}

.quote-form .form-success {
  display: none;
  margin: 18px 0 0;
  padding: 14px;
  border-radius: 10px;
  background: #e8f8ef;
  color: #147440
}

.quote-form .form-success.show {
  display: block
}

.quote-bottom-contact {
  padding: clamp(55px, 7vw, 90px) max(24px, 7vw);
  background: #071f34;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 35px;
  align-items: center
}

.quote-bottom-contact h2 {
  font-size: clamp(34px, 4.5vw, 60px);
  line-height: 1.03;
  letter-spacing: -.04em;
  margin: 10px 0 0
}

.quote-bottom-contact>p {
  color: #bdced8;
  line-height: 1.7
}

.quote-bottom-contact>div:last-child {
  display: flex;
  gap: 9px;
  flex-wrap: wrap
}

.quote-bottom-contact a {
  padding: 13px 18px;
  border-radius: 999px;
  background: #20aa61;
  color: #fff;
  text-decoration: none;
  font-weight: 700
}

.quote-bottom-contact a.secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .3)
}

@media(max-width:980px) {
  .quote-hero {
    grid-template-columns: 1fr;
    min-height: auto
  }

  .quote-hero-aside {
    max-width: 600px
  }

  .quote-contact-cards {
    grid-template-columns: 1fr 1fr
  }

  .quotation-section {
    grid-template-columns: 1fr
  }

  .quotation-intro {
    position: static
  }

  .quote-bottom-contact {
    grid-template-columns: 1fr 1fr
  }

  .quote-bottom-contact>div:last-child {
    grid-column: 1/-1
  }
}

@media(max-width:640px) {
  .quote-hero {
    padding: 120px 20px 64px
  }

  .quote-hero h1 {
    font-size: 56px
  }

  .quote-section-heading {
    grid-template-columns: 1fr
  }

  .quote-contact-top,
  .quote-preparation,
  .quotation-section {
    padding-left: 18px;
    padding-right: 18px
  }

  .quote-contact-cards,
  .quote-preparation-grid,
  .quote-form-grid {
    grid-template-columns: 1fr
  }

  .quote-contact-cards>a,
  .quote-contact-cards>article {
    min-height: 180px
  }

  .quote-form {
    border-radius: 22px;
    padding: 22px 17px
  }

  .quote-form-heading,
  .quote-form-submit {
    align-items: flex-start;
    flex-direction: column
  }

  .quote-bottom-contact {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px
  }

  .quote-bottom-contact>div:last-child {
    grid-column: auto
  }
}

/* Expanded About page */
.about-who {
  padding: clamp(70px, 9vw, 125px) max(24px, 7vw);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .8fr);
  gap: clamp(38px, 7vw, 100px);
  align-items: center;
  background: #f4f7f8;
  color: #0b2942
}

.about-who-media {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(8, 39, 61, .15)
}

.about-who-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover
}

.about-who-media>span,
.founder-message figcaption,
.about-team figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(5, 27, 46, .82);
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  backdrop-filter: blur(8px)
}

.about-who-copy h2 {
  font-size: clamp(42px, 5.7vw, 76px);
  line-height: 1;
  letter-spacing: -.05em;
  margin: 12px 0 25px
}

.about-who-copy>p {
  font-size: 16px;
  line-height: 1.8;
  color: #586d7a
}

.about-who-points {
  margin-top: 28px;
  display: grid;
  gap: 0
}

.about-who-points article {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid #d7e2e6
}

.about-who-points strong {
  color: #0b2942
}

.about-who-points span {
  color: #667b87;
  line-height: 1.55
}

.about-purpose {
  padding: clamp(70px, 9vw, 120px) max(24px, 7vw);
  background: #09283f;
  color: #fff
}

.about-purpose .page-section-head {
  max-width: 1180px;
  margin: 0 auto 42px
}

.about-purpose .page-section-head h2 {
  max-width: 900px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -.05em
}

.about-purpose .micro-label {
  color: #7ed6a6
}

.about-purpose-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px
}

.about-purpose-grid article {
  min-height: 270px;
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 22px;
  background: rgba(255, 255, 255, .035)
}

.about-purpose-grid article>span {
  color: #78d5a2;
  font-size: 12px;
  font-weight: 800
}

.about-purpose-grid h3 {
  font-size: 22px;
  margin: 55px 0 13px
}

.about-purpose-grid p {
  color: #bdd0da;
  line-height: 1.65
}

.founder-message {
  padding: clamp(70px, 9vw, 125px) max(24px, 7vw);
  display: grid;
  grid-template-columns: minmax(300px, .65fr) minmax(0, 1.1fr);
  gap: clamp(40px, 8vw, 115px);
  align-items: center;
  background: #fff;
  color: #0b2942
}

.founder-message figure {
  position: relative;
  margin: 0;
  border-radius: 30px;
  overflow: hidden
}

.founder-message figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover
}

.founder-message blockquote {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.2;
  letter-spacing: -.035em;
  margin: 18px 0 28px
}

.founder-message-copy>p {
  color: #5d727e;
  line-height: 1.8
}

.founder-signoff {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #dce5e8;
  display: grid
}

.founder-signoff strong {
  font-size: 17px
}

.founder-signoff span {
  font-size: 12px;
  color: #70848f;
  margin-top: 4px
}

.about-journey {
  padding: clamp(70px, 9vw, 120px) max(24px, 7vw);
  background: #eef4f5;
  color: #0b2942;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(38px, 8vw, 120px)
}

.about-journey>div:first-child {
  position: sticky;
  top: 120px;
  align-self: start
}

.about-journey h2 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -.045em;
  margin: 12px 0
}

.journey-list article {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-top: 1px solid #cfdbdf
}

.journey-list article>span {
  color: #20aa61;
  font-size: 12px;
  font-weight: 800
}

.journey-list h3 {
  font-size: 24px;
  margin: 0 0 10px
}

.journey-list p {
  color: #607581;
  line-height: 1.7;
  margin: 0
}

.about-team {
  padding: clamp(70px, 9vw, 125px) max(24px, 7vw);
  background: #fff;
  color: #0b2942
}

.about-team-heading {
  max-width: 1180px;
  margin: 0 auto 38px;
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 45px;
  align-items: end
}

.about-team-heading h2 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -.05em;
  margin: 12px 0 0
}

.about-team-heading>p {
  color: #5e7380;
  line-height: 1.75
}

.about-team figure {
  position: relative;
  max-width: 1180px;
  margin: 0 auto 14px;
  border-radius: 30px;
  overflow: hidden
}

.about-team figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16/8.5;
  object-fit: cover
}

.team-role-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px
}

.team-role-grid article {
  padding: 24px;
  border-radius: 19px;
  background: #f1f5f6
}

.team-role-grid article>span {
  font-size: 11px;
  color: #20aa61;
  font-weight: 800
}

.team-role-grid h3 {
  font-size: 19px;
  margin: 28px 0 10px
}

.team-role-grid p {
  font-size: 13px;
  line-height: 1.6;
  color: #607581;
  margin: 0
}

@media(max-width:980px) {

  .about-who,
  .founder-message,
  .about-journey {
    grid-template-columns: 1fr
  }

  .about-purpose-grid,
  .team-role-grid {
    grid-template-columns: 1fr 1fr
  }

  .about-journey>div:first-child {
    position: static
  }

  .about-team-heading {
    grid-template-columns: 1fr
  }
}

@media(max-width:600px) {

  .about-who,
  .founder-message,
  .about-purpose,
  .about-journey,
  .about-team {
    padding-left: 18px;
    padding-right: 18px
  }

  .about-who-media,
  .founder-message figure,
  .about-team figure {
    border-radius: 20px
  }

  .about-who-points article {
    grid-template-columns: 1fr;
    gap: 7px
  }

  .about-purpose-grid,
  .team-role-grid {
    grid-template-columns: 1fr
  }

  .about-purpose-grid article {
    min-height: 220px
  }

  .about-team figure img {
    aspect-ratio: 4/3;
    object-position: center
  }

  .founder-message blockquote {
    font-size: 31px
  }
}

/* Homepage Who We Are photography */
.about-visual-photo {
  position: relative;
  display: block !important;
  min-height: 540px;
  border-radius: 30px;
  overflow: hidden;
  background: #0b2942
}

.about-home-image {
  position: absolute;
  inset: 0;
  margin: 0
}

.about-home-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 24, 40, .08), rgba(4, 24, 40, 0) 45%, rgba(4, 24, 40, .28))
}

.about-home-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.about-home-image figcaption {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 1;
  max-width: 390px;
  padding: 20px 23px;
  border-radius: 17px;
  background: rgba(5, 27, 45, .84);
  color: #fff;
  backdrop-filter: blur(10px)
}

.about-home-image figcaption span {
  display: block;
  color: #7ed6a6;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .11em;
  margin-bottom: 7px
}

.about-home-image figcaption strong {
  font-size: 19px;
  line-height: 1.35
}

.about-visual-photo .metric-card {
  position: absolute;
  right: 28px;
  top: 28px;
  z-index: 2;
  max-width: 285px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .23)
}

@media(max-width:720px) {
  .about-visual-photo {
    min-height: 520px;
    border-radius: 20px
  }

  .about-home-image img {
    object-position: 62% center
  }

  .about-home-image figcaption {
    left: 15px;
    right: 15px;
    bottom: 15px;
    max-width: none
  }

  .about-visual-photo .metric-card {
    top: 15px;
    right: 15px;
    left: 15px;
    max-width: none
  }

  .about-home-image figcaption strong {
    font-size: 16px
  }
}

/* Homepage Who We Are alignment fix */
.intro-layout {
  align-items: start
}

/* Reference-inspired division hero */
.hero-division-showcase {
  min-height: clamp(760px, 100vh, 980px);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 120px 20px 58px;
  box-sizing: border-box
}

.hero-user-media {
  background-image: url('assets/homepage-industrial-hero-user-v2.png') !important;
  background-position: center 58% !important;
  background-size: cover !important;
  transform: scale(1.02)
}

.hero-user-overlay {
  background: linear-gradient(110deg, rgba(3, 20, 34, .72), rgba(5, 30, 47, .36) 48%, rgba(3, 18, 30, .64)), linear-gradient(180deg, rgba(5, 23, 37, .25), rgba(5, 23, 37, .7)) !important
}

.hero-division-showcase:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .12), transparent 48%);
  pointer-events: none
}

.hero-showcase-content {
  position: relative;
  z-index: 4;
  width: min(760px, calc(100vw - 36px));
  padding: clamp(30px, 4vw, 50px);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(245, 248, 249, .84));
  box-shadow: 0 35px 90px rgba(0, 0, 0, .34);
  backdrop-filter: blur(16px);
  text-align: center;
  color: #0b2942
}

.hero-brand-lockup strong {
  display: block;
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: clamp(66px, 9vw, 116px);
  line-height: .86;
  letter-spacing: .13em;
  padding-left: .13em;
  color: #092b49;
  text-shadow: 0 2px 0 rgba(255, 255, 255, .8)
}

.hero-brand-lockup>span {
  margin: 24px 0 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  font-size: clamp(13px, 1.8vw, 20px);
  font-weight: 600;
  letter-spacing: .28em;
  color: #435460
}

.hero-brand-lockup>span i {
  display: block;
  width: 80px;
  height: 2px;
  background: #20aa61
}

.hero-brand-lockup small {
  font-size: 12px;
  letter-spacing: .12em;
  color: #60737e
}

.hero-showcase-intro {
  max-width: 590px;
  margin: 23px auto 25px;
  color: #4d626f;
  line-height: 1.65;
  font-size: 15px
}

.hero-division-links {
  display: grid;
  gap: 13px;
  max-width: 610px;
  margin: 0 auto
}

.hero-division {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 13px;
  min-height: 72px;
  padding: 9px 25px 9px 17px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  text-align: left;
  box-shadow: 0 14px 27px rgba(5, 29, 46, .25);
  transition: transform .25s, box-shadow .25s
}

.hero-division:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 20px 36px rgba(5, 29, 46, .3)
}

.hero-division.export {
  background: linear-gradient(100deg, #0b3455, #14547c)
}

.hero-division.import {
  background: linear-gradient(100deg, #20aa61, #13884b)
}

.hero-division.rental {
  background: linear-gradient(100deg, #3e474e, #182d3e)
}

.division-symbol {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  font-size: 17px
}

.hero-division b {
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: .09em
}

.hero-division small {
  font-size: 11px;
  color: rgba(255, 255, 255, .76);
  white-space: nowrap
}

.hero-showcase-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 25px
}

.hero-showcase-actions a {
  color: #0b2942;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  border-bottom: 1px solid #a8b7bf;
  padding-bottom: 5px
}

.hero-showcase-actions a:last-child {
  color: #158c4e
}

.hero-division-showcase .scroll-cue {
  z-index: 5;
  color: #fff
}

@media(max-width:700px) {
  .hero-division-showcase {
    min-height: 780px;
    padding: 105px 14px 45px
  }

  .hero-showcase-content {
    border-radius: 25px;
    padding: 30px 17px
  }

  .hero-brand-lockup strong {
    font-size: 56px
  }

  .hero-brand-lockup>span {
    font-size: 11px;
    letter-spacing: .17em;
    gap: 9px
  }

  .hero-brand-lockup>span i {
    width: 35px
  }

  .hero-showcase-intro {
    font-size: 13px
  }

  .hero-division {
    grid-template-columns: 36px 1fr;
    padding: 8px 16px 8px 11px;
    min-height: 66px
  }

  .hero-division b {
    font-size: 14px
  }

  .hero-division small {
    grid-column: 2;
    white-space: normal;
    margin-top: -8px
  }

  .division-symbol {
    grid-row: 1/3;
    width: 36px;
    height: 36px
  }

  .hero-showcase-actions {
    gap: 14px;
    flex-wrap: wrap
  }

  .hero-user-media {
    background-position: 56% center !important
  }

  .hero-division-showcase .scroll-cue {
    display: none
  }
}

/* Transparent hero content panel */
.hero-showcase-content {
  background: linear-gradient(145deg, rgba(4, 25, 41, .58), rgba(5, 34, 53, .36));
  border-color: rgba(255, 255, 255, .34);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .22)
}

.hero-brand-lockup strong {
  color: #fff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .38)
}

.hero-brand-lockup>span {
  color: #fff
}

.hero-brand-lockup small {
  color: rgba(255, 255, 255, .78)
}

.hero-showcase-intro {
  color: rgba(255, 255, 255, .9)
}

.hero-showcase-actions a {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, .55)
}

.hero-showcase-actions a:last-child {
  color: #8be2b1
}

/* No hero glass panel */
.hero-showcase-content {
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0
}


/* Reference mobile hero spacing */
@media(max-width:700px) {
  .hero-division-showcase {
    min-height: 100svh;
    padding: 82px 18px 38px;
    align-items: center
  }

  .hero-showcase-content {
    width: min(100%, 430px);
    padding: 0
  }

  .hero-brand-lockup strong {
    font-size: clamp(48px, 17vw, 66px);
    line-height: .9
  }

  .hero-brand-lockup>span {
    margin: 18px 0 8px;
    font-size: 9px;
    letter-spacing: .13em;
    gap: 9px
  }

  .hero-brand-lockup>span i {
    width: 36px
  }

  .hero-brand-lockup small {
    font-size: 9px;
    letter-spacing: .08em
  }

  .hero-showcase-intro {
    display: none
  }

  .hero-division-links {
    width: 100%;
    max-width: 360px;
    margin: 25px auto 0;
    gap: 11px
  }

  .hero-division {
    display: grid;
    grid-template-columns: 32px 1fr;
    min-height: 52px;
    padding: 7px 18px 7px 10px;
    border-radius: 999px;
    gap: 8px;
    text-align: center
  }

  .hero-division .division-symbol {
    grid-row: 1;
    width: 32px;
    height: 32px
  }

  .hero-division b {
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: .04em
  }

  .hero-division small {
    display: none
  }

  .hero-showcase-actions {
    display: none
  }
}

/* Division pictogram icons */
.division-symbol svg {
  width: 21px;
  height: 21px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

.hero-division.rental .division-symbol svg {
  width: 23px;
  height: 20px
}

/* Hero bottom action buttons */
.hero-bottom-actions {
  display: flex;
  justify-content: center;
  gap: 11px;
  margin-top: 24px
}

.hero-bottom-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 185px;
  padding: 13px 18px !important;
  border: 1px solid rgba(255, 255, 255, .7) !important;
  border-radius: 999px;
  background: rgba(4, 26, 43, .74);
  color: #fff !important;
  text-decoration: none !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
  transition: .2s
}

.hero-bottom-actions a:hover {
  transform: translateY(-3px);
  background: #0b2942
}

.hero-bottom-actions .hero-inquiry-button {
  background: #20aa61;
  border-color: #20aa61 !important
}

@media(max-width:700px) {
  .hero-showcase-actions.hero-bottom-actions {
    display: flex;
    margin-top: 18px;
    gap: 8px
  }

  .hero-bottom-actions a {
    min-width: 0;
    flex: 1;
    padding: 11px 9px !important;
    font-size: 10px !important;
    gap: 7px
  }
}

/* PHP lead and simple chat states */
[hidden] {
  display: none !important
}

.form-error {
  margin: 12px 0 0;
  color: #d94b4b;
  font-size: 13px
}

.inquiry-form button.is-loading {
  opacity: .7;
  cursor: wait
}

.chat-start-form {
  display: grid;
  gap: 11px
}

.chat-start-form>p {
  margin: 0 0 4px;
  color: #617480;
  font-size: 13px
}

.chat-start-form label>span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #6e828e;
  margin-bottom: 5px
}

.chat-start-form input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d8e2e6;
  border-radius: 10px;
  padding: 10px 11px;
  font: 13px Manrope, Arial, sans-serif
}

.chat-conversation {
  background: #fff
}

.chat-typing {
  padding: 7px 18px;
  color: #6c818d;
  font-size: 11px;
  font-style: italic
}

.chat-unread {
  position: absolute;
  right: -4px;
  top: -6px;
  min-width: 19px;
  height: 19px;
  padding: 0 4px;
  border-radius: 999px;
  background: #e94444;
  color: #fff;
  font: 800 10px/19px Manrope;
  text-align: center;
  border: 2px solid #fff
}

.support-toggle {
  position: relative
}

/* Product listings for export companies */
.catalogue-listing {
  padding: clamp(64px, 8vw, 112px) max(24px, 6vw);
  background: #fff;
  color: #0b2942
}

.catalogue-listing-head {
  max-width: 1180px;
  margin: 0 auto 38px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr);
  gap: 36px;
  align-items: end
}

.catalogue-listing-head h2 {
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.03;
  letter-spacing: -.045em;
  margin: 10px 0 0
}

.catalogue-listing-head>p {
  font-size: 17px;
  line-height: 1.75;
  color: #5d707e;
  margin: 0
}

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

.catalogue-category-grid article {
  padding: 30px;
  border: 1px solid #dce5e9;
  border-radius: 22px;
  background: #f7f9fa
}

.catalogue-category-grid article>span {
  color: #13a85d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em
}

.catalogue-category-grid h3 {
  font-size: 24px;
  margin: 28px 0 12px
}

.catalogue-category-grid p {
  color: #627481;
  line-height: 1.7;
  margin: 0
}

.brand-listing {
  max-width: 1180px;
  margin: 24px auto 0;
  padding: 30px;
  border-radius: 22px;
  background: #0b2942;
  color: #fff
}

.brand-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px
}

.brand-chip-grid span {
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .04em;
  background: rgba(255, 255, 255, .06)
}

.catalogue-feature-image {
  max-width: 1180px;
  margin: 0 auto 24px;
  border-radius: 28px;
  overflow: hidden;
  background: #eef2f5;
  box-shadow: 0 24px 65px rgba(8, 39, 61, .12)
}

.catalogue-feature-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover
}

.catalogue-feature-image figcaption {
  padding: 13px 18px;
  background: #0b2942;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em
}

.motor-listing {
  max-width: 1180px;
  margin: 24px auto 0;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 28px;
  background: #0b2942;
  color: #fff
}

.motor-listing-intro {
  max-width: 760px;
  margin-bottom: 28px
}

.motor-listing-intro h3 {
  font-size: clamp(28px, 4vw, 44px);
  margin: 10px 0 12px
}

.motor-listing-intro p {
  color: #b8c7d1;
  line-height: 1.7
}

.motor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px
}

.motor-grid article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background: rgba(255, 255, 255, .05)
}

.motor-grid h4 {
  font-size: 19px;
  margin: 0 0 14px;
  color: #80d6a8
}

.motor-grid ul {
  margin: 0;
  padding-left: 20px;
  color: #d8e1e6;
  line-height: 1.8
}

@media(max-width:800px) {
  .catalogue-listing-head {
    grid-template-columns: 1fr
  }

  .catalogue-category-grid {
    grid-template-columns: 1fr
  }

  .motor-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:580px) {
  .catalogue-listing {
    padding-left: 18px;
    padding-right: 18px
  }

  .catalogue-category-grid article,
  .brand-listing,
  .motor-listing {
    padding: 22px
  }

  .catalogue-feature-image {
    border-radius: 20px
  }
}

.bearing-brand-catalogue {
  margin-top: clamp(50px, 7vw, 88px)
}

.bearing-brand-catalogue .page-section-head {
  margin-bottom: 30px
}

/* Stable floating support icons: prevents unsupported emoji from showing as ?? */
.support-toggle .support-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: inline-block;
  position: relative;
  font-size: 0 !important;
  line-height: 0 !important;
  color: currentColor;
}

.support-toggle .support-icon::before,
.support-toggle .support-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.support-toggle:not(.live) .support-icon::before {
  left: 1px;
  top: 3px;
  width: 16px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.support-toggle:not(.live) .support-icon::after {
  left: 4px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.support-toggle.live .support-icon::before {
  left: 1px;
  top: 2px;
  width: 16px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 9px;
}

.support-toggle.live .support-icon::after {
  left: 5px;
  top: 12px;
  width: 7px;
  height: 7px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: skew(-22deg);
}

.samrat-chat-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: block;
}

/* Shared sticky contact popup */
.samrat-contact-widget {
  position: fixed;
  right: 20px;
  bottom: 84px;
  z-index: 1000;
  font-family: Manrope, Arial, sans-serif;
}

.samrat-contact-button {
  height: 48px;
  min-width: 132px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 17px;
  background: #0b2942;
  color: #fff;
  font: 800 12px/1 Manrope, Arial, sans-serif;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(4, 26, 44, .25);
}

.samrat-contact-button svg,
.samrat-contact-panel svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: block;
}

.samrat-contact-panel {
  position: absolute;
  right: 0;
  bottom: 58px;
  width: min(340px, calc(100vw - 32px));
  padding: 22px;
  background: #fff;
  color: #0b2942;
  border: 1px solid #dbe5e9;
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(4, 28, 47, .24);
}

/* NEW GLOBAL MAP CSS */
.global-presence-section {
  background-color: #f9fafc;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

.global-presence-header h2 {
  font-size: 38px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.global-presence-header h2 span {
  color: #00b4d8;
}

.global-presence-header p {
  color: #a0b2c1;
  font-size: 16px;
  margin-bottom: 50px;
}

.global-presence-map {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.global-presence-map .map-bg {
  width: 100%;
  height: auto;
  opacity: 0.8;
  filter: brightness(0.8) contrast(1.2) hue-rotate(10deg);
}

.map-pin-new {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, -100%);
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
}

.map-pin-new:hover {
  z-index: 20;
  transform: translate(-50%, -105%);
}

.map-pin-new .pin-marker {
  width: 24px;
  height: 24px;
  background-color: #e53935;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  position: relative;
  margin-bottom: 10px;
}

.map-pin-new .pin-marker::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px 6px 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

.map-pin-new .pin-label {
  background-color: #1a365d;
  border: 1px solid #2b5278;
  border-radius: 8px;
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 120px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

.map-pin-new .pin-label::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 20px;
  background-color: #2b5278;
}

.map-pin-new .pin-label strong {
  color: #fff;
  font-size: 15px;
  margin-bottom: 2px;
}

.map-pin-new .pin-label span {
  color: #a0b2c1;
  font-size: 11px;
}

.map-pin-new.usa {
  top: 48%;
  left: 16%;
}

.map-pin-new.uk {
  top: 32%;
  left: 45%;
}

.map-pin-new.kuwait {
  top: 44%;
  left: 58%;
}

.map-pin-new.qatar {
  top: 48%;
  left: 63%;
}

.map-pin-new.bahrain {
  top: 52%;
  left: 58%;
}

.map-pin-new.uae {
  top: 54%;
  left: 67%;
}

.map-pin-new.saudi {
  top: 62%;
  left: 59%;
}

.map-pin-new.oman {
  top: 66%;
  left: 66%;
}

.map-pin-new.india {
  top: 40%;
  left: 72%;
}

@media (max-width: 768px) {
  .global-presence-header h2 {
    font-size: 28px;
  }

  .map-pin-new .pin-label {
    display: none;
  }

  .map-pin-new:hover .pin-label {
    display: flex;
    position: absolute;
    top: 30px;
  }

  .map-pin-new .pin-marker {
    width: 16px;
    height: 16px;
    border-width: 2px;
  }
}

.top-service-bar {
  background: #071626;
  color: #a9bfce;
  padding: 6px 5vw;
  font-size: 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-service-content {
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  align-items: center;
}

.top-service-content strong {
  color: #20aa61;
  font-weight: 700;
}

.top-service-content a {
  color: #a9bfce;
  text-decoration: none;
  transition: color 0.2s;
}

.top-service-content a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .top-service-content {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
}