.empra-section {
  margin-top: 60px;
}
.empra-section + .empra-section {
  margin-top: 80px;
}

.empra-section-title {
  display: block;
  margin-bottom: 20px;
  font-size: 2em;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
  word-break: keep-all;
}
.empra-section-title span {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.9em;
  color: #45a6e6;
  font-weight: 600;
}

.empra-product-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-top: 50px;
}
.empra-product-hero .hero-visual {
  flex: 1 1 320px;
  max-width: 520px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e5e5;
}
.empra-product-hero .hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}
.empra-product-hero .hero-summary {
  flex: 1 1 320px;
}
.empra-product-hero .hero-summary h2 {
  font-size: 2.2em;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  line-height: 1.3;
}
.empra-product-hero .hero-summary p {
  font-size: 1.05em;
  color: #333;
  line-height: 1.6;
  word-break: keep-all;
  margin-bottom: 20px;
}
.empra-product-hero .empra-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
}
.empra-product-hero .empra-meta span {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #f5f7fb;
  font-size: 0.95em;
  color: #00529b;
  font-weight: 600;
}

.empra-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}
.empra-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  border-radius: 999px;
  font-size: 1.25em;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: 0.3s all ease;
}
@media (max-width: 768px) {
  .empra-cta {
    flex-wrap: nowrap;
    gap: 10px;
  }
  .empra-cta a {
    padding: 18px 20px;
    font-size: 1.1em;
    flex: 1 1 auto;
  }
}
.empra-cta a.empra-btn-primary {
  background: #dc2626;
  color: #fff;
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}
.empra-cta a.empra-btn-primary:hover {
  background: #b91c1c;
}
.empra-cta a.empra-btn-outline {
  background: #10b981;
  border: 1px solid #10b981;
  color: #fff;
}
.empra-cta a.empra-btn-outline:hover {
  background: #059669;
  border-color: #059669;
}

.empra-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}
.empra-card {
  flex: 1 1 48%;
  margin-bottom: 2%;
  padding: 35px 30px;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.06);
  transition: 0.4s all ease;
}
.empra-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.1);
}
.empra-card h3 {
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #00529b;
}
.empra-card ul {
  margin: 0;
  padding-left: 18px;
  font-size: 1em;
  color: #333;
  line-height: 1.6;
  word-break: keep-all;
}
.empra-card ul li + li {
  margin-top: 8px;
}

.empra-table-wrap {
  min-width: 640px;
}
.empra-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.empra-table thead {
  background: #00529b;
  color: #fff;
}
.empra-table th,
.empra-table td {
  padding: 14px 18px;
  font-size: 0.95em;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
}
.empra-table tbody tr:nth-child(even) {
  background: #f8fbff;
}
.empra-table caption {
  caption-side: top;
  text-align: left;
  font-size: 1.05em;
  font-weight: 600;
  padding: 0 0 12px 0;
  color: #222;
}

.empra-highlight-box {
  padding: 30px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f3f9ff 0%, #fff 70%);
  border: 1px solid #dbe8f7;
  box-shadow: 0 15px 35px rgba(69, 166, 230, 0.15);
}
.empra-highlight-box h3 {
  font-size: 1.25em;
  font-weight: 700;
  color: #00529b;
  margin-bottom: 12px;
}
.empra-highlight-box p {
  font-size: 1em;
  color: #333;
  line-height: 1.6;
  word-break: keep-all;
}

.empra-feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 25px;
}
.empra-feature {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid #e5e5e5;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}
.empra-feature strong {
  display: block;
  font-size: 1.1em;
  color: #00529b;
  margin-bottom: 10px;
}
.empra-feature p {
  font-size: 0.95em;
  color: #444;
  line-height: 1.6;
  word-break: keep-all;
}

.empra-step-list {
  counter-reset: empra-step;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 25px;
}
.empra-step {
  position: relative;
  padding: 22px 22px 22px 60px;
  border-radius: 16px;
  border: 1px solid #e5e5e5;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}
.empra-step:before {
  counter-increment: empra-step;
  content: counter(empra-step, decimal-leading-zero);
  position: absolute;
  left: 22px;
  top: 22px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #00529b;
  color: #fff;
  font-weight: 700;
  font-size: 0.85em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.empra-step h4 {
  font-size: 1.1em;
  font-weight: 700;
  color: #00529b;
  margin-bottom: 8px;
}
.empra-step p {
  font-size: 0.95em;
  color: #333;
  line-height: 1.6;
  word-break: keep-all;
}

.empra-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: #eef5ff;
  color: #00529b;
  font-weight: 600;
  font-size: 0.85em;
}
.empra-badge-green {
  background: #10b981;
  color: #fff;
  text-decoration: none;
  transition: 0.3s all ease;
}
.empra-badge-green:hover {
  background: #059669;
  color: #fff;
  text-decoration: none;
}

.empra-two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 25px;
}
.empra-two-column .col {
  flex: 1 1 320px;
}

.empra-divider {
  margin: 60px 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(0, 82, 155, 0) 0%,
    rgba(0, 82, 155, 0.35) 50%,
    rgba(0, 82, 155, 0) 100%
  );
}

