/* ==============================
   PAGE HERO (EXACT LIKE SCREENSHOT)
============================== */

.page-hero{
  position: relative;
  width: 100%;
  height: calc(100vh - 110px);
  min-height: 420px;
  max-height: 620px;
  overflow: hidden;
  background: #000;
}

.page-hero__bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.page-hero__inner{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 16px;
}

.page-hero__title{
  margin: 0;
  color: #fff;
  font-weight: 900;
  line-height: 1.1;
  max-width: 1100px;
  font-size: clamp(30px, 4vw, 56px);
  text-shadow: 0 12px 30px rgba(0,0,0,0.6);
}


/* ==============================
   INDUSTRY INTRO TEXT SECTION (UNCHANGED)
============================== */
.industry-intro{
  padding: 44px 16px;
}

.industry-intro__wrap{
  max-width: 980px;
  margin: 0 auto;
}

.industry-intro__wrap p{
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.85;
  color: #1b2a3a;
}

.industry-intro__wrap p:last-child{
  margin-bottom: 0;
}

@media (max-width: 600px){
  .industry-intro{
    padding: 34px 16px;
  }
  .industry-intro__wrap p{
    font-size: 15px;
    line-height: 1.75;
  }
}

/* ==============================
   INDUSTRIES - TABLE TYPE CARDS
============================== */

.industry-table-section{
  width: 100%;
  padding: 40px 0;
  background: #ffffff;
}

.industry-table-container{
  width: min(1180px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* CARD */
.industry-table-card{
  display: grid;
  grid-template-columns: 1fr 1px 340px;  /* left | divider | right */
  align-items: stretch;
  background: #ffffff;
  border: 1px solid #d9e3f2;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(10, 45, 90, 0.06);
}

/* LEFT */
.industry-table-left{
  padding: 22px 26px;
}

.industry-table-left h3{
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 800;
  color: #0b2b57;
}

.industry-table-left p{
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.6;
  color: #2b2b2b;
}

.industry-table-left p:last-child{
  margin-bottom: 0;
}

/* DIVIDER */
.industry-table-divider{
  width: 1px;
  background: #d9e3f2;
}

/* RIGHT (IMAGE BOX) */
.industry-table-right{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.industry-table-right img{
  width: 190px;          /* logo size type */
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: none;
}

/* Hover (optional subtle) */
.industry-table-card:hover{
  transform: translateY(-2px);
  transition: 0.25s ease;
  box-shadow: 0 10px 24px rgba(10, 45, 90, 0.10);
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 992px){
  .industry-table-card{
    grid-template-columns: 1fr; /* stack */
  }

  .industry-table-divider{
    display: none;
  }

  .industry-table-right{
    border-top: 1px solid #d9e3f2;
    padding: 16px;
  }

  .industry-table-right img{
    width: 160px;
  }
}

@media (max-width: 520px){
  .industry-table-left{
    padding: 18px 16px;
  }

  .industry-table-left h3{
    font-size: 19px;
  }

  .industry-table-left p{
    font-size: 14px;
  }

  .industry-table-right img{
    width: 140px;
  }
}


/* ==============================
   Let’s Support Your Industry (UNCHANGED - DO NOT TOUCH)
============================== */
.support-industry{
  padding: 42px 18px;
  background: transparent;
}

.support-wrap{
  max-width: 980px;
  margin: 0 auto;
}

.support-title{
  margin: 0 0 12px;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 900;
  line-height: 1.15;
  color: #0b1220;
  letter-spacing: -0.2px;
}

.support-text{
  margin: 0 0 16px;
  font-size: clamp(15px, 1.25vw, 16.5px);
  line-height: 1.8;
  color: #2a3345;
  max-width: 900px;
}

.support-cta{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: wrap;
}

.support-cta-text{
  margin: 0;
  font-size: clamp(15px, 1.25vw, 16.5px);
  line-height: 1.7;
  color: #0f172a;
}

.support-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  color: #fff;
  background: #0b5ed7;
  box-shadow: 0 10px 22px rgba(11, 94, 215, 0.22);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.support-btn:hover{
  background: #094fb7;
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(11, 94, 215, 0.26);
}

.support-btn:active{
  transform: translateY(0);
}

@media (max-width: 520px){
  .support-industry{ padding: 34px 14px; }
  .support-text{ margin-bottom: 14px; }
  .support-btn{ width: 100%; }
}


/* ==============================
   FOOTER (UNCHANGED)
============================== */
.cm-footer{
  background: radial-gradient(1200px 420px at 30% 10%, rgba(255,255,255,0.08), transparent 60%),
              linear-gradient(180deg, #0a2b45 0%, #071a2b 55%, #061423 100%);
  color: #eaf2ff;
  padding: 28px 16px 18px;
}

.cm-footer__wrap{
  max-width: 1250px;
  margin: 0 auto;
}

.cm-footer__cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 16px;
}

.cm-card{
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  min-height: 146px;
}

.cm-card__title{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .2px;
}

.cm-card__text{
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(234,242,255,0.88);
}

.cm-card__links{
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.cm-link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
}

.cm-link:hover{ text-decoration: underline; }

.cm-ico{
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
}

.cm-footer__bar{
  margin: 10px 0 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cm-bar__label{
  font-size: 12px;
  letter-spacing: .12em;
  font-weight: 900;
  color: rgba(234,242,255,0.78);
  margin-bottom: 6px;
}

.cm-bar__value{
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
}

.cm-bar__value a{
  color: #ffffff;
  text-decoration: none;
}

.cm-bar__value a:hover{ text-decoration: underline; }

.cm-bar__item--right{
  text-align: center;
  flex: 1;
}

.cm-inline{
  white-space: nowrap;
}

.cm-dot{
  display: inline-block;
  margin: 0 10px;
  opacity: .85;
}

.cm-footer__bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.cm-social{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cm-social__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: #eaf2ff;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  transition: transform .18s ease, background .18s ease;
}

.cm-social__btn:hover{
  background: rgba(255,255,255,0.10);
  transform: translateY(-1px);
}

.cm-copy{
  font-size: 13px;
  font-weight: 800;
  color: rgba(234,242,255,0.85);
  text-align: right;
}

@media (max-width: 980px){
  .cm-footer__cards{ grid-template-columns: 1fr; }
  .cm-card{ min-height: auto; }

  .cm-footer__bar{
    flex-direction: column;
    align-items: flex-start;
  }
  .cm-bar__item--right{
    text-align: left;
    width: 100%;
  }

  .cm-footer__bottom{
    flex-direction: column;
    align-items: flex-start;
  }
  .cm-copy{ text-align: left; }
}

@media (max-width: 520px){
  .cm-footer{ padding: 24px 12px 16px; }
  .cm-bar__value{ font-size: 16px; }
  .cm-social__btn{ width: 100%; }
}
