.ledi-renewal {
  --ink: #142231;
  --muted: #687887;
  --line: #dfe6ec;
  --soft: #f5f8fa;
  --brand: #00aebd;
  --brand-dark: #008b98;
  --navy: #405364;
  --white: #fff;
  color: var(--ink);
  font-family: "Noto Sans KR", "Poppins", Arial, sans-serif;
  letter-spacing: 0;
  overflow: hidden;
}

.ledi-renewal * {
  box-sizing: border-box;
}

.ledi-renewal a {
  color: inherit;
  text-decoration: none;
}

.lr-shell {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.lr-section {
  padding: 92px 0;
}

.lr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.lr-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--brand);
}

.lr-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.lr-title {
  margin: 10px 0 0;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.18;
  color: var(--ink);
}

.lr-desc {
  margin: 12px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.lr-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  height: 44px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  background: var(--brand);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.lr-button:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.lr-button.is-light {
  background: var(--white);
  color: var(--ink);
}

.lr-button.is-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}

.lr-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 120px 0 76px;
  background: var(--navy);
  color: var(--white);
}

.lr-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18,33,46,.92) 0%, rgba(18,33,46,.7) 42%, rgba(18,33,46,.18) 100%),
    url("/skin11/asset/img/ledi/bg_buy.png") center/cover no-repeat;
}

.lr-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 112px;
  background: linear-gradient(0deg, rgba(245,248,250,1) 0%, rgba(245,248,250,0) 100%);
}

.lr-hero .lr-shell {
  position: relative;
  z-index: 1;
}

.lr-hero-copy {
  max-width: 720px;
}

.lr-hero-kicker {
  margin-bottom: 18px;
  color: #9af2f8;
  font-size: 15px;
  font-weight: 900;
}

.lr-hero h1 {
  margin: 0;
  font-size: 62px;
  font-weight: 900;
  line-height: 1.08;
}

.lr-hero h1 span {
  color: #54e4ed;
}

.lr-hero p {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.75;
}

.lr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.lr-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(980px, 100%);
  margin-top: 72px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.22);
}

.lr-stat {
  padding: 24px 24px 22px;
  background: rgba(14,31,45,.62);
}

.lr-stat strong {
  display: block;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.lr-stat span {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.5;
}

.lr-product {
  background: var(--soft);
}

.lr-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.lr-product-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  background: #d9e2e8;
  border-radius: 2px;
}

.lr-product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.lr-product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,28,42,.08), rgba(10,28,42,.82));
}

.lr-product-card:hover img {
  transform: scale(1.04);
}

.lr-product-card .txt {
  position: relative;
  z-index: 1;
  padding: 26px;
  color: var(--white);
}

.lr-product-card b {
  display: block;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.28;
}

.lr-product-card span {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.65;
}

.lr-solutions {
  background: var(--white);
}

.lr-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.lr-solution-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.lr-solution-card:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(40,66,84,.12);
}

.lr-solution-card .num {
  color: var(--brand);
  font-size: 14px;
  font-weight: 900;
}

.lr-solution-card b {
  display: block;
  margin-top: 28px;
  font-size: 23px;
  font-weight: 900;
}

.lr-solution-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.lr-showcase {
  background: #edf3f6;
}

.lr-showcase-layout {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 34px;
  align-items: stretch;
}

.lr-showcase-media {
  min-height: 460px;
  background: url("/skin11/asset/img/ledi/banner_exhibition.png") center/cover no-repeat;
}

.lr-showcase-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px;
  background: var(--navy);
  color: var(--white);
}

.lr-showcase-panel .lr-eyebrow {
  color: #79edf4;
}

.lr-showcase-panel h2 {
  margin: 12px 0 0;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.22;
}

.lr-showcase-panel p {
  margin: 18px 0 0;
  color: rgba(255,255,255,.76);
  font-size: 16px;
  line-height: 1.75;
}

.lr-service {
  background: var(--white);
}

.lr-service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.lr-service-item {
  min-height: 260px;
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.lr-service-item .icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e9fbfd;
  color: var(--brand-dark);
  font-size: 24px;
  font-weight: 900;
}

.lr-service-item b {
  display: block;
  margin-top: 30px;
  font-size: 21px;
  font-weight: 900;
}

