:root{
  --yellow:#ffdd00;
  --black:#21201e;
  --blue:#004e9e;
  --white:#fff;
  --soft:#f6f7f9;
  --border:#e7e9ee;
  --text:#171717;
  --muted:#6b7280;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:Shabnam,Tahoma,Arial,sans-serif;
  background:#fff;
  color:var(--text);
}

a{text-decoration:none;color:inherit}
img{max-width:100%;height:auto}

.podem-wrap{
  width:min(96%,1440px);
  margin:auto;
}

/* Header */
.podem-topbar{
  background:linear-gradient(180deg,#111,#21201e);
  color:#fff;
  font-size:13px;
}

.podem-topbar-in{
  height:42px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.podem-social,
.podem-contact-line{
  display:flex;
  align-items:center;
  gap:18px;
}

.podem-social b{
  color:var(--yellow);
  border-bottom:2px solid var(--yellow);
}

.podem-contact-line a{color:#fff}
.podem-contact-line a:last-child{
  color:var(--yellow);
  font-weight:800;
}

.podem-nav{
  background:#fff;
  border:1px solid var(--border);
  border-top:0;
  border-radius:0 0 12px 12px;
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 8px 28px rgba(0,0,0,.04);
}

.podem-nav-in{
  height:88px;
  display:flex;
  align-items:center;
  gap:28px;
}

.podem-logo{
  width:170px;
  display:flex;
  align-items:center;
}

.podem-logo img{
  max-height:58px;
  object-fit:contain;
}

.podem-menu{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
}

.podem-menu > a,
.podem-menu-item > a{
  height:88px;
  display:flex;
  align-items:center;
  gap:6px;
  padding:0 10px;
  font-weight:800;
  font-size:15px;
  color:var(--black);
  position:relative;
}

.podem-menu > a:hover,
.podem-menu-item > a:hover{
  color:var(--blue);
}

.podem-menu .is-active{
  color:var(--blue);
}

.podem-menu .is-active:after{
  content:"";
  position:absolute;
  bottom:14px;
  right:50%;
  transform:translateX(50%);
  width:34px;
  height:3px;
  background:var(--yellow);
  border-radius:10px;
}

.podem-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.podem-search-btn,
.podem-burger{
  width:48px;
  height:48px;
  border:1px solid var(--border);
  border-radius:12px;
  background:#fff;
  font-size:24px;
  cursor:pointer;
}

.podem-burger{display:none}

.podem-call-btn{
  height:48px;
  padding:0 18px;
  border:1px solid var(--border);
  border-radius:12px;
  display:flex;
  align-items:center;
  font-weight:800;
}

.podem-quote-btn{
  height:48px;
  padding:0 22px;
  background:var(--yellow);
  color:var(--black);
  border-radius:12px;
  display:flex;
  align-items:center;
  font-weight:900;
  box-shadow:0 12px 26px rgba(255,221,0,.25);
}

.podem-quote-btn:hover{
  background:var(--blue);
  color:#fff;
}

/* Mega Menu */
.podem-menu-item{position:relative}

.podem-mega{
  position:absolute;
  top:88px;
  right:-360px;
  width:1180px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:0 0 18px 18px;
  box-shadow:0 24px 70px rgba(0,0,0,.13);
  padding:22px;
  display:none;
  grid-template-columns:1fr 300px;
  gap:22px;
}

.podem-menu-item:hover .podem-mega{
  display:grid;
}

.podem-mega-main{
  display:grid;
  grid-template-columns:430px 1fr;
  gap:26px;
  background:#fff;
}

.podem-mega-image{
  background:linear-gradient(135deg,#f8fafc,#eef2f7);
  border:1px solid var(--border);
  border-radius:18px;
  min-height:330px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.podem-mega-image img{
  width:92%;
  object-fit:contain;
}

.podem-mega-content{
  padding:10px 0;
}

.podem-badge{
  display:inline-flex;
  background:var(--yellow);
  color:var(--black);
  border-radius:8px;
  padding:6px 12px;
  font-size:12px;
  font-weight:900;
}

.podem-mega-content h3{
  font-size:30px;
  margin:16px 0 12px;
  color:#111;
}

.podem-mega-content p{
  line-height:2.1;
  color:#4b5563;
  margin:0 0 22px;
}

.podem-mini-specs{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-bottom:24px;
}

.podem-mini-specs b{
  border:1px solid var(--border);
  border-radius:14px;
  padding:16px;
  text-align:center;
  font-size:13px;
  background:#fff;
}

.podem-mega-actions{
  display:flex;
  gap:12px;
}

.podem-mega-actions a{
  padding:13px 20px;
  border-radius:12px;
  font-weight:900;
  border:1px solid var(--border);
}

.podem-mega-actions a:first-child{
  background:var(--blue);
  color:#fff;
}

.podem-mega-list{
  display:grid;
  gap:12px;
}

.podem-mega-list a{
  position:relative;
  min-height:78px;
  border:1px solid var(--border);
  border-radius:16px;
  padding:12px 58px 12px 12px;
  display:flex;
  align-items:center;
  gap:12px;
  background:#fff;
}

.podem-mega-list a:hover{
  border-color:var(--yellow);
  box-shadow:0 14px 30px rgba(0,0,0,.08);
}

.podem-mega-list span{
  position:absolute;
  right:14px;
  top:50%;
  transform:translateY(-50%);
  width:34px;
  height:34px;
  border-radius:50%;
  background:var(--yellow);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  color:#111;
}

.podem-mega-list img{
  width:70px;
  height:54px;
  object-fit:contain;
}

.podem-mega-list b{
  font-size:14px;
  line-height:1.8;
}

/* Search */
.podem-search-overlay{
  position:fixed;
  inset:0;
  background:
    linear-gradient(rgba(2,10,20,.84),rgba(2,10,20,.88)),
    url("../images/home/search-bg.jpg") center/cover;
  z-index:3000;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  color:#fff;
}

.podem-search-overlay.is-open{
  display:flex;
}

.podem-close{
  position:absolute;
  top:28px;
  right:28px;
  width:48px;
  height:48px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:50%;
  background:rgba(255,255,255,.06);
  color:#fff;
  font-size:32px;
  cursor:pointer;
}

.podem-search-box{
  width:min(760px,94%);
  text-align:center;
}

.podem-search-box h2{
  font-size:34px;
  margin:0 0 28px;
}

.podem-search-input{
  height:66px;
  background:#fff;
  border-radius:14px;
  display:flex;
  align-items:center;
  padding:0 18px;
}

.podem-search-input input{
  flex:1;
  border:0;
  outline:0;
  font-family:inherit;
  font-size:16px;
  text-align:right;
}

.podem-search-input button{
  border:0;
  background:transparent;
  font-size:28px;
  cursor:pointer;
}

.podem-search-tags{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin-top:20px;
}

.podem-search-tags span{
  padding:10px 22px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:12px;
  background:rgba(255,255,255,.08);
}

.podem-search-tags span:first-child{
  background:var(--blue);
}

/* Drawer */
.podem-drawer,
.podem-backdrop{
  display:none;
}

/* General */
.podem-main,
.zw-main{
  min-height:60vh;
}

.zw-section{
  padding:80px 0;
}

/* Footer */
.podem-footer{
  background:var(--black);
  color:#fff;
  margin-top:70px;
}

.podem-footer-top{
  display:grid;
  grid-template-columns:1.8fr 1fr 1fr 1.25fr;
  gap:42px;
  padding:70px 0;
}

.podem-footer-brand img{
  width:165px;
  background:#fff;
  border-radius:14px;
  padding:10px;
  margin-bottom:18px;
}

.podem-footer h4{
  color:var(--yellow);
  margin:0 0 18px;
  font-size:18px;
}

.podem-footer p{
  line-height:2;
  color:#d8d8d8;
  margin:0 0 10px;
}

.podem-footer a{
  display:block;
  color:#e9e9e9;
  margin-bottom:12px;
}

.podem-footer a:hover{
  color:var(--yellow);
}

.podem-footer-cta{
  display:inline-flex!important;
  background:var(--yellow);
  color:#111!important;
  padding:12px 18px;
  border-radius:12px;
  font-weight:900;
  margin-top:10px;
}

.podem-footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding:18px 0;
  color:#cfcfcf;
  font-size:13px;
}

.podem-footer-bottom b{
  color:var(--yellow);
}

/* Responsive */
@media(max-width:1100px){
  .podem-menu,
  .podem-call-btn{
    display:none;
  }

  .podem-burger{
    display:block;
  }

  .podem-logo{
    margin-left:auto;
  }

  .podem-nav-in{
    height:76px;
  }

  .podem-topbar-in{
    height:34px;
    font-size:11px;
  }

  .podem-social{
    display:none;
  }

  .podem-footer-top{
    grid-template-columns:1fr 1fr;
  }

  .podem-drawer{
    position:fixed;
    top:0;
    right:-330px;
    width:310px;
    height:100vh;
    background:#fff;
    z-index:3500;
    padding:24px;
    display:flex;
    flex-direction:column;
    gap:8px;
    transition:.25s ease;
    box-shadow:-20px 0 60px rgba(0,0,0,.16);
  }

  .podem-drawer.is-open{
    right:0;
  }

  .podem-drawer img{
    width:150px;
    margin:0 auto 18px;
  }

  .podem-drawer a{
    padding:14px;
    border-bottom:1px solid var(--border);
    font-weight:800;
  }

  .podem-drawer-cta{
    background:var(--yellow);
    border-radius:12px;
    text-align:center;
    border:0!important;
    margin-top:10px;
  }

  .podem-backdrop{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    z-index:3400;
  }

  .podem-backdrop.is-open{
    display:block;
  }
}

@media(max-width:640px){
  .podem-wrap{
    width:94%;
  }

  .podem-topbar{
    background:var(--yellow);
    color:#111;
  }

  .podem-contact-line{
    width:100%;
    justify-content:center;
  }

  .podem-contact-line span,
  .podem-contact-line a:first-of-type{
    display:none;
  }

  .podem-contact-line a:last-child{
    color:#111;
  }

  .podem-quote-btn{
    display:none;
  }

  .podem-logo{
    width:130px;
  }

  .podem-footer-top{
    grid-template-columns:1fr;
  }
}

/* Podem Full Width Industrial Header Fix */
.podem-nav{
  border-left:0;
  border-right:0;
  border-radius:0;
}

.podem-wrap{
  width:100%;
  max-width:none;
  padding-left:42px;
  padding-right:42px;
}

.podem-nav-in{
  width:100%;
}

.podem-logo{
  width:185px;
}

.podem-logo img{
  max-height:64px;
}

.podem-menu{
  justify-content:flex-start;
  gap:18px;
}

.podem-menu > a,
.podem-menu-item > a{
  font-size:15px;
  letter-spacing:-.2px;
}

/* Mega menu full width */
.podem-menu-item{
  position:static;
}

.podem-mega{
  position:absolute;
  top:88px;
  right:0;
  left:0;
  width:100vw;
  max-width:100vw;
  border-radius:0 0 26px 26px;
  border-left:0;
  border-right:0;
  padding:28px 42px;
  grid-template-columns:minmax(0,1fr) 380px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.98),rgba(248,249,251,.98));
}

.podem-mega-main{
  grid-template-columns:520px minmax(0,1fr);
  align-items:stretch;
}

.podem-mega-image{
  min-height:390px;
  background:
    linear-gradient(135deg,rgba(255,221,0,.15),rgba(0,78,158,.07)),
    #f4f6f8;
}

.podem-mega-image img{
  width:96%;
  max-height:350px;
  object-fit:contain;
  filter:drop-shadow(0 28px 35px rgba(0,0,0,.18));
}

.podem-mega-content{
  padding:18px 12px 18px 0;
}

.podem-mega-content h3{
  font-size:38px;
  line-height:1.5;
  letter-spacing:-1.2px;
}

.podem-mega-content p{
  max-width:760px;
  font-size:16px;
  color:#374151;
}

.podem-mini-specs b{
  min-height:74px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
}

.podem-mega-list{
  align-content:start;
}

.podem-mega-list a{
  min-height:92px;
  border-radius:18px;
  background:#fff;
}

.podem-mega-list img{
  width:88px;
  height:64px;
}

.podem-mega-list b{
  font-size:15px;
}

.podem-mega-list span{
  background:var(--yellow);
  color:#111;
}

/* Footer full width */
.podem-footer .podem-wrap{
  padding-left:42px;
  padding-right:42px;
}

/* Search overlay more industrial */
.podem-search-overlay{
  background:
    linear-gradient(90deg,rgba(5,10,18,.92),rgba(5,10,18,.74)),
    url("../images/home/industrial-crane.jpg") center/cover;
}

.podem-search-box h2:after{
  content:"";
  display:block;
  width:54px;
  height:4px;
  background:var(--yellow);
  border-radius:20px;
  margin:14px auto 0;
}

/* Mobile */
@media(max-width:1100px){
  .podem-wrap{
    padding-left:18px;
    padding-right:18px;
  }

  .podem-mega{
    display:none!important;
  }
}

@media(max-width:640px){
  .podem-wrap{
    padding-left:14px;
    padding-right:14px;
  }
}

/* ===== Podem Minimal Industrial Header V3 ===== */
.podem-container{
  width:100%;
  max-width:none;
  padding-inline:42px;
  margin:0 auto;
}

.podem-header{
  position:relative;
  z-index:1000;
}

.podem-topbar{
  background:#111;
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.podem-topbar-in{
  height:40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.podem-top-social,
.podem-top-info{
  display:flex;
  align-items:center;
  gap:18px;
  font-size:13px;
}

.podem-top-social a,
.podem-top-info a,
.podem-top-info span{
  color:#fff;
  display:flex;
  align-items:center;
  gap:8px;
  opacity:.92;
}

.podem-top-social span{
  width:1px;
  height:18px;
  background:rgba(255,255,255,.2);
}

.podem-top-social b{
  color:#ffdd00;
  border-bottom:2px solid #ffdd00;
  line-height:1.4;
}

.podem-top-info i,
.podem-top-social i{
  color:#ffdd00;
  font-size:13px;
}

.podem-nav{
  position:sticky;
  top:0;
  background:#fff;
  border-bottom:1px solid #e9edf3;
  box-shadow:0 10px 30px rgba(15,23,42,.045);
  z-index:1000;
}

.podem-nav-in{
  height:88px;
  display:flex;
  align-items:center;
  gap:34px;
}

.podem-logo{
  width:180px;
  flex:0 0 180px;
  display:flex;
  align-items:center;
}

.podem-logo img{
  max-height:62px;
  object-fit:contain;
}

.podem-menu{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:4px;
}

.podem-menu > a,
.podem-menu-item > a{
  height:88px;
  padding:0 16px;
  display:flex;
  align-items:center;
  gap:8px;
  font-size:15px;
  font-weight:800;
  color:#21201e;
  position:relative;
  transition:.2s ease;
}

.podem-menu > a:hover,
.podem-menu-item > a:hover,
.podem-menu > a.active,
.podem-menu-item > a.active{
  color:#004e9e;
}

.podem-menu > a.active:after,
.podem-menu-item > a.active:after{
  content:"";
  position:absolute;
  right:18px;
  left:18px;
  bottom:17px;
  height:3px;
  border-radius:8px;
  background:#ffdd00;
}

.podem-menu-item{
  position:static;
}

.podem-menu-item > a i{
  font-size:11px;
  transition:.2s ease;
}

.podem-menu-item:hover > a i{
  transform:rotate(180deg);
}

.podem-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.podem-icon-btn,
.podem-burger{
  width:48px;
  height:48px;
  border:1px solid #e7e9ee;
  background:#fff;
  border-radius:13px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  color:#21201e;
  font-size:17px;
}

.podem-icon-btn:hover,
.podem-burger:hover{
  border-color:#ffdd00;
  background:#fffdf0;
}

.podem-outline-btn,
.podem-yellow-btn{
  height:48px;
  padding:0 18px;
  border-radius:13px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  font-size:14px;
  font-weight:900;
  white-space:nowrap;
}

.podem-outline-btn{
  border:1px solid #e7e9ee;
  background:#fff;
  color:#21201e;
}

.podem-yellow-btn{
  border:1px solid #ffdd00;
  background:#ffdd00;
  color:#21201e;
}

.podem-yellow-btn:hover{
  background:#004e9e;
  border-color:#004e9e;
  color:#fff;
}

/* Full Width Minimal Mega */
.podem-mega{
  position:absolute;
  top:128px;
  right:0;
  left:0;
  width:100%;
  background:#fff;
  border-top:1px solid #e9edf3;
  border-bottom:1px solid #e9edf3;
  box-shadow:0 28px 80px rgba(15,23,42,.12);
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:.2s ease;
  pointer-events:none;
}

.podem-menu-item:hover .podem-mega{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
  pointer-events:auto;
}

.podem-mega-inner{
  width:100%;
  padding:30px 42px;
  display:grid;
  grid-template-columns:minmax(0,1fr) 420px;
  gap:28px;
}

.podem-mega-feature{
  display:grid;
  grid-template-columns:520px minmax(0,1fr);
  gap:32px;
  align-items:stretch;
}

.podem-mega-img{
  min-height:360px;
  border:1px solid #e9edf3;
  border-radius:22px;
  background:
    linear-gradient(135deg,rgba(255,221,0,.14),rgba(0,78,158,.05)),
    #f7f8fa;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.podem-mega-img img{
  width:92%;
  max-height:330px;
  object-fit:contain;
  filter:drop-shadow(0 26px 32px rgba(0,0,0,.18));
}

.podem-mega-text{
  padding:18px 0;
}

.podem-mega-text span{
  display:inline-flex;
  background:#ffdd00;
  color:#21201e;
  border-radius:9px;
  padding:6px 12px;
  font-size:12px;
  font-weight:900;
}

.podem-mega-text h3{
  margin:18px 0 12px;
  font-size:38px;
  line-height:1.45;
  color:#111;
  letter-spacing:-1px;
}

.podem-mega-text p{
  margin:0 0 24px;
  max-width:760px;
  color:#4b5563;
  font-size:16px;
  line-height:2.1;
}

.podem-mega-specs{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-bottom:26px;
}

.podem-mega-specs b{
  min-height:68px;
  padding:14px;
  border:1px solid #e9edf3;
  border-radius:16px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#21201e;
  font-size:13px;
}

.podem-mega-buttons{
  display:flex;
  gap:12px;
}

.podem-mega-buttons a{
  height:48px;
  padding:0 20px;
  border-radius:13px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  border:1px solid #e9edf3;
}

.podem-mega-buttons a:first-child{
  background:#004e9e;
  border-color:#004e9e;
  color:#fff;
}

.podem-mega-products{
  display:grid;
  gap:12px;
  align-content:start;
}

.podem-mega-products a{
  min-height:92px;
  border:1px solid #e9edf3;
  border-radius:18px;
  background:#fff;
  padding:12px;
  display:grid;
  grid-template-columns:88px 1fr 42px;
  align-items:center;
  gap:12px;
  transition:.2s ease;
}

.podem-mega-products a:hover{
  border-color:#ffdd00;
  box-shadow:0 16px 36px rgba(15,23,42,.08);
  transform:translateY(-2px);
}

.podem-mega-products img{
  width:88px;
  height:64px;
  object-fit:contain;
}

.podem-mega-products b{
  display:block;
  color:#21201e;
  font-size:14px;
  line-height:1.8;
}

.podem-mega-products small{
  color:#6b7280;
  font-size:12px;
}

.podem-mega-products span{
  width:38px;
  height:38px;
  border-radius:50%;
  background:#ffdd00;
  color:#21201e;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
}

/* Search Overlay */
.podem-search-overlay{
  position:fixed;
  inset:0;
  z-index:4000;
  background:
    linear-gradient(90deg,rgba(5,10,18,.92),rgba(5,10,18,.74)),
    url("../images/home/industrial-crane.jpg") center/cover;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
}

.podem-search-overlay.is-open{
  display:flex;
}

.podem-search-close{
  position:absolute;
  top:30px;
  right:30px;
  width:50px;
  height:50px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,255,255,.08);
  color:#fff;
  cursor:pointer;
  font-size:20px;
}

.podem-search-panel{
  width:min(760px,94%);
  text-align:center;
  color:#fff;
}

.podem-search-panel h2{
  margin:0 0 28px;
  font-size:34px;
}

.podem-search-panel h2:after{
  content:"";
  display:block;
  width:54px;
  height:4px;
  background:#ffdd00;
  border-radius:20px;
  margin:14px auto 0;
}

.podem-search-field{
  height:68px;
  border-radius:16px;
  background:#fff;
  display:flex;
  align-items:center;
  padding:0 18px;
  box-shadow:0 20px 50px rgba(0,0,0,.22);
}

.podem-search-field input{
  flex:1;
  border:0;
  outline:0;
  font-family:inherit;
  font-size:16px;
  text-align:right;
}

.podem-search-field button{
  border:0;
  background:transparent;
  color:#111;
  font-size:18px;
  cursor:pointer;
}

.podem-search-tags{
  margin-top:20px;
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
}

.podem-search-tags span{
  padding:10px 18px;
  border-radius:999px;
  color:#fff;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.18);
  font-size:13px;
}

/* Mobile Drawer */
.podem-drawer,
.podem-backdrop{
  display:none;
}

@media(max-width:1180px){
  .podem-container{
    padding-inline:18px;
  }

  .podem-menu,
  .podem-outline-btn{
    display:none;
  }

  .podem-burger{
    display:inline-flex;
  }

  .podem-nav-in{
    height:76px;
  }

  .podem-logo{
    width:150px;
    flex-basis:150px;
    margin-left:auto;
  }

  .podem-logo img{
    max-height:54px;
  }

  .podem-mega{
    display:none!important;
  }

  .podem-drawer{
    position:fixed;
    top:0;
    right:-340px;
    width:320px;
    max-width:86vw;
    height:100vh;
    background:#fff;
    z-index:5000;
    padding:24px;
    display:flex;
    flex-direction:column;
    gap:8px;
    transition:.25s ease;
    box-shadow:-28px 0 80px rgba(0,0,0,.18);
  }

  .podem-drawer.is-open{
    right:0;
  }

  .podem-drawer-close{
    position:absolute;
    top:18px;
    left:18px;
    width:42px;
    height:42px;
    border:1px solid #e9edf3;
    border-radius:12px;
    background:#fff;
    cursor:pointer;
  }

  .podem-drawer img{
    width:150px;
    margin:12px auto 22px;
  }

  .podem-drawer a{
    min-height:48px;
    padding:0 12px;
    border-bottom:1px solid #eef1f5;
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:800;
    color:#21201e;
  }

  .podem-drawer a i{
    color:#004e9e;
    width:20px;
  }

  .podem-drawer-cta{
    margin-top:12px;
    background:#ffdd00;
    border-radius:13px;
    justify-content:center;
    border-bottom:0!important;
  }

  .podem-backdrop{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    z-index:4900;
  }

  .podem-backdrop.is-open{
    display:block;
  }
}

@media(max-width:720px){
  .podem-topbar{
    background:#ffdd00;
    color:#111;
  }

  .podem-topbar-in{
    height:34px;
    justify-content:center;
  }

  .podem-top-social,
  .podem-top-info a:nth-child(2),
  .podem-top-info span{
    display:none;
  }

  .podem-top-info a{
    color:#111;
    font-weight:900;
  }

  .podem-top-info i{
    color:#111;
  }

  .podem-yellow-btn{
    display:none;
  }

  .podem-icon-btn,
  .podem-burger{
    width:44px;
    height:44px;
  }
}

/* ===== Podem Industrial Minimal Header - Stable Mega ===== */
.pi-shell{
  width:100%;
  max-width:none;
  padding-inline:44px;
  margin:0 auto;
}

.pi-header{
  position:relative;
  z-index:2000;
  font-family:Shabnam,Tahoma,Arial,sans-serif;
}

.pi-top{
  background:#151515;
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.pi-top-in{
  height:38px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  font-size:12px;
}

.pi-top-right,
.pi-top-left{
  display:flex;
  align-items:center;
  gap:16px;
}

.pi-top-right em{
  width:1px;
  height:16px;
  background:rgba(255,255,255,.18);
}

.pi-top-left a,
.pi-top-right span{
  color:rgba(255,255,255,.88);
  display:flex;
  align-items:center;
  gap:8px;
  font-style:normal;
}

.pi-top-left i{
  color:#ffdd00;
  font-size:12px;
}

.pi-top-left b{
  color:#ffdd00;
  border-bottom:2px solid #ffdd00;
}

.pi-nav{
  position:sticky;
  top:0;
  background:#fff;
  border-bottom:1px solid #e8ebf0;
  box-shadow:0 12px 34px rgba(15,23,42,.045);
  z-index:2000;
}

.pi-nav-in{
  height:86px;
  display:flex;
  align-items:center;
  gap:34px;
}

.pi-logo{
  width:176px;
  flex:0 0 176px;
  display:flex;
  align-items:center;
}

.pi-logo img{
  max-height:60px;
  width:auto;
  object-fit:contain;
}

.pi-menu{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:2px;
}

.pi-menu > a,
.pi-has-mega > a{
  height:86px;
  padding:0 15px;
  display:flex;
  align-items:center;
  gap:8px;
  color:#21201e;
  font-size:14px;
  font-weight:800;
  position:relative;
  transition:.18s ease;
}

.pi-menu > a:hover,
.pi-has-mega > a:hover,
.pi-menu > a.active,
.pi-has-mega > a.active{
  color:#004e9e;
}

.pi-menu > a.active:after,
.pi-has-mega > a.active:after{
  content:"";
  position:absolute;
  right:17px;
  left:17px;
  bottom:16px;
  height:3px;
  border-radius:12px;
  background:#ffdd00;
}

.pi-has-mega{
  position:static;
}

.pi-has-mega > a i{
  font-size:10px;
  transition:.18s ease;
}

.pi-has-mega:hover > a i{
  transform:rotate(180deg);
}

.pi-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.pi-icon,
.pi-burger{
  width:46px;
  height:46px;
  border:1px solid #e8ebf0;
  background:#fff;
  color:#21201e;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.pi-burger{
  display:none;
}

.pi-icon:hover,
.pi-burger:hover{
  background:#fffbe8;
  border-color:#ffdd00;
}

.pi-ghost,
.pi-primary{
  height:46px;
  padding:0 18px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:900;
  white-space:nowrap;
}

.pi-ghost{
  border:1px solid #e8ebf0;
  color:#21201e;
  background:#fff;
}

.pi-primary{
  background:#ffdd00;
  border:1px solid #ffdd00;
  color:#21201e;
}

.pi-primary:hover{
  background:#004e9e;
  border-color:#004e9e;
  color:#fff;
}

/* Stable Mega: no jump */
.pi-mega{
  position:absolute;
  top:124px;
  right:0;
  left:0;
  width:100%;
  background:#fff;
  border-top:1px solid #e8ebf0;
  border-bottom:1px solid #e8ebf0;
  box-shadow:0 28px 90px rgba(15,23,42,.13);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translateY(0);
  transition:opacity .14s ease, visibility .14s ease;
}

.pi-has-mega:hover .pi-mega,
.pi-mega:hover{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.pi-mega:before{
  content:"";
  position:absolute;
  top:-12px;
  right:0;
  left:0;
  height:12px;
}

.pi-mega-in{
  width:100%;
  padding:28px 44px;
  display:grid;
  grid-template-columns:minmax(0,1fr) 410px;
  gap:28px;
}

.pi-mega-hero{
  display:grid;
  grid-template-columns:520px minmax(0,1fr);
  gap:32px;
  align-items:stretch;
}

.pi-mega-img{
  min-height:350px;
  border:1px solid #e8ebf0;
  border-radius:20px;
  background:
    linear-gradient(135deg,rgba(255,221,0,.12),rgba(0,78,158,.05)),
    #f7f8fa;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.pi-mega-img img{
  width:92%;
  max-height:320px;
  object-fit:contain;
  filter:drop-shadow(0 24px 32px rgba(0,0,0,.16));
}

.pi-mega-copy{
  padding:14px 0;
}

.pi-mega-copy span{
  display:inline-flex;
  background:#ffdd00;
  color:#21201e;
  padding:6px 12px;
  border-radius:8px;
  font-size:12px;
  font-weight:900;
}

.pi-mega-copy h3{
  margin:18px 0 12px;
  color:#111;
  font-size:36px;
  line-height:1.45;
  letter-spacing:-1px;
}

.pi-mega-copy p{
  margin:0 0 24px;
  color:#4b5563;
  font-size:15px;
  line-height:2.05;
  max-width:760px;
}

.pi-mega-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-bottom:24px;
}

.pi-mega-points b{
  min-height:66px;
  border:1px solid #e8ebf0;
  border-radius:15px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-size:13px;
  color:#21201e;
  background:#fff;
  padding:12px;
}

.pi-mega-cta{
  display:flex;
  gap:10px;
}

.pi-mega-cta a{
  height:46px;
  padding:0 18px;
  border-radius:12px;
  border:1px solid #e8ebf0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:13px;
}

.pi-mega-cta a:first-child{
  background:#004e9e;
  border-color:#004e9e;
  color:#fff;
}

.pi-mega-list{
  display:grid;
  gap:11px;
  align-content:start;
}

.pi-mega-list a{
  min-height:88px;
  border:1px solid #e8ebf0;
  border-radius:17px;
  background:#fff;
  padding:11px;
  display:grid;
  grid-template-columns:84px 1fr 32px;
  align-items:center;
  gap:12px;
  transition:.16s ease;
}

.pi-mega-list a:hover{
  border-color:#ffdd00;
  box-shadow:0 14px 32px rgba(15,23,42,.08);
}

.pi-mega-list img{
  width:84px;
  height:62px;
  object-fit:contain;
}

.pi-mega-list b{
  display:block;
  color:#21201e;
  font-size:14px;
  line-height:1.75;
}

.pi-mega-list small{
  color:#6b7280;
  font-size:12px;
}

.pi-mega-list i{
  width:32px;
  height:32px;
  background:#f5f6f8;
  color:#004e9e;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
}

/* Search */
.pi-search{
  position:fixed;
  inset:0;
  z-index:5000;
  background:
    linear-gradient(90deg,rgba(8,10,14,.94),rgba(8,10,14,.76)),
    url("../images/home/podem-crane-main.jpg") center/cover;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
}

.pi-search.is-open{
  display:flex;
}

.pi-search-close{
  position:absolute;
  top:28px;
  right:28px;
  width:48px;
  height:48px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:50%;
  background:rgba(255,255,255,.08);
  color:#fff;
  cursor:pointer;
}

.pi-search-box{
  width:min(760px,94%);
  color:#fff;
  text-align:center;
}

.pi-search-box h2{
  margin:0 0 24px;
  font-size:32px;
}

.pi-search-box > div{
  height:66px;
  border-radius:15px;
  background:#fff;
  display:flex;
  align-items:center;
  padding:0 18px;
}

.pi-search-box input{
  flex:1;
  border:0;
  outline:0;
  font-family:inherit;
  font-size:16px;
  text-align:right;
}

.pi-search-box button{
  border:0;
  background:transparent;
  color:#111;
  cursor:pointer;
}

/* Drawer */
.pi-drawer,
.pi-backdrop{
  display:none;
}

@media(max-width:1180px){
  .pi-shell{
    padding-inline:18px;
  }

  .pi-menu,
  .pi-ghost{
    display:none;
  }

  .pi-burger{
    display:inline-flex;
  }

  .pi-nav-in{
    height:76px;
  }

  .pi-logo{
    width:150px;
    flex-basis:150px;
    margin-left:auto;
  }

  .pi-logo img{
    max-height:54px;
  }

  .pi-mega{
    display:none!important;
  }

  .pi-drawer{
    position:fixed;
    top:0;
    right:-330px;
    width:315px;
    max-width:86vw;
    height:100vh;
    background:#fff;
    z-index:6000;
    padding:24px;
    display:flex;
    flex-direction:column;
    gap:8px;
    transition:.22s ease;
    box-shadow:-26px 0 80px rgba(0,0,0,.18);
  }

  .pi-drawer.is-open{
    right:0;
  }

  .pi-drawer-close{
    position:absolute;
    top:18px;
    left:18px;
    width:42px;
    height:42px;
    border:1px solid #e8ebf0;
    border-radius:12px;
    background:#fff;
    cursor:pointer;
  }

  .pi-drawer img{
    width:145px;
    margin:12px auto 22px;
  }

  .pi-drawer a{
    min-height:48px;
    border-bottom:1px solid #eef1f5;
    display:flex;
    align-items:center;
    font-weight:800;
    color:#21201e;
  }

  .pi-drawer-cta{
    background:#ffdd00;
    justify-content:center;
    border-radius:12px;
    border-bottom:0!important;
    margin-top:12px;
  }

  .pi-backdrop{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    z-index:5900;
  }

  .pi-backdrop.is-open{
    display:block;
  }
}

@media(max-width:720px){
  .pi-top{
    background:#ffdd00;
    color:#111;
  }

  .pi-top-in{
    height:34px;
    justify-content:center;
  }

  .pi-top-right,
  .pi-top-left a:nth-child(2),
  .pi-top-left a:last-child,
  .pi-top-left b{
    display:none;
  }

  .pi-top-left a{
    color:#111;
    font-weight:900;
  }

  .pi-top-left i{
    color:#111;
  }

  .pi-primary{
    display:none;
  }

  .pi-icon,
  .pi-burger{
    width:44px;
    height:44px;
  }
}

/* ===== FINAL FIX: Podem Header / Sticky / Stable Mega ===== */

.pi-header{
  position:relative;
  z-index:9999;
}

.pi-top{
  background:#111;
  color:#fff;
}

.pi-top-in{
  height:36px;
  font-size:12px;
}

.pi-top-right span:first-child{
  color:#ffdd00;
  font-weight:900;
  letter-spacing:.3px;
}

.pi-top-right span:last-child{
  color:rgba(255,255,255,.78);
}

.pi-top-left{
  gap:20px;
}

.pi-top-left a,
.pi-top-left span{
  color:rgba(255,255,255,.9);
}

.pi-top-left i{
  color:#ffdd00;
}

.pi-nav{
  position:sticky;
  top:0;
  z-index:9999;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(14px);
  border-bottom:1px solid #e8ebf0;
  box-shadow:0 8px 26px rgba(15,23,42,.055);
}

.pi-nav-in{
  height:82px;
}

.pi-logo{
  width:168px;
  flex-basis:168px;
}

.pi-logo img{
  max-height:56px;
}

.pi-menu > a,
.pi-has-mega > a{
  height:82px;
  font-size:14px;
  padding:0 15px;
}

/* مهم: مگامنو دقیقاً به nav بچسبد */
.pi-mega{
  top:118px !important; /* 36 topbar + 82 nav */
  right:0;
  left:0;
  width:100%;
  margin:0;
  padding:0;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:none !important;
  transition:opacity .12s ease, visibility .12s ease;
}

/* پل نامرئی بین آیتم منو و مگامنو برای نپریدن */
.pi-mega:before{
  content:"";
  position:absolute;
  top:-18px;
  right:0;
  left:0;
  height:18px;
  background:transparent;
}

/* باز ماندن هنگام هاور روی آیتم یا خود مگامنو */
.pi-has-mega:hover .pi-mega,
.pi-mega:hover{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.pi-mega-in{
  padding:26px 44px 30px;
  background:#fff;
  display:grid;
  grid-template-columns:minmax(0,1fr) 390px;
  gap:26px;
}

.pi-mega-hero{
  display:grid;
  grid-template-columns:500px minmax(0,1fr);
  gap:30px;
}

.pi-mega-img{
  min-height:330px;
  border-radius:18px;
  background:
    linear-gradient(135deg,rgba(255,221,0,.12),rgba(0,78,158,.045)),
    #f7f8fa;
}

.pi-mega-img img{
  width:88%;
  max-height:300px;
  object-fit:contain;
}

.pi-mega-copy{
  padding:10px 0;
}

.pi-mega-copy span{
  background:#ffdd00;
  color:#21201e;
  border-radius:7px;
  padding:5px 11px;
  font-size:11px;
}

.pi-mega-copy h3{
  font-size:32px;
  line-height:1.45;
  margin:16px 0 10px;
}

.pi-mega-copy p{
  font-size:14px;
  line-height:2;
  color:#4b5563;
  margin-bottom:20px;
}

.pi-mega-points{
  gap:9px;
  margin-bottom:20px;
}

.pi-mega-points b{
  min-height:58px;
  font-size:12px;
  border-radius:13px;
}

.pi-mega-list{
  gap:10px;
}

.pi-mega-list a{
  min-height:80px;
  grid-template-columns:78px 1fr 30px;
  border-radius:15px;
}

.pi-mega-list img{
  width:78px;
  height:58px;
}

.pi-mega-list b{
  font-size:13px;
}

.pi-mega-list small{
  font-size:11px;
}

.pi-actions{
  gap:9px;
}

.pi-icon,
.pi-burger{
  width:44px;
  height:44px;
  border-radius:12px;
}

.pi-ghost,
.pi-primary{
  height:44px;
  border-radius:12px;
  padding:0 16px;
}

/* موبایل */
@media(max-width:1180px){
  .pi-mega{
    display:none!important;
  }

  .pi-nav-in{
    height:74px;
  }

  .pi-logo img{
    max-height:52px;
  }
}

@media(max-width:720px){
  .pi-top-in{
    height:32px;
  }

  .pi-nav{
    top:0;
  }
}

/* =========================
   PODEM Industrial Footer
   ========================= */

.pdm-footer,
.pdm-footer *{
  box-sizing:border-box;
}

.pdm-footer{
  margin-top:80px;
  font-family:Shabnam,Tahoma,Arial,sans-serif;
  color:#fff;
}

.pdm-footer a{
  text-decoration:none;
}

.pdm-footer-cta{
  width:calc(100% - 44px);
  margin:0 auto;
  min-height:132px;
  border-radius:14px 14px 0 0;
  background:#004e9e;
  overflow:hidden;
  position:relative;
}

.pdm-footer-cta__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(0,78,158,.94),rgba(0,42,96,.9)),
    url("../images/home/podem-crane-main.jpg") center/cover;
}

.pdm-footer-cta__inner{
  position:relative;
  min-height:132px;
  padding:28px 70px;
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:40px;
}

.pdm-footer-cta__text{
  text-align:right;
}

.pdm-footer-cta__text h2{
  margin:0 0 8px;
  font-size:28px;
  line-height:1.5;
  font-weight:600;
}

.pdm-footer-cta__text p{
  margin:0;
  color:rgba(255,255,255,.88);
  font-size:14px;
  line-height:1.9;
}

.pdm-footer-cta__actions{
  display:flex;
  align-items:center;
  gap:14px;
  padding-right:42px;
  border-right:1px solid rgba(255,255,255,.28);
}

.pdm-footer-btn{
  height:52px;
  min-width:170px;
  border-radius:9px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-size:14px;
  font-weight:500;
  transition:.24s ease;
}

.pdm-footer-btn--yellow{
  background:#ffdd00;
  color:#111;
  border:1px solid #ffdd00;
}

.pdm-footer-btn--outline{
  background:transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,.75);
}

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

.pdm-footer-main{
  width:calc(100% - 44px);
  margin:0 auto;
  border-radius:0 0 14px 14px;
  background:
    radial-gradient(circle at 15% 20%,rgba(255,221,0,.06),transparent 28%),
    linear-gradient(180deg,#181818,#111);
  overflow:hidden;
}

.pdm-footer-grid{
  padding:44px 70px 34px;
  display:grid;
  grid-template-columns:1.35fr 1.1fr 1fr 1.45fr;
  gap:46px;
}

.pdm-footer-brand{
  padding-left:38px;
  border-left:1px solid rgba(255,255,255,.18);
}

.pdm-footer-brand img{
  width:205px;
  max-width:100%;
  margin-bottom:18px;
  filter:brightness(1.1);
}

.pdm-footer-brand p{
  margin:0;
  color:rgba(255,255,255,.82);
  font-size:14px;
  line-height:2.15;
  max-width:350px;
}

.pdm-footer-social{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:28px;
}

.pdm-footer-social a{
  width:48px;
  height:48px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:9px;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:19px;
  transition:.24s ease;
}

.pdm-footer-social a:hover{
  border-color:#ffdd00;
  color:#ffdd00;
  transform:translateY(-2px);
}

.pdm-footer-col{
  padding-left:32px;
  border-left:1px solid rgba(255,255,255,.16);
}

.pdm-footer-acc__head{
  width:100%;
  padding:0;
  margin:0 0 20px;
  border:0;
  background:transparent;
  color:#fff;
  font-family:inherit;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:default;
}

.pdm-footer-acc__head span{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:17px;
  font-weight:600;
}

.pdm-footer-acc__head span i{
  display:none;
}

.pdm-footer-acc__head > i{
  display:none;
}

.pdm-footer-acc__head:after{
  content:"";
  display:block;
  width:34px;
  height:2px;
  background:#ffdd00;
  border-radius:20px;
  position:absolute;
}

.pdm-footer-acc{
  position:relative;
}

.pdm-footer-acc__body{
  display:grid;
  gap:15px;
}

.pdm-footer-acc__body a,
.pdm-footer-acc__body span{
  color:rgba(255,255,255,.82);
  font-size:14px;
  line-height:1.8;
  font-weight:400;
  display:flex;
  align-items:center;
  gap:12px;
  transition:.22s ease;
}

.pdm-footer-acc__body a:before{
  content:"\f104";
  font-family:"Font Awesome 6 Free";
  font-weight:900;
  color:#ffdd00;
  font-size:12px;
}

.pdm-footer-contact .pdm-footer-acc__body a:before{
  display:none;
}

.pdm-footer-contact .pdm-footer-acc__body i{
  color:#ffdd00;
  width:18px;
  text-align:center;
}

.pdm-footer-acc__body a:hover{
  color:#ffdd00;
  transform:translateX(-3px);
}

.pdm-footer-map{
  color:#2d8cff!important;
  margin-top:4px;
}

.pdm-footer-map i{
  color:#2d8cff!important;
}

.pdm-footer-legal{
  padding:22px 70px;
  border-top:1px solid rgba(255,255,255,.12);
  text-align:center;
}

.pdm-footer-legal p{
  margin:0 0 6px;
  color:rgba(255,255,255,.74);
  font-size:12px;
  line-height:1.9;
}

.pdm-footer-bottom{
  padding:18px 70px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.pdm-footer-bottom p{
  margin:0;
  color:rgba(255,255,255,.82);
  font-size:13px;
}

.pdm-footer-bottom a{
  color:#168cff;
  font-weight:500;
}

/* Tablet */
@media(max-width:1024px){
  .pdm-footer-cta,
  .pdm-footer-main{
    width:calc(100% - 28px);
  }

  .pdm-footer-cta__inner{
    padding:28px 34px;
  }

  .pdm-footer-grid{
    padding:40px 34px 30px;
    grid-template-columns:1.2fr 1fr 1fr 1.2fr;
    gap:30px;
  }

  .pdm-footer-brand,
  .pdm-footer-col{
    padding-left:22px;
  }

  .pdm-footer-brand img{
    width:170px;
  }

  .pdm-footer-legal,
  .pdm-footer-bottom{
    padding-left:34px;
    padding-right:34px;
  }
}

/* Mobile */
@media(max-width:768px){
  .pdm-footer{
    margin-top:60px;
  }

  .pdm-footer-cta,
  .pdm-footer-main{
    width:calc(100% - 24px);
  }

  .pdm-footer-cta{
    min-height:auto;
  }

  .pdm-footer-cta__inner{
    min-height:auto;
    padding:24px 20px;
    grid-template-columns:1fr;
    text-align:center;
    gap:18px;
  }

  .pdm-footer-cta__text{
    text-align:center;
  }

  .pdm-footer-cta__text h2{
    font-size:22px;
    margin-bottom:4px;
  }

  .pdm-footer-cta__text p{
    font-size:12px;
  }

  .pdm-footer-cta__actions{
    border-right:0;
    padding-right:0;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
  }

  .pdm-footer-btn{
    min-width:0;
    height:46px;
    font-size:12px;
  }

  .pdm-footer-grid{
    padding:30px 20px 18px;
    display:block;
  }

  .pdm-footer-brand{
    padding:0;
    border:0;
    text-align:center;
  }

  .pdm-footer-brand img{
    width:155px;
    margin:0 auto 14px;
  }

  .pdm-footer-brand p{
    max-width:none;
    font-size:12px;
    line-height:2;
  }

  .pdm-footer-social{
    justify-content:center;
    margin:20px 0 26px;
  }

  .pdm-footer-social a{
    width:42px;
    height:42px;
    font-size:17px;
  }

  .pdm-footer-col{
    padding:0;
    border-left:0;
    border-top:1px solid rgba(255,255,255,.12);
  }

  .pdm-footer-acc__head{
    min-height:52px;
    margin:0;
    cursor:pointer;
  }

  .pdm-footer-acc__head span{
    font-size:14px;
    font-weight:500;
  }

  .pdm-footer-acc__head span i{
    display:inline-flex;
    width:18px;
    color:#fff;
  }

  .pdm-footer-acc__head > i{
    display:inline-flex;
    color:#fff;
    font-size:12px;
    transition:.22s ease;
  }

  .pdm-footer-acc__head:after{
    display:none;
  }

  .pdm-footer-acc__body{
    display:none;
    padding:0 28px 18px 0;
    gap:12px;
  }

  .pdm-footer-acc.is-open .pdm-footer-acc__body{
    display:grid;
  }

  .pdm-footer-acc.is-open .pdm-footer-acc__head > i{
    transform:rotate(180deg);
  }

  .pdm-footer-acc__body a,
  .pdm-footer-acc__body span{
    font-size:12px;
  }

  .pdm-footer-legal{
    padding:18px 20px;
  }

  .pdm-footer-legal p{
    font-size:11px;
  }

  .pdm-footer-bottom{
    padding:14px 20px 22px;
    display:block;
    text-align:center;
  }

  .pdm-footer-bottom p{
    font-size:11px;
    margin-bottom:8px;
  }
}
