:root{
  --yellow:#f0cf7a;
  --yellow-dark:#e6bd52;
  --dark:#1a1a1a;
  --header-h:88px;
  --header-h-mobile:64px;
}
*{box-sizing:border-box;margin:0;padding:0;}
body{
  font-family:'Segoe UI',Arial,Helvetica,sans-serif;
  color:var(--dark);
  min-height:300vh; /* so scrolling can be demonstrated */
}

/* ============ HEADER ============ */
header{
  position:fixed;
  top:0;left:0;right:0;
  height:var(--header-h);
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 32px;
  background:transparent;
  transition:background .3s ease, box-shadow .3s ease;
}
header.scrolled,
header.header-white{
  background:#ffffff;
  box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.burger{
  background:none;border:none;cursor:pointer;
  display:flex;flex-direction:column;gap:4px;
  padding:11px;
  flex-shrink:0;
}
.burger span{
  width:36px;height:3px;background:var(--dark);display:block;
}

.logo{
  position:absolute;
  left:50%;
  top:0;
  transform:translateX(-50%);
  display:flex;
  align-items:center;
  justify-content:center;
  height:var(--header-h);
  pointer-events:auto;
}
.logo img{
  max-height:35px;
  width:auto;
  object-fit:contain;
}

.header-right{
  display:flex;
  align-items:center;
  gap:28px;
  flex-shrink:0;
}
.icon-link{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:4px;
  font-size:12px;
  color:var(--dark);
  text-decoration:none;
  cursor:pointer;
  background:none;border:none;
  font-family:inherit;
}
.icon-link svg{width:20px;height:20px;stroke:var(--dark);}

.mymsc-btn{
  width:46px;height:46px;
  border-radius:16px;
  background:var(--yellow);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
  border:none;
  cursor:pointer;
  flex-shrink:0;
}
.mymsc-btn svg{width:20px;height:20px;}
.mymsc-btn span{display:none;}

/* ============ HERO ============ */
.hero{
  position:relative;
  height:100vh;
  min-height:640px;
  background:
    linear-gradient(180deg, rgba(10,40,70,.15) 0%, rgba(10,40,70,.35) 100%),
    url('slider.jpg') center 88% / cover no-repeat;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:0 20px;
  border-bottom:8px solid var(--yellow);
}
.hero h1{
  color:var(--dark);
  font-weight:400;
  font-size:34px;
  text-shadow:0 2px 6px rgba(0,0,0,.25);
}
.hero h1 b{
  display:block;
  font-weight:800;
  font-size:44px;
  letter-spacing:.5px;
}

/* ============ SEARCH CARD ============ */
.search-card{
  margin-top:36px;
  background:#fff;
  border-radius:6px;
  width:100%;
  max-width:800px;
  box-shadow:0 20px 45px rgba(0,0,0,.2);
  padding:26px 34px 30px;
  text-align:left;
  /* slightly offset to the right, as in the reference screenshots */
  transform:translateX(60px);
}
.tabs{
  display:flex;
  gap:48px;
  border-bottom:1px solid #eee;
  padding-bottom:14px;
  justify-content:center;
}
.tab{
  background:none;border:none;cursor:pointer;
  font-size:15px;font-weight:700;letter-spacing:.5px;
  color:#888;
  padding-bottom:14px;
  position:relative;
  top:1px;
}
.tab.active{
  color:var(--dark);
  border-bottom:3px solid var(--yellow);
}

.radio-group{
  display:flex;
  flex-direction:column;
  gap:16px;
  margin:22px 0 20px;
}
.radio-option{
  display:flex;
  align-items:center;
  gap:12px;
  cursor:pointer;
  font-size:16px;
}
.radio-option input{
  appearance:none;
  width:20px;height:20px;
  border:2px solid #ccc;
  border-radius:50%;
  display:grid;place-items:center;
  cursor:pointer;
  margin:0;
  flex-shrink:0;
}
.radio-option input:checked{
  border-color:var(--yellow-dark);
}
.radio-option input:checked::after{
  content:"";
  width:10px;height:10px;
  border-radius:50%;
  background:var(--yellow-dark);
}

.search-box{
  display:flex;
  align-items:center;
  gap:10px;
  background:#f2f2f2;
  border:2px solid transparent;
  border-radius:6px;
  padding:14px 18px;
  transition:border-color .2s, background .2s;
}
.search-box.focused{
  background:#fff;
  border-color:var(--yellow-dark);
}
.search-box svg{
  width:20px;height:20px;stroke:#888;flex-shrink:0;
}
.search-box input{
  flex:1;
  min-width:0;
  border:none;
  outline:none;
  background:transparent;
  font-size:16px;
  color:var(--dark);
}
.search-box input::placeholder{color:#999;}
.clear-btn{
  background:none;border:none;cursor:pointer;
  display:none;
  padding:4px;
  flex-shrink:0;
}
.search-box.has-text .clear-btn{display:flex;}
.clear-btn svg{width:16px;height:16px;stroke:#666;}
.divider{
  width:1px;height:22px;background:#ddd;
  display:none;
  flex-shrink:0;
}
.search-box.has-text .divider{display:block;}
.submit-btn{
  background:none;border:none;cursor:pointer;
  display:flex;
  flex-shrink:0;
}
.submit-btn svg{width:20px;height:20px;stroke:#333;}

/* ============ LEFT SLIDE MENU ============ */
.overlay{
  position:fixed;inset:0;
  background:rgba(0,0,0,.35);
  z-index:1500;
  opacity:0;
  pointer-events:none;
  transition:opacity .3s ease;
}
.overlay.open{opacity:1;pointer-events:auto;}

.side-menu{
  position:fixed;
  top:0;left:0;bottom:0;
  width:320px;
  max-width:85vw;
  background:#fff;
  z-index:1600;
  transform:translateX(-100%);
  transition:transform .3s ease;
  padding:28px 30px;
  overflow-y:auto;
}
.side-menu.open{transform:translateX(0);}

.close-btn{
  background:none;border:none;cursor:pointer;
  margin-bottom:24px;
}
.close-btn svg{width:24px;height:24px;stroke:var(--dark);}

.menu-list{list-style:none;}
.menu-list li{margin-bottom:20px;}
.menu-list a{
  text-decoration:none;
  color:var(--dark);
  font-size:19px;
  font-weight:600;
}
.menu-divider{
  border:none;
  border-top:1px solid #eee;
  margin:16px 0 20px;
}
.menu-sub{list-style:none;}
.menu-sub li{
  display:flex;align-items:center;gap:12px;
  margin-bottom:18px;
  font-size:16px;
}
.menu-sub .icon-circle{
  width:26px;height:26px;
  border-radius:50%;
  background:var(--yellow);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.menu-sub .icon-circle svg{width:14px;height:14px;stroke:var(--dark);}
.menu-footer{list-style:none;}
.menu-footer li{
  margin-bottom:16px;
  font-size:16px;
  color:#333;
}

/* ============ CONTENT BELOW HERO ============ */
.solutions{
  padding:90px 20px 60px;
  text-align:center;
  max-width:760px;
  margin:0 auto;
}
.solutions h2{
  font-size:34px;
  font-weight:800;
  margin-bottom:18px;
}
.rule{
  width:60px;height:3px;background:var(--yellow);
  margin:0 auto 26px;
}
.solutions p{
  color:#444;
  line-height:1.7;
  font-size:16px;
}

/* ============ INTERACTIVE 4-COLUMN SOLUTIONS BLOCK ============ */
.sol-block{
  position:relative;
  min-height:640px;
  overflow:hidden;
}
.sol-bg-layer{
  position:absolute;inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity .6s ease;
  z-index:1;
}
.sol-bg-layer.active{
  opacity:1;
  z-index:2;
}
.sol-overlay{
  position:absolute;inset:0;
  background:none;
  z-index:3;
}
.sol-columns{
  position:relative;
  z-index:4;
  display:flex;
  gap:2px;
  min-height:640px;
}
.sol-col{
  flex:1;
  position:relative;
  display:flex;
  justify-content:center;
  cursor:pointer;
}
.sol-col::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.2);
  transition:background .3s ease;
  pointer-events:none;
  z-index:0;
}
.sol-col:hover::before,
.sol-col.active::before{
  background:rgba(0,0,0,.3);
}
.sol-col-inner{
  position:relative;
  z-index:1;
}
.sol-col-inner{
  padding-top:130px;
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding-left:16px;
  padding-right:16px;
}
.sol-icon{
  width:44px;height:44px;
  margin-bottom:16px;
}
.sol-icon svg{width:100%;height:100%;}
.sol-col-inner h3{
  color:#fff;
  font-size:21px;
  font-weight:700;
  line-height:1.35;
  max-width:230px;
  text-shadow:0 1px 4px rgba(0,0,0,.3);
}
.sol-links{
  list-style:none;
  margin-top:22px;
  display:flex;
  flex-direction:column;
  gap:14px;
  max-height:0;
  opacity:0;
  overflow:hidden;
  transition:max-height .4s ease, opacity .4s ease, margin-top .4s ease;
}
.sol-col.active .sol-links{
  max-height:260px;
  opacity:1;
}
.sol-links li{
  color:var(--yellow);
  font-weight:700;
  font-size:15px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
}
.sol-links li span{font-size:14px;}

.scroll-hint{
  text-align:center;
  color:#999;
  font-size:13px;
  padding:20px;
}

/* ============ SEE ALL SOLUTIONS BUTTON ============ */
.sol-cta{
  display:flex;
  justify-content:center;
  background:#fff;
  padding:44px 20px;
}
.see-all-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#fff;
  color:var(--dark);
  border:1.5px solid var(--dark);
  border-radius:30px;
  padding:15px 30px;
  font-size:15px;
  font-weight:700;
  font-family:inherit;
  letter-spacing:.2px;
  cursor:pointer;
  transition:background .25s ease, color .25s ease;
}
.see-all-arrow{
  font-size:16px;
  line-height:1;
  transition:color .25s ease;
}
.see-all-btn:hover{
  background:var(--dark);
  color:#fff;
}

/* ============ PROMO SLIDER ============ */
.promo-slider{
  position:relative;
  overflow:hidden;
  background:#fff;
}
.promo-track{
  display:flex;
  width:200%;
  transition:transform .5s ease;
}
.promo-slide{
  width:50%;
  display:flex;
  min-height:520px;
}
.promo-media{
  flex:1 1 50%;
  background-size:cover;
  background-position:center;
}
.promo-text{
  flex:1 1 50%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:60px 70px;
}
.promo-eyebrow{
  color:var(--yellow-dark);
  font-weight:700;
  font-size:13px;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:14px;
}
.promo-text h3{
  font-size:32px;
  font-weight:800;
  line-height:1.25;
  margin-bottom:18px;
}
.promo-text p{
  color:#444;
  font-size:16px;
  line-height:1.7;
  margin-bottom:26px;
  max-width:440px;
}
.promo-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:var(--dark);
  font-weight:700;
  font-size:15px;
  text-decoration:none;
  width:fit-content;
}
.promo-link span{
  color:var(--yellow-dark);
  font-size:18px;
}

.promo-controls{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  padding:26px 20px 34px;
}
.promo-arrow{
  width:42px;height:42px;
  border-radius:50%;
  background:var(--dark);
  border:none;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  flex-shrink:0;
  transition:background .2s ease;
}
.promo-arrow:hover{
  background:var(--yellow-dark);
}
.promo-arrow svg{width:20px;height:20px;}

.promo-dots{
  display:flex;
  align-items:center;
  gap:10px;
}
.promo-dot{
  width:10px;height:10px;
  border-radius:50%;
  background:#ddd;
  border:none;
  padding:0;
  cursor:pointer;
  transition:background .2s ease, transform .2s ease;
}
.promo-dot.active{
  background:var(--yellow-dark);
  transform:scale(1.2);
}

/* ============ TEXT BLOCK ============ */
.shipping-text-block{
  max-width:900px;
  margin:0 auto;
  padding:90px 20px;
}
.shipping-text-block h2{
  text-align:center;
  font-size:38px;
  font-weight:800;
  margin-bottom:36px;
}
.shipping-text-block p{
  color:#333;
  font-size:17px;
  line-height:1.85;
  margin-bottom:26px;
}
.shipping-text-block p:last-child{margin-bottom:0;}

/* ============ INDUSTRIES CAROUSEL ============ */
.news-carousel{
  padding:80px 20px 60px;
  text-align:center;
  background:#fff;
}
.news-carousel h2{
  font-size:34px;
  font-weight:800;
  margin-bottom:18px;
}
.news-viewport{
  overflow:hidden;
  max-width:1180px;
  margin:0 auto;
}
.news-track{
  display:flex;
  gap:24px;
  transition:transform .5s ease;
}
.news-card{
  flex:0 0 calc((100% - 48px) / 3);
  background:#f2f2f2;
  text-align:left;
  overflow:hidden;
  border-radius:2px;
}
.news-media{
  height:230px;
  background-size:cover;
  background-position:center;
}
.news-body{
  padding:26px 24px 30px;
}
.news-body h3{
  font-size:21px;
  font-weight:800;
  margin-bottom:14px;
}
.news-body p{
  color:#444;
  font-size:15px;
  line-height:1.7;
  margin-bottom:22px;
  min-height:78px;
}
.news-readmore{
  display:inline-flex;
  align-items:center;
  gap:12px;
  color:var(--dark);
  font-weight:700;
  font-size:13px;
  letter-spacing:1px;
  text-decoration:none;
}
.news-readmore span{
  width:26px;height:26px;
  border-radius:50%;
  background:var(--yellow);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:15px;
  flex-shrink:0;
}

/* ============ STATS BAND ============ */
.stats-band{
  position:relative;
  background-image:
    linear-gradient(180deg, rgba(0,20,40,.15) 0%, rgba(0,10,25,.55) 100%),
    url('post.jpg');
  background-size:cover;
  background-position:center;
  padding:64px 20px 56px;
  color:#fff;
  text-align:center;
}
.stats-divider-top{
  width:70px;height:4px;
  background:var(--yellow);
  border-radius:4px;
  margin:0 auto 34px;
}
.stats-text p{
  max-width:760px;
  margin:0 auto 32px;
  font-size:18px;
  line-height:1.7;
}
.stats-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:18px 46px;
  border:1.5px solid #fff;
  border-radius:40px;
  background:transparent;
  color:#fff;
  font-size:15px;
  font-weight:600;
  font-family:inherit;
  cursor:pointer;
  margin-bottom:70px;
  transition:background .25s ease, color .25s ease;
}
.stats-cta:hover{
  background:#fff;
  color:var(--dark);
}