.lr-service-item p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.lr-brand {
  position: relative;
  padding: 104px 0;
  background:
    linear-gradient(90deg, rgba(14,30,44,.9), rgba(14,30,44,.62)),
    url("/skin11/asset/img/ledi/bg_pinpai_history.png") center/cover no-repeat;
  color: var(--white);
}

.lr-brand-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.lr-brand h2 {
  margin: 12px 0 0;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.18;
}

.lr-brand p {
  margin: 18px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 16px;
  line-height: 1.78;
}

.lr-brand-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lr-brand-point {
  min-height: 150px;
  padding: 26px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
}

.lr-brand-point b {
  display: block;
  color: #7beaf2;
  font-size: 20px;
  font-weight: 900;
}

.lr-brand-point span {
  display: block;
  margin-top: 12px;
  color: rgba(255,255,255,.76);
  font-size: 14px;
  line-height: 1.65;
}

.lr-news {
  background: var(--soft);
}

.lr-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lr-news-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
}

.lr-news-card small {
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
}

.lr-news-card b {
  display: block;
  margin-top: 18px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
}

.lr-news-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.lr-cta {
  padding: 62px 0;
  background: var(--brand);
  color: var(--white);
}

.lr-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.lr-cta h2 {
  margin: 0;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.25;
}

.lr-cta p {
  margin: 10px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 16px;
  line-height: 1.7;
}

.lr-sub-hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  padding: 120px 0 72px;
  background: var(--navy);
  color: var(--white);
}

.lr-sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18,33,46,.9), rgba(18,33,46,.54)),
    url("/skin11/asset/img/ledi/bg_service.png") center/cover no-repeat;
}

.lr-sub-hero .lr-shell {
  position: relative;
  z-index: 1;
}

.lr-sub-hero h1 {
  margin: 12px 0 0;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.16;
}

.lr-sub-hero p {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 17px;
  line-height: 1.75;
}

.lr-industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.lr-industry-card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.lr-industry-card:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(40,66,84,.12);
}

.lr-industry-card b {
  display: block;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.35;
}

.lr-industry-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.lr-process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.lr-process-item {
  min-height: 220px;
  padding: 30px 26px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.lr-process-item::before {
  counter-increment: step;
  content: "0" counter(step);
  color: var(--brand);
  font-size: 15px;
  font-weight: 900;
}

.lr-process-item b {
  display: block;
  margin-top: 26px;
  font-size: 21px;
  font-weight: 900;
}

.lr-process-item p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .lr-hero {
    min-height: 700px;
  }

  .lr-hero h1 {
    font-size: 50px;
  }

  .lr-hero-stats,
  .lr-product-grid,
  .lr-service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lr-solution-grid,
  .lr-industry-grid,
  .lr-process,
  .lr-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lr-showcase-layout,
  .lr-brand-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .lr-shell {
    width: min(100% - 32px, 1200px);
  }

  .lr-section {
    padding: 64px 0;
  }

  .lr-heading {
    display: block;
  }

  .lr-title,
  .lr-showcase-panel h2,
  .lr-brand h2 {
    font-size: 30px;
  }

  .lr-desc {
    font-size: 15px;
  }

  .lr-hero {
    min-height: 660px;
    padding: 110px 0 46px;
  }

  .lr-hero h1 {
    font-size: 38px;
  }

  .lr-hero p {
    font-size: 16px;
  }

  .lr-hero-stats,
  .lr-product-grid,
  .lr-solution-grid,
  .lr-industry-grid,
  .lr-process,
  .lr-service-list,
  .lr-brand-points,
  .lr-news-grid {
    grid-template-columns: 1fr;
  }

  .lr-sub-hero {
    min-height: 360px;
    padding: 104px 0 54px;
  }

  .lr-sub-hero h1 {
    font-size: 34px;
  }

  .lr-sub-hero p {
    font-size: 16px;
  }

  .lr-stat {
    padding: 18px;
  }

  .lr-product-card {
    min-height: 300px;
  }

  .lr-showcase-media {
    min-height: 300px;
  }

  .lr-showcase-panel {
    padding: 32px 24px;
  }

  .lr-cta-box {
    display: block;
  }

  .lr-cta h2 {
    font-size: 28px;
  }

  .lr-cta .lr-button {
    margin-top: 22px;
  }
}