.biz-feature {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 35px;
}
.biz-feature-card {
  flex: 1 1 260px;
  padding: 34px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  color: #1f2933;
  background: #eef6f1;
  border: 1px solid rgba(121, 150, 138, 0.35);
  box-shadow: 0 18px 36px rgba(54, 79, 70, 0.12);
  transition: 0.35s ease;
}
.biz-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 48px rgba(54, 79, 70, 0.16);
}
.biz-feature-card h3 {
  font-size: 1.45em;
  font-weight: 700;
  margin-bottom: 18px;
  color: #1a2d23;
  position: relative;
}
.biz-feature-card h3:after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  background: #54b28a;
  margin-top: 12px;
  border-radius: 999px;
}
.biz-feature-card p {
  font-size: 1em;
  line-height: 1.65;
  color: #33423c;
  margin-bottom: 20px;
}
.biz-feature-list {
  margin: 0;
  padding-left: 0;
  font-size: 0.97em;
  line-height: 1.7;
  color: #3c4a44;
  list-style: none;
}
.biz-feature-list li {
  position: relative;
  padding-left: 18px;
}
.biz-feature-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.65;
  font-size: 1.1em;
  color: #54b28a;
}
.biz-feature-list li + li {
  margin-top: 10px;
}
.biz-feature-card.bg-charcoal {
  background: linear-gradient(135deg, #edf7ef 0%, #dfece4 100%);
}
.biz-feature-card.bg-slate {
  background: linear-gradient(135deg, #eef6f8 0%, #dbe6ec 100%);
}
.biz-feature-card.bg-stone {
  background: linear-gradient(135deg, #f2f3f5 0%, #e0e3e6 100%);
}
.biz-feature-card.bg-ash {
  background: linear-gradient(135deg, #f3f6f1 0%, #e1e7de 100%);
}
.biz-feature-card.bg-silver {
  background: linear-gradient(135deg, #f4f5f7 0%, #e4e6ea 100%);
}
.biz-feature-card.bg-graphite {
  background: linear-gradient(135deg, #f1f6f7 0%, #dce8ec 100%);
}

.biz-empra-vision {
  width: 100%;
  margin-top: 60px;
}
.biz-empra-vision:after {
  content: "";
  display: block;
  clear: both;
}
.biz-empra-vision .tit-box {
  position: relative;
  width: 100%;
  max-width: 80%;
  margin: 25px auto 0;
  padding: 40px 15px;
  background: #fff;
  border: 1px solid #eee;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}
.biz-empra-vision .tit-box:before {
  z-index: 1;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-left: 3px solid #333;
  border-top: 3px solid #333;
}
.biz-empra-vision .tit-box:after {
  z-index: 1;
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  border-right: 3px solid #333;
  border-bottom: 3px solid #333;
}
.biz-empra-vision .tit-box .tit {
  width: 22%;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  margin-right: 2%;
  overflow: hidden;
}
.biz-empra-vision .tit-box .tit span {
  display: inline;
  vertical-align: middle;
  font-size: 2em;
  color: #222;
  line-height: 1.2;
  font-weight: 700;
}
.biz-empra-vision .tit-box dl {
  width: 75%;
  display: inline-block;
  vertical-align: middle;
}
.biz-empra-vision .tit-box dl dd {
  position: relative;
  margin-bottom: 5px;
  padding-left: 18px;
  font-size: 1.1em;
  color: #222;
  line-height: 1.6;
  word-break: keep-all;
}
.biz-empra-vision .tit-box dl dd:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  background: #45a6e6;
  border-radius: 50%;
}
.biz-empra-vision .tit-box dl dd:last-child {
  margin-bottom: 0;
}

.company7-1.process-grid {
  text-align: left;
}
.company7-1.process-grid h2.tit {
  display: none;
}
.company7-1.process-grid ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 30px;
  padding: 0;
}
.company7-1.process-grid ul:before,
.company7-1.process-grid ul li:before,
.company7-1.process-grid ul li:after {
  display: none;
}
.company7-1.process-grid ul li {
  flex: 1 1 240px;
  margin: 0;
  padding: 38px 30px;
  border-radius: 22px;
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.16);
  position: relative;
  text-align: left;
}
.company7-1.process-grid ul li.gap_icons {
  display: none;
}
.company7-1.process-grid ul li .txts {
  text-align: left;
}
.company7-1.process-grid ul li .txts .step-label {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  font-size: 0.8em;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
}
.company7-1.process-grid ul li .txts i {
  display: block;
  margin-bottom: 18px;
  font-size: 2.2em;
  color: #fff;
}
.company7-1.process-grid ul li .txts strong {
  margin: 0 0 14px;
  font-size: 1.35em;
  line-height: 1.35;
  color: #fff;
}
.company7-1.process-grid ul li .txts p {
  font-size: 0.98em;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  word-break: keep-all;
}
.company7-1.process-grid ul li.bg1 {
  background: linear-gradient(135deg, #45a6e6 0%, #1f6edc 100%);
}
.company7-1.process-grid ul li.bg2 {
  background: linear-gradient(135deg, #00529b 0%, #1e3c9f 100%);
}
.company7-1.process-grid ul li.bg3 {
  background: linear-gradient(135deg, #001e5d 0%, #163c9c 100%);
}
.company7-1.process-grid ul li.bg4 {
  background: linear-gradient(135deg, #444 0%, #1f1f1f 100%);
}
.company7-1.process-grid ul li.bg5 {
  background: linear-gradient(135deg, #ff6ad5 0%, #b83af3 100%);
}
.company7-1.process-grid ul li.bg6 {
  background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
}
.company7-1.process-grid ul li.bg7 {
  background: linear-gradient(135deg, #00b09b 0%, #96c93d 100%);
}

.tech-feature {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  width: 100%;
  margin-top: 30px;
}
.tech-feature-card {
  position: relative;
  flex: 1 1 48%;
  padding: 40px;
  border-radius: 28px;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(0, 82, 155, 0.15);
}
.tech-feature-card.tech-feature-construction {
  background: linear-gradient(135deg, #0d5ac0 0%, #1c8cdc 100%);
}
.tech-feature-card.tech-feature-research {
  background: linear-gradient(135deg, #182447 0%, #3e4c84 100%);
}
.tech-feature-card.tech-feature-emerald {
  background: linear-gradient(135deg, #0a6a63 0%, #16a085 100%);
}
.tech-feature-card.tech-feature-amber {
  background: linear-gradient(135deg, #c06d00 0%, #ff9f1a 100%);
}
.tech-feature-card.tech-feature-slate {
  background: linear-gradient(135deg, #2b3a55 0%, #4c5c7c 100%);
}
.tech-feature-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.tech-feature-header span {
  font-size: 1.8em;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #57ff45;
}
.tech-feature-header em {
  font-style: normal;
  font-size: 0.9em;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
  opacity: 1;
}
.tech-feature-card p {
  font-size: 1.05em;
  line-height: 1.7;
  word-break: keep-all;
  color: rgba(255, 255, 255, 0.9);
}
.tech-feature-list {
  margin: 22px 0 0;
  padding-left: 20px;
  list-style: disc;
}
.tech-feature-list li {
  margin-bottom: 10px;
  font-size: 1em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}
.tech-feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}
.tech-feature-meta .meta-item {
  flex: 1 1 220px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.tech-feature-meta .meta-item * {
  color: #fff;
}
.tech-feature-meta .meta-item strong {
  display: block;
  font-size: 1.1em;
  margin-bottom: 10px;
}
.tech-feature-meta .meta-item ul {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
  line-height: 1.6;
}
.tech-feature-meta .meta-item ul li {
  margin-bottom: 6px;
}
.tech-sublist {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
  color: #fff;
  line-height: 1.6;
}
.tech-sublist li {
  margin-bottom: 6px;
}

@media screen and (max-width: 992px) {
  .tech-feature {
    gap: 25px;
  }
  .tech-feature-card {
    flex: 1 1 100%;
  }
}

@media screen and (max-width: 640px) {
  .tech-feature-card {
    padding: 32px;
  }
}

@media screen and (max-width: 768px) {
  .empra-product-hero {
    gap: 25px;
  }
  .empra-card {
    flex: 1 1 100%;
  }
  .empra-section-title {
    font-size: 1.8em;
  }
  .empra-two-column {
    gap: 20px;
  }
  .biz-feature {
    gap: 20px;
  }
  .biz-feature-card {
    flex: 1 1 100%;
    padding: 34px;
  }
  .biz-empra-vision .tit-box {
    max-width: 100%;
    padding: 32px 20px;
  }
  .biz-empra-vision .tit-box .tit {
    width: 100%;
    margin-right: 0;
    margin-bottom: 18px;
  }
  .biz-empra-vision .tit-box .tit span {
    font-size: 1.6em;
  }
  .biz-empra-vision .tit-box dl {
    width: 100%;
  }
  .company7-1.process-grid ul {
    gap: 18px;
  }
  .company7-1.process-grid ul li {
    flex: 1 1 100%;
    padding: 32px 26px;
  }
}

.company7-2 {
  width: 100%;
  margin-top: 50px;
}
.company7-2:after {
  content: "";
  display: block;
  clear: both;
}
.company7-2 .tit-box {
  position: relative;
  width: 100%;
  max-width: 80%;
  margin: 25px auto 0;
  padding: 40px 15px;
  background: #fff;
  border: 1px solid #eee;
  overflow: hidden;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.06);
  border-radius: 0;
}
.company7-2 .tit-box:before {
  z-index: 1;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-left: 3px solid #333;
  border-top: 3px solid #333;
}
.company7-2 .tit-box:after {
  z-index: 1;
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  border-right: 3px solid #333;
  border-bottom: 3px solid #333;
}
.company7-2 .tit-box .tit {
  width: 22%;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  margin-right: 2%;
  overflow: hidden;
}
.company7-2 .tit-box .tit span {
  display: inline;
  vertical-align: middle;
  font-size: 2em;
  color: #222;
  line-height: 1.2;
  font-weight: 700;
}
.company7-2 .tit-box dl {
  width: 75%;
  display: inline-block;
  vertical-align: middle;
}
.company7-2 .tit-box dl dd {
  position: relative;
  margin-bottom: 8px;
  padding-left: 18px;
  font-size: 1.05em;
  color: #222;
  line-height: 1.7;
  word-break: keep-all;
}
.company7-2 .tit-box dl dd:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background: #45a6e6;
  border-radius: 50%;
}
.company7-2 .tit-box dl dd:last-child {
  margin-bottom: 0;
}
.company7-2 .packaging-gallery {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}
.company7-2 .packaging-gallery figure {
  margin: 0;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.company7-2 .packaging-gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

@media screen and (max-width: 992px) {
  .company7-2 .tit-box {
    max-width: 100%;
  }
  .company7-2 .tit-box .tit {
    width: 100%;
    margin-right: 0;
    margin-bottom: 18px;
  }
  .company7-2 .tit-box dl {
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .company7-2 .packaging-gallery {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
  }
}

.empra-packaging {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}
.empra-packaging .packaging-header h3 {
  font-size: 1.6em;
  font-weight: 700;
  color: #0b2a4a;
  margin-bottom: 10px;
}
.empra-packaging .packaging-header p {
  font-size: 1.05em;
  line-height: 1.7;
  color: #3a3a3a;
  word-break: keep-all;
}
.empra-packaging .packaging-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}
.empra-packaging .packaging-gallery figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
  background: #fff;
}
.empra-packaging .packaging-gallery img {
  display: block;
  width: 100%;
  height: auto;
}

.empra-table-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.empra-table-section .table-header h3 {
  font-size: 1.4em;
  font-weight: 700;
  color: #0b2a4a;
}
.empra-table-section .table-header p {
  font-size: 0.98em;
  color: #4a4a4a;
  line-height: 1.6;
  word-break: keep-all;
}
.empra-table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
  background: #fff;
}
.empra-table-scroll::-webkit-scrollbar {
  height: 8px;
}
.empra-table-scroll::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}
.empra-table-scroll table {
  min-width: 640px;
}

@media screen and (max-width: 768px) {
  .empra-packaging {
    margin-top: 30px;
  }
  .empra-packaging .packaging-gallery {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
  }
}