.stats-grid{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  max-width:1200px;
  margin:0 auto;
}
.stats-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:0 28px;
}
.stats-icon{
  width:52px;height:52px;
  margin-bottom:16px;
}
.stats-icon svg{width:100%;height:100%;}
.stats-number{
  font-size:44px;
  font-weight:800;
  line-height:1;
  margin-bottom:10px;
}
.stats-label{
  font-size:15px;
  color:#f0f0f0;
  white-space:nowrap;
}
.stats-dots{
  display:flex;
  align-items:center;
  gap:6px;
  margin:0 4px 58px;
}
.stats-dots i{
  width:6px;height:6px;
  border-radius:50%;
  background:var(--yellow);
  display:block;
}

/* ============ BACK TO TOP ============ */
.back-to-top{
  position:fixed;
  right:26px;
  bottom:26px;
  width:64px;height:64px;
  border-radius:50%;
  background:#fff;
  border:1px solid #e2e2e2;
  box-shadow:0 6px 18px rgba(0,0,0,.15);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:2px;
  cursor:pointer;
  opacity:0;
  visibility:hidden;
  transform:translateY(12px);
  transition:opacity .3s ease, transform .3s ease, visibility .3s;
  z-index:900;
}
.back-to-top.visible{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
.back-to-top svg{width:18px;height:18px;}
.back-to-top span{
  font-size:11px;
  font-weight:700;
  color:var(--dark);
}

/* ============ 3-COLUMN NEWS SLIDER ============ */
.promo3-slider{
  position:relative;
  max-width:1180px;
  margin:0 auto;
  padding:60px 60px 70px;
}
.promo3-viewport{
  overflow:hidden;
}
.promo3-track{
  display:flex;
  gap:24px;
  transition:transform .5s ease;
}
.promo3-card{
  position:relative;
  flex:0 0 calc((100% - 48px) / 3);
  min-height:500px;
  background-size:cover;
  background-position:center;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  color:#fff;
  overflow:hidden;
}
.promo3-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0) 42%, rgba(0,0,0,.8) 100%);
  pointer-events:none;
  z-index:1;
}
.promo3-tag{
  position:relative;
  z-index:2;
  align-self:flex-start;
  background:var(--yellow);
  color:var(--dark);
  font-weight:800;
  font-size:13px;
  letter-spacing:.3px;
  line-height:1.3;
  padding:14px 18px;
  max-width:80%;
}
.promo3-info{
  position:relative;
  z-index:2;
  padding:20px 22px 28px;
}
.promo3-date{
  display:block;
  font-size:13px;
  color:#eee;
  margin-bottom:12px;
}
.promo3-info h3{
  font-size:21px;
  font-weight:800;
  line-height:1.3;
  margin-bottom:20px;
}
.promo3-readmore{
  display:inline-flex;
  align-items:center;
  gap:12px;
  color:#fff;
  font-weight:700;
  font-size:13px;
  letter-spacing:1px;
  text-decoration:none;
}
.promo3-readmore span{
  width:26px;height:26px;
  border-radius:50%;
  background:var(--yellow);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--dark);
  font-size:15px;
  flex-shrink:0;
}

