/* BASIC css start */
/* ============================================================
   회사소개 — 리뉴얼
   레퍼런스: 비대칭 레이아웃, 이미지 오버랩, 섹션별 강한 대비
============================================================ */

/* ── 기본 변수 ── */
:root {
  --ab-dark:   #111827;
  --ab-navy:   #1e3a5f;
  --ab-blue:   #bc2929;
  --ab-light:  #f4f6f9;
  --ab-white:  #ffffff;
  --ab-accent: #f63b3b;
  --ab-text:   #374151;
  --ab-muted:  #6b7280;
  --ab-radius: 14px;
  --ab-max:    1280px;
}

.ab { overflow: hidden; font-family: 'Pretendard', -apple-system, sans-serif; }

/* ── 공통 유틸 ── */
.ab-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--ab-muted);
  margin-bottom: 5px;
}
.ab-eyebrow--light { color: rgba(255,255,255,0.65); }

.ab-sec-tit {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  color: var(--ab-dark);
  line-height: 1.15;
 
}
.ab-sec-tit em { font-style: normal; color: var(--ab-blue); }
.ab-sec-tit--light { color: #fff; }
.ab-sec-tit--light em { color: #f68989; }

.ab-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ab-blue);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.ab-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.ab-hero__bg {
  position: absolute; inset: 0;
}
.ab-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.ab-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    120deg,
    rgba(10,20,40,0.82) 0%,
    rgba(10,20,40,0.55) 55%,
    rgba(10,20,40,0.15) 100%
  );
}
.ab-hero__inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--ab-max);
  margin: 0 auto;
  padding: 80px 40px 110px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.ab-hero__tit {
  font-size: clamp(38px, 5.5vw, 80px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.05;
  margin: 14px 0 20px;
  opacity: 0.8;
}
.ab-hero__tit em {font-style: normal;color: #f77878;}
.ab-hero__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 28px;
}
.ab-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #fff;
  color: var(--ab-dark);
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ab-hero__cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.ab-hero__badge-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}
.ab-hero__badge {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 16px 24px;
  text-align: center;
  color: #fff;
  min-width: 120px;
}
.ab-hero__badge strong {
  display: block;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}
.ab-hero__badge strong span { font-size: 20px; color: #93c5fd; }
.ab-hero__badge p { font-size: 12px; color: rgba(255,255,255,0.65); }

/* ══════════════════════════════════════
   INTRO — 비대칭 2열
══════════════════════════════════════ */
.ab-intro {
  display: grid;
  grid-template-columns: 1fr 480px;
  min-height: 520px;
  max-width: var(--ab-max);
  margin: 0 auto;
  padding: 100px 40px;
  gap: 70px;
  align-items: center;
}
.ab-intro__img-col { position: relative; }
.ab-intro__img-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--ab-radius);
  display: block;
}
.ab-intro__img-sub-wrap {
  position: absolute;
  bottom: -30px; right: -30px;
  display: flex;
  gap: 12px;
  align-items: flex-end;
}
.ab-intro__img-sub-wrap img {
  width: 160px;
  height: 130px;
  object-fit: cover;
  border-radius: 10px;
  border: 4px solid #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.ab-intro__stat-box {
  background: var(--ab-navy);
  color: #fff;
  border-radius: 10px;
  padding: 18px 20px;
  text-align: center;
  min-width: 100px;
}
.ab-intro__stat-box strong {
  display: block;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}
.ab-intro__stat-box strong span { font-size: 18px; color: #93c5fd; }
.ab-intro__stat-box p { font-size: 11px; color: rgba(255,255,255,0.65); }

.ab-intro__txt-col { padding-bottom: 30px; }
.ab-intro__txt-col p {
  font-size: 15px;
  color: var(--ab-text);
  line-height: 1.8;
  margin-bottom: 28px;
}
.ab-intro__points {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ab-intro__points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ab-dark);
}

/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.ab-stats {
  background: var(--ab-dark);
  padding: 52px 40px;
}
.ab-stats__inner {
  max-width: var(--ab-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  text-align: center;
  gap: 0;
}
.ab-stats__item strong {
  display: block;
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.ab-stats__item strong em {
  font-style: normal;
  font-size: 28px;
  color: #60a5fa;
}
.ab-stats__item p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.ab-stats__divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.12);
  margin: 0 32px;
}