/* Ideal Korea solutions blog iframe */
.lr-blog-embed {
  background: linear-gradient(180deg, #f6f9fb 0%, #fff 100%);
}

.lr-blog-frame-wrap {
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid rgba(20, 55, 82, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(20, 55, 82, 0.08);
}

.lr-blog-frame-wrap iframe {
  display: block;
  width: 100%;
  min-height: 800px;
}

@media (max-width: 720px) {
  .lr-blog-frame-wrap {
    margin-top: 22px;
    border-radius: 0;
  }

  .lr-blog-frame-wrap iframe {
    min-height: 680px;
  }
}

/* Ideal Korea main floor1 product tabs */
.lr-floor1 {
  padding: 118px 0 86px;
  background: #fff;
}
.lr-floor1-heading { margin-bottom: 48px; }
.lr-floor1-tabs {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 44px;
  padding-bottom: 22px;
  border-bottom: 1px solid #405364;
  overflow-x: auto;
  scrollbar-width: none;
}
.lr-floor1-tabs::-webkit-scrollbar { display: none; }
.lr-floor1-tabs button {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: #405364;
  font-family: Poppins, 'Noto Sans KR', sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
  cursor: pointer;
  transition: color 0.24s ease;
}
.lr-floor1-tabs button.active { color: #00adbb; }
.lr-floor1-tabs i {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 3px;
  background: #00adbb;
  transition: transform 0.28s ease, width 0.28s ease;
}
.lr-floor1-panel { display: none; grid-template-columns: 300px minmax(0, 1fr); gap: 18px; }
.lr-floor1-panel.active { display: grid; }
.lr-floor1-lead,
.lr-floor1-grid a {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 8px;
  background: #f6f7f8;
  color: inherit;
  min-height: 0;
}
.lr-floor1-lead { height: 590px; background: #405364; }
.lr-floor1-lead img,
.lr-floor1-grid img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.35s ease; background: #f6f7f8; }
.lr-floor1-lead::after,
.lr-floor1-grid a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 26, 42, 0) 0%, rgba(7, 26, 42, 0.48) 100%);
  pointer-events: none;
}
.lr-floor1-lead:hover img,
.lr-floor1-grid a:hover img { transform: scale(1.04); }
.lr-floor1-lead span,
.lr-floor1-grid span {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.lr-floor1-lead b { color: #00adbb; font-size: 27px; line-height: 1.25; word-break: keep-all; }
.lr-floor1-lead em { color: rgba(255, 255, 255, 0.88); font-size: 15px; font-style: normal; line-height: 1.55; word-break: keep-all; }
.lr-floor1-lead small { margin-top: 18px; color: #fff; font-size: 14px; font-weight: 800; }
.lr-floor1-lead small::after,
.lr-floor1-grid b::after { content: '>'; display: inline-block; margin-left: 8px; color: #dc092b; }
.lr-floor1-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.lr-floor1-grid a { height: 286px; }
.lr-floor1-grid a.wide { grid-column: 1 / -1; }
.lr-floor1-grid b { color: #19344d; font-size: 19px; line-height: 1.25; word-break: keep-all; }
.lr-floor1-grid em { color: #405364; font-size: 14px; font-style: normal; line-height: 1.45; word-break: keep-all; }
@media (max-width: 980px) {
  .lr-floor1 { padding: 82px 0 66px; }
  .lr-floor1-panel,
  .lr-floor1-panel.active { grid-template-columns: 1fr; }
  .lr-floor1-lead { height: 430px; }
}
@media (max-width: 720px) {
  .lr-floor1 { padding: 64px 0 52px; }
  .lr-floor1-heading { margin-bottom: 28px; }
  .lr-floor1-tabs { justify-content: flex-start; gap: 22px; margin-bottom: 24px; padding-bottom: 16px; }
  .lr-floor1-tabs button { font-size: 15px; white-space: nowrap; }
  .lr-floor1-lead { height: 360px; }
  .lr-floor1-grid { grid-template-columns: 1fr; }
  .lr-floor1-grid a,
  .lr-floor1-grid a.wide { grid-column: auto; height: 230px; }
  .lr-floor1-lead span,
  .lr-floor1-grid span { left: 20px; right: 20px; bottom: 20px; }
  .lr-floor1-lead b { font-size: 24px; }
}