.promo3-arrow{
  position:absolute;
  top:50%;
  width:64px;height:64px;
  border-radius:50%;
  background:#fff;
  border:1px solid #ddd;
  box-shadow:0 4px 14px rgba(0,0,0,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:5;
}
.promo3-arrow.prev{ left:0; transform:translate(-50%,-50%); }
.promo3-arrow.next{ right:0; transform:translate(50%,-50%); }
.promo3-arrow svg{ width:20px;height:20px; }

/* ============ CUSTOMER ADVISORIES SLIDER ============ */
.advisories-slider{
  background:#f2f2f2;
  padding:70px 20px 80px;
}
.advisories-inner{
  position:relative;
  max-width:1180px;
  margin:0 auto;
}
.advisories-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:16px;
  margin-bottom:20px;
}
.advisories-header h2{
  font-size:26px;
  font-weight:800;
  letter-spacing:.5px;
}
.advisories-readmore{
  display:inline-flex;
  align-items:center;
  gap:12px;
  color:var(--dark);
  font-weight:700;
  font-size:13px;
  letter-spacing:1px;
  text-decoration:none;
}
.advisories-readmore span{
  width:26px;height:26px;
  border-radius:50%;
  background:var(--yellow);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:15px;
  flex-shrink:0;
}
.advisories-divider{
  border:none;
  border-top:1px solid #ddd;
  margin-bottom:40px;
}
.advisories-viewport{
  overflow:hidden;
}
.advisories-track{
  display:flex;
  gap:24px;
  transition:transform .5s ease;
}
.advisory-card{
  flex:0 0 calc((100% - 48px) / 3);
  background:#fff;
  padding:28px 26px 30px;
  display:flex;
  flex-direction:column;
  min-height:180px;
}
.advisory-date{
  font-size:13px;
  color:#999;
  margin-bottom:16px;
}
.advisory-card h3{
  font-size:19px;
  font-weight:800;
  line-height:1.35;
  margin-bottom:auto;
  padding-bottom:18px;
}
.advisory-tags{
  font-size:14px;
  color:#999;
}
.advisories-arrow{
  position:absolute;
  top:calc(50% + 10px);
  width:56px;height:56px;
  border-radius:50%;
  background:#f2f2f2;
  border:1px solid #ccc;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:5;
  transition:background .2s ease, border-color .2s ease;
}
.advisories-arrow:hover{
  background:#fff;
  border-color:#999;
}
.advisories-arrow.prev{ left:0; transform:translate(-50%,-50%); }
.advisories-arrow.next{ right:0; transform:translate(50%,-50%); }
.advisories-arrow svg{ width:18px;height:18px; }