/* ══════════════════════════════════════
   BRANDS — 다크 배경
══════════════════════════════════════ */
.ab-brands {
  background: #0f172a;
  padding: 100px 40px;
}
.ab-brands__head {
  max-width: var(--ab-max);
  margin: 0 auto 56px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-end;
}
.ab-brands__head-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 400px;
  text-align: right;
}
.ab-brands__grid {
  max-width: var(--ab-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.ab-brand-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px 16px 15px;
  text-align: center;
  position: relative;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.ab-brand-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}
.ab-brand-card--main {
  background: rgba(45,107,228,0.12);
  border-color: rgba(45,107,228,0.4);
  grid-column: span 1;
}
.ab-brand-card--main:hover {
  background: rgba(45,107,228,0.2);
}
.ab-brand-card__badge {
  position: absolute;
  top: -1px; right: -1px;
  background: var(--ab-blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 0 12px 0 8px;
}
.ab-brand-card img {
  max-width: 70%; max-height: 40px;
  object-fit: contain;
  display: block;
  margin: 10px auto 10px;
}
.ab-brand-card__name {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 4px;
}
.ab-brand-card__desc {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* ══════════════════════════════════════
   REPAIR — 다크 + 이미지 오른쪽
══════════════════════════════════════ */
.ab-repair {
  background: var(--ab-navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  overflow: hidden;
}
.ab-repair__left {
  padding: 80px 60px 80px 80px;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ab-repair__lead {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  border-left: 3px solid #fa6060;
  padding-left: 16px;
  margin-bottom: 36px;
}
.ab-repair__services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ab-repair__svc {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px 14px;
}
.ab-repair__svc span { font-size: 18px; }
.ab-repair__right {
  position: relative;
  overflow: hidden;
}
.ab-repair__right > img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.ab-repair__brands-box {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(10,20,40,0.88);
  backdrop-filter: blur(6px);
  padding: 20px 24px;
}
.ab-repair__brands-tit {
  font-size: 12px;
  font-weight: 700;
  color: #fa6060;
  margin-bottom: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.ab-repair__brands-list {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  word-break: keep-all;
}
.ab-repair__brands-note {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
}

/* ══════════════════════════════════════
   PRODUCTS
══════════════════════════════════════ */
.ab-products {
  background: var(--ab-light);
  padding: 100px 40px;
}
.ab-products__inner { max-width: var(--ab-max); margin: 0 auto; }
.ab-products__head {
  margin-bottom: 48px;
}
.ab-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ab-prod-card {
  background: #fff;
  border-radius: var(--ab-radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}
.ab-prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.ab-prod-card__img { position: relative; overflow: hidden; }
.ab-prod-card__img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}
.ab-prod-card:hover .ab-prod-card__img img { transform: scale(1.05); }
.ab-prod-card__num {
  position: absolute;
  bottom: 12px; left: 16px;
  font-size: 48px;
  font-weight: 900;
  color: rgba(255,255,255,0.2);
  line-height: 1;
  pointer-events: none;
}
.ab-prod-card__txt { padding: 20px 22px 26px; }
.ab-prod-card__ico { font-size: 24px; display: block; margin-bottom: 8px; }
.ab-prod-card__txt h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ab-dark);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.ab-prod-card__txt p {
  font-size: 13px;
  color: var(--ab-muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════
   CTA — 전면 이미지 + 텍스트 오버랩
══════════════════════════════════════ */
.ab-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.ab-cta__img { overflow: hidden; position: relative; }
.ab-cta__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.ab-cta__img:hover img { transform: scale(1.03); }
.ab-cta__txt {
  background: var(--ab-dark);
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ab-cta__txt h2 {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.ab-cta__txt p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 36px;
}
.ab-cta__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.ab-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.ab-cta__btn--white { background: #fff; color: var(--ab-dark); }
.ab-cta__btn--white:hover { background: #e8f0ff; }
.ab-cta__btn--outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.4); }
.ab-cta__btn--outline:hover { background: rgba(255,255,255,0.08); }

/* ══════════════════════════════════════
   페이드업 공통
══════════════════════════════════════ */
.ab-fade { opacity: 0; transform: translateY(26px); transition: opacity 0.55s ease, transform 0.55s ease; }
.ab-fade.is-on { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   태블릿 (768~1024)
══════════════════════════════════════ */
@media (min-width: 768px) and (max-width: 1024px) {
  .ab-hero__inner { padding: 60px 24px; flex-direction: column; align-items: flex-start; }
  .ab-hero__badge-wrap { flex-direction: row; }
  .ab-intro { grid-template-columns: 1fr; gap: 60px; padding: 70px 24px; }
  .ab-intro__img-sub-wrap { right: 0; bottom: -20px; }
  .ab-stats__inner { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .ab-stats__divider { display: none; }
  .ab-brands { padding: 70px 24px; }
  .ab-brands__head { flex-direction: column; align-items: flex-start; }
  .ab-brands__head-desc { text-align: left; }
  .ab-brands__grid { grid-template-columns: repeat(3,1fr); }
  .ab-repair { grid-template-columns: 1fr; }
  .ab-repair__left { padding: 60px 24px; max-width: 100%; }
  .ab-repair__right { height: 360px; }
  .ab-products { padding: 70px 24px; }
  .ab-products__grid { grid-template-columns: 1fr; gap: 16px; }
  .ab-prod-card__img img { height: 200px; }
  .ab-cta { grid-template-columns: 1fr; }
  .ab-cta__img { height: 300px; }
  .ab-cta__txt { padding: 50px 24px; }
}

/* ══════════════════════════════════════
   모바일 (≤767)
══════════════════════════════════════ */
@media (max-width: 767px) {
  .ab-hero { min-height: 520px; }
  .ab-hero__inner { padding: 50px 16px; flex-direction: column; align-items: flex-start; }
  .ab-hero__tit { font-size: 38px; letter-spacing: -1px; }
  .ab-hero__badge-wrap { flex-direction: row; }
  .ab-hero__badge { min-width: 90px; }
  .ab-hero__badge strong { font-size: 26px; }
  .ab-intro { grid-template-columns: 1fr; gap: 50px; padding: 60px 16px; }
  .ab-intro__img-col { padding-bottom: 50px; }
  .ab-intro__img-main { height: 260px; }
  .ab-intro__img-sub-wrap { right: 0; bottom: -20px; }
  .ab-intro__img-sub-wrap img { width: 120px; height: 100px; }
  .ab-stats { padding: 36px 16px; }
  .ab-stats__inner { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .ab-stats__divider { display: none; }
  .ab-stats__item strong { font-size: 36px; }
  .ab-brands { padding: 60px 16px; }
  .ab-brands__head { flex-direction: column; gap: 16px; }
  .ab-brands__head-desc { text-align: left; }
  .ab-brands__grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .ab-repair { grid-template-columns: 1fr; }
  .ab-repair__left { padding: 50px 16px; max-width: 100%; }
  .ab-repair__services { grid-template-columns: 1fr 1fr; gap: 8px; }
  .ab-repair__right { height: 320px; }
  .ab-products { padding: 60px 16px; }
  .ab-products__grid { grid-template-columns: 1fr; gap: 14px; }
  .ab-prod-card__img img { height: 180px; }
  .ab-cta { grid-template-columns: 1fr; }
  .ab-cta__img { height: 240px; }
  .ab-cta__txt { padding: 44px 16px; }
  .ab-cta__txt h2 { font-size: 28px; }
  .ab-cta__btn { padding: 11px 20px; font-size: 13px; }
}

/* ── Font Awesome 아이콘 공통 보정 ── */
.ab-ico-point {
  font-size: 14px;
  color: var(--ab-blue);
  flex-shrink: 0;
  margin-top: 3px;
  width: 16px;
  text-align: center;
}
.ab-intro__points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.ab-repair__svc i,
.ab-repair__brands-tit i,
.ab-repair__brands-note i {
  flex-shrink: 0;
  width: 18px;
  text-align: center;
  color: #fa6060;
}
.ab-prod-card__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--ab-light);
  border-radius: 10px;
  margin-bottom: 10px;
}
.ab-prod-card__ico i {
  font-size: 20px;
  color: var(--ab-blue);
}
.ab-brand-card__badge i { font-size: 9px; margin-right: 2px; }
.ab-hero__cta i,
.ab-cta__btn i { font-size: 13px; }
/* BASIC css end */