/* ============ FOOTER ============ */
.site-footer{
  background:#fff;
  border-top:1px solid #eee;
}
.footer-top{
  max-width:1180px;
  margin:0 auto;
  padding:60px 20px 50px;
  display:grid;
  grid-template-columns:1.3fr 1fr 1.3fr;
  gap:40px;
}
.footer-col h4{
  font-size:14px;
  font-weight:800;
  letter-spacing:.4px;
  margin-bottom:22px;
}
.footer-select-row{
  display:flex;
  gap:10px;
  margin-bottom:26px;
  flex-wrap:wrap;
}
.footer-select{
  display:flex;
  align-items:center;
  gap:8px;
  border:1px solid #ddd;
  border-radius:4px;
  padding:12px 14px;
  font-size:14px;
  font-weight:600;
  color:var(--dark);
  background:#fafafa;
}
.footer-select-country{ flex:0 0 auto; }
.footer-select-office{ flex:1; min-width:170px; justify-content:space-between; }
.footer-select-clear{
  background:none;
  border:none;
  cursor:pointer;
  display:flex;
  padding:0;
}
.footer-select-clear svg{ width:12px;height:12px; }
.footer-select-chevron{ width:14px;height:14px; margin-left:auto; flex-shrink:0; }

.footer-contact{
  display:flex;
  flex-wrap:wrap;
  gap:10px 22px;
  margin-bottom:12px;
}
.footer-contact-item{
  display:inline-flex;
  align-items:center;
  gap:9px;
  color:var(--dark);
  text-decoration:none;
  font-size:14px;
}
.footer-contact-item svg{ width:16px;height:16px; flex-shrink:0; }
.footer-office-details{ margin-top:2px; }

.footer-links-inline{
  font-size:15px;
  line-height:2;
  color:var(--dark);
}
.footer-links-inline a{
  color:var(--dark);
  text-decoration:none;
  font-weight:500;
}
.footer-links-inline a:hover{ text-decoration:underline; }

.footer-social{
  display:flex;
  gap:12px;
  margin-top:22px;
}
.footer-social a{
  width:36px;height:36px;
  border-radius:50%;
  border:1px solid #ddd;
  display:flex;
  align-items:center;
  justify-content:center;
}
.footer-social svg{ width:16px;height:16px; }

.footer-hq{
  background:#f2f2f2;
  text-align:center;
  padding:18px 20px;
  font-size:14px;
  color:#333;
}

.footer-legal{
  background:var(--dark);
  text-align:center;
  padding:20px 20px;
  font-size:12px;
  color:#aaa;
  line-height:2;
}
.footer-legal a{
  color:#aaa;
  text-decoration:none;
}
.footer-legal a:hover{ color:#fff; }

/* ============ COOKIE BANNER ============ */
.cookie-banner{
  position:fixed;
  left:0;right:0;bottom:0;
  z-index:2000;
  background:var(--yellow);
  padding:22px 60px 22px 28px;
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:20px 40px;
  box-shadow:0 -4px 16px rgba(0,0,0,.12);
  transform:translateY(0);
  transition:transform .35s ease, opacity .35s ease;
}.cookie-banner.hidden{
  transform:translateY(100%);
  opacity:0;
  pointer-events:none;
}
.cookie-text{
  flex:1 1 420px;
  color:var(--dark);
  font-size:14px;
  line-height:1.6;
  max-width:720px;
}
.cookie-actions{
  display:flex;
  align-items:center;
  gap:26px;
  flex-wrap:wrap;
}
.cookie-link{
  color:var(--dark);
  font-size:14px;
  font-weight:700;
  text-decoration:underline;
  white-space:nowrap;
}
.cookie-accept{
  background:#4a4a4a;
  color:#fff;
  border:none;
  border-radius:26px;
  padding:15px 36px;
  font-size:14px;
  font-weight:600;
  font-family:inherit;
  cursor:pointer;
  white-space:nowrap;
  transition:background .2s ease;
}
.cookie-accept:hover{
  background:#333;
}
.cookie-close{
  position:absolute;
  top:16px;
  right:20px;
  background:none;
  border:none;
  cursor:pointer;
  padding:4px;
}
.cookie-close svg{
  width:18px;height:18px;
}

/* ============ MOBILE ADAPTIVE ============ */
@media (max-width:900px){
  .search-card{
    transform:none;
    margin-left:auto;
    margin-right:auto;
  }
}

@media (max-width:768px){
  :root{ --header-h:var(--header-h-mobile); }

  header{ padding:0 16px; }
  .burger span{ width:30px; }
  .logo img{ max-height:36px; }

  .header-right{ gap:18px; }
  .icon-link span{ display:none; }
  .icon-link svg{ width:23px;height:23px; }

  .mymsc-btn{
    width:42px;height:42px;
    border-radius:14px;
  }
  .mymsc-btn svg{ width:20px;height:20px; }

  .hero h1{ font-size:24px; }
  .hero h1 b{ font-size:30px; }

  .search-card{
    padding:20px 18px 24px;
    margin-top:24px;
  }
  .tabs{ gap:18px; }
  .tab{ font-size:12px; }

  .search-box{ padding:12px 14px; }

  .solutions{ padding:60px 20px 40px; }
  .solutions h2{ font-size:26px; }

  .sol-cta{ padding:32px 20px; }
  .see-all-btn{ padding:13px 24px; font-size:14px; }

  .promo-slide{ flex-direction:column; min-height:0; }
  .promo-media{ flex:none; height:220px; }
  .promo-text{ flex:none; padding:32px 24px; }
  .promo-text h3{ font-size:24px; }
  .promo-text p{ max-width:none; }
  .promo-controls{ gap:16px; padding:20px 16px 28px; }
  .promo-arrow{ width:36px; height:36px; }

  .shipping-text-block{ padding:56px 20px; }
  .shipping-text-block h2{ font-size:26px; margin-bottom:24px; }
  .shipping-text-block p{ font-size:15px; }

  .news-carousel{ padding:56px 16px 40px; }
  .news-carousel h2{ font-size:26px; }
  .news-card{ flex:0 0 calc(100% - 0px); }
  .news-body p{ min-height:0; }

  .stats-band{
    background-image:
      linear-gradient(180deg, rgba(0,20,40,.15) 0%, rgba(0,10,25,.55) 100%),
      url('post-mobile.jpg');
    padding:44px 18px 40px;
  }
  .stats-text p{ font-size:15px; margin-bottom:24px; }
  .stats-cta{ padding:14px 30px; font-size:14px; margin-bottom:44px; }
  .stats-grid{ flex-direction:column; gap:36px; }
  .stats-item{ padding:0; }
  .stats-number{ font-size:36px; }
  .stats-label{ white-space:normal; }
  .stats-dots{ display:none; }

  .back-to-top{
    width:52px;height:52px;
    right:16px;
    bottom:16px;
  }
  .back-to-top svg{ width:15px;height:15px; }
  .back-to-top span{ font-size:10px; }

  .promo3-slider{ padding:44px 34px 50px; }
  .promo3-card{ flex:0 0 100%; min-height:420px; }
  .promo3-info h3{ font-size:18px; }
  .promo3-arrow{ width:44px; height:44px; }
  .promo3-arrow.prev{ left:8px; transform:translateY(-50%); }
  .promo3-arrow.next{ right:8px; transform:translateY(-50%); }
  .promo3-arrow svg{ width:16px;height:16px; }

  .advisories-slider{ padding:44px 16px 56px; }
  .advisories-inner{ padding:0 30px; }
  .advisories-header h2{ font-size:21px; }
  .advisories-divider{ margin-bottom:30px; }
  .advisory-card{ flex:0 0 100%; min-height:0; }
  .advisories-arrow{ width:42px;height:42px; }
  .advisories-arrow.prev{ left:8px; transform:translateY(-50%); }
  .advisories-arrow.next{ right:8px; transform:translateY(-50%); }
  .advisories-arrow svg{ width:15px;height:15px; }

  .footer-top{
    grid-template-columns:1fr;
    gap:36px;
    padding:44px 20px 40px;
  }
  .footer-select-office{ min-width:0; }
  .footer-hq{ font-size:12px; padding:16px 16px; }
  .footer-hq br{ display:none; }
  .footer-legal{ font-size:11px; padding:18px 16px; }

  .cookie-banner{
    padding:20px 44px 20px 20px;
    gap:14px 0;
  }
  .cookie-text{ font-size:13px; flex-basis:100%; }
  .cookie-actions{
    width:100%;
    justify-content:space-between;
  }
  .cookie-accept{ padding:13px 26px; font-size:13px; }
  .cookie-close{ top:14px; right:14px; }
}

@media (max-width:900px) and (min-width:561px){
  .promo3-card{ flex:0 0 calc((100% - 24px) / 2); }
  .advisory-card{ flex:0 0 calc((100% - 24px) / 2); }
}

@media (max-width:900px) and (min-width:561px){
  .news-card{ flex:0 0 calc((100% - 24px) / 2); }
}

@media (max-width:420px){
  .tabs{ gap:10px; }
  .radio-option{ font-size:14px; }
}

@media (max-width:900px){
  .sol-columns{ flex-direction:column; min-height:auto; }
  .sol-block{ min-height:auto; }
  .sol-col{
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,.35);
  }
  .sol-col:last-child{ border-bottom:none; }
  .sol-col-inner{
    padding-top:36px;
    padding-bottom:36px;
  }
  .sol-col-inner h3{ font-size:19px; max-width:280px; }
}

/* ============ TRACKING / SEARCHING PAGE ============ */
body.no-hero-body{ min-height:auto; }

.tracking-page{
  max-width:1400px;
  margin:0 auto;
  padding:calc(var(--header-h) + 34px) 20px 60px;
  text-align:center;
}
.track-breadcrumb{
  text-align:left;
  color:#999;
  font-size:14px;
  border-bottom:1px solid #eee;
  padding-bottom:18px;
  margin-bottom:34px;
}
.track-title{
  font-size:40px;
  font-weight:800;
  color:var(--dark);
}
.track-title-rule{
  width:70px;
  height:4px;
  background:var(--yellow);
  border-radius:2px;
  margin:18px auto 30px;
}
.radio-group.horizontal{
  flex-direction:row;
  justify-content:center;
  gap:40px;
  margin:0 0 26px;
}
.tracking-page .search-box{
  max-width:620px;
  margin:0 auto;
  background:#fff;
  border:1px solid #eee;
  box-shadow:0 2px 10px rgba(0,0,0,.06);
}
.tracking-page .search-box.focused,
.tracking-page .search-box.has-text{
  border-color:var(--yellow-dark);
}

/* Result header + summary */
.track-result{
  text-align:left;
  margin-top:46px;
}
.track-result-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.track-result-head h2{
  font-size:26px;
  font-weight:800;
  letter-spacing:.3px;
}
.print-btn{
  background:none;border:none;cursor:pointer;
  padding:6px;
  flex-shrink:0;
}
.print-btn svg{width:22px;height:22px;}
.track-result-divider{
  height:1px;
  background:#eee;
  margin:18px 0 24px;
}
.track-summary{
  display:flex;
  flex-wrap:nowrap;
  gap:24px;
  justify-content:space-between;
}
.track-summary-item{
  display:flex;
  flex-direction:column;
  gap:6px;
  flex:1;
  min-width:0;
}
.track-summary-item .label{
  font-size:13px;
  color:#888;
}
.track-summary-item .value{
  font-size:15px;
  font-weight:600;
  color:var(--dark);
}
.track-footnote{
  font-size:12px;
  color:#999;
  margin-top:26px;
}

/* No results found (wrong container number) */
.tracking-page--short{
  padding-bottom:0;
}
.no-results-wrap{
  border-top:1px solid #eee;
  border-bottom:1px solid #eee;
  margin-top:40px;
  padding:40px 0;
}
.no-results{
  display:flex;
  align-items:center;
  gap:30px;
  max-width:1100px;
  margin:0 auto;
  text-align:left;
}
.no-results-icon{
  width:150px;
  height:104px;
  border:1.6px solid var(--dark);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.no-results-icon svg{width:100%;height:100%;}
.no-results-text{
  font-size:16px;
  line-height:1.65;
  color:var(--dark);
  margin:0;
  max-width:760px;
}

/* Containers section */
.containers-section{
  text-align:left;
  margin-top:56px;
}
.containers-title{
  font-size:26px;
  font-weight:800;
  letter-spacing:.5px;
  margin-bottom:18px;
}
.container-bar{
  display:flex;
  align-items:stretch;
  border:2px solid var(--yellow);
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 10px 26px rgba(0,0,0,.06);
}
.container-bar-info{
  flex:0 1 auto;
  display:flex;
  flex-wrap:wrap;
  gap:44px;
  align-items:center;
  padding:34px 36px;
  background:#fff;
}
.container-bar-item{
  display:flex;
  align-items:center;
  gap:16px;
}
.container-bar-item svg{width:36px;height:36px;flex-shrink:0;}
.container-bar-item .label{
  display:block;
  font-size:13px;
  color:#888;
}
.container-bar-item .value{
  display:block;
  font-size:15px;
  font-weight:400;
  color:var(--dark);
}
.container-bar-actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex:1;
  gap:18px;
  background:var(--yellow);
  padding:0 32px;
  min-width:160px;
  flex-shrink:0;
}
.container-check-btn,
.container-collapse-btn{
  background:none;border:1.6px solid var(--dark);cursor:pointer;
  width:38px;height:38px;
  display:flex;align-items:center;justify-content:center;
  border-radius:50%;
  opacity:1;
}

/* Table / timeline */
.track-table{
  margin-top:28px;
}
.track-table-head{
  display:grid;
  grid-template-columns:110px 130px 1.3fr 1.3fr 1.5fr;
  gap:16px;
  background:#f5f5f5;
  padding:16px 20px;
  font-size:14px;
  color:#555;
  font-weight:600;
  border-radius:6px 6px 0 0;
}
.track-timeline{
  position:relative;
  padding-left:20px;
}
.track-row{
  position:relative;
  display:grid;
  grid-template-columns:110px 130px 1.3fr 1.3fr 1.5fr;
  gap:16px;
  padding:25px 20px 25px 30px;
  font-size:16px;
  color:var(--dark);
  border-bottom:1px solid #f0f0f0;
}
.track-row .col-desc{ color:#333; }
.track-row .col-status,
.track-row .col-facility{ color:#333; }
.info-i{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:15px;height:15px;
  border-radius:50%;
  background:var(--yellow);
  font-style:normal;
  font-size:10px;
  font-weight:700;
  color:#1a1a1a;
  margin-left:4px;
  vertical-align:middle;
}
.track-dot{
  position:absolute;
  left:0;
  top:30px;
  width:11px;height:11px;
  border-radius:50%;
  background:#fff;
  border:3px solid var(--yellow-dark);
  z-index:2;
}
.track-row::before{
  content:"";
  position:absolute;
  left:5px;
  top:0;
  bottom:0;
  width:2px;
  background:var(--yellow-dark);
  opacity:.55;
  z-index:1;
}
.track-row:first-child::before{ top:30px; }
.track-row:last-child::before{ bottom:calc(100% - 30px); }
.track-dot-start,
.track-dot-end{
  width:36px;height:36px;
  left:-12px;
  top:12px;
  border:none;
  background:var(--yellow);
  display:flex;align-items:center;justify-content:center;
}
.track-dot-start svg{width:18px;height:18px;}
.track-dot-end{ background:none; }
.track-dot-end svg{width:30px;height:30px;}
.track-row-first::before{ top:36px; }

.track-provided{
  font-size:13px;
  color:#555;
  margin-top:30px;
}
.track-showall{
  font-size:13px;
  color:#555;
  margin-top:8px;
}
.track-showall a{ color:var(--dark); font-weight:700; text-decoration:underline; }
.track-contact{
  font-size:13px;
  color:#555;
  margin-top:14px;
  max-width:900px;
}
.track-contact a{ color:var(--dark); text-decoration:underline; }

@media (max-width:820px){
  .track-table-head{ display:none; }
  .track-row{
    grid-template-columns:1fr;
    gap:4px;
    padding-left:32px;
  }
  .track-row .col-date{ font-weight:700; }
  .radio-group.horizontal{ flex-direction:column; gap:14px; align-items:flex-start; }
  .track-summary{ flex-wrap:wrap; }
  .track-summary-item{ flex:1 1 160px; min-width:160px; }
  .container-bar{ flex-wrap:wrap; }
  .container-bar-actions{ min-width:0; width:100%; padding:14px 26px; }
  .no-results{ flex-direction:column; text-align:center; gap:18px; }
}

/* ============ SEARCHING INTRO TEXT (before the eBusiness / Integration band) ============ */
.searching-intro{
  max-width:760px;
  margin:64px auto 0;
  padding:0 20px;
  text-align:center;
}
.searching-intro h2{
  font-size:34px;
  font-weight:800;
  margin-bottom:18px;
}
.searching-intro p{
  color:#444;
  line-height:1.7;
  font-size:16px;
}

/* ============ SEARCHING BAND (eBusiness / Integration Suite hover cards) ============ */
.searching-band{
  display:flex;
  gap:0;
  margin-top:70px;
}
.searching-band--narrow{
  max-width:760px;
  margin:34px auto 0;
  padding:0 20px;
  gap:20px;
  justify-content:center;
}
.searching-band--narrow .searching-card{
  flex:0 0 280px;
  height:418px;
}
.searching-band--narrow .searching-card-content h3{
  font-size:20px;
  max-width:200px;
}
.searching-band--narrow .searching-read-more{
  font-size:13px;
  padding:0 18px;
}
.searching-card{
  position:relative;
  flex:1;
  height:560px;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  text-align:center;
  text-decoration:none;
  overflow:hidden;
}
.searching-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.4);
  transition:background .3s ease;
}
.searching-card:hover::before{
  background:rgba(0,0,0,.6);
}
.searching-card-content{
  position:relative;
  z-index:2;
  color:#fff;
  padding-bottom:56px;
  transition:transform .3s ease;
}
.searching-card:hover .searching-card-content{
  transform:translateY(-14px);
}
.searching-card-content h3{
  font-size:26px;
  font-weight:800;
  line-height:1.25;
  max-width:260px;
  margin:0 auto;
}
.searching-read-more{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:0;
  max-height:0;
  overflow:hidden;
  opacity:0;
  border:1px solid var(--yellow);
  border-radius:999px;
  padding:0 22px;
  font-size:14px;
  font-weight:600;
  color:#fff;
  transition:opacity .3s ease, max-height .3s ease, margin-top .3s ease, padding .3s ease;
}
.searching-card:hover .searching-read-more{
  opacity:1;
  max-height:44px;
  margin-top:18px;
  padding:11px 22px;
}
.searching-read-more-arrow{ font-size:16px; }

@media (max-width:768px){
  .searching-band{ flex-direction:column; }
  .searching-card{ height:340px; }
  .searching-band--narrow .searching-card{ flex:1 1 auto; width:auto; }
}
