
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
@import url('https://cdn.jsdelivr.net/gh/leetaewook/gmarket-sans-dynamic-subset/GmarketSans.css');

:root{
  --panel-w: 280px;
  --panel-w-mobile: 88vw;

  --dock-open-w: 360px;

  --bg: #05060a;
  --card: rgba(255,255,255,1);
  --text: #e9eef7;
  --muted: rgba(233,238,247,.75);
  --shadow: 0 12px 40px rgba(0,0,0,.35);
  --radius: 12px;
  --benefits-width: 860px;
}

*{box-sizing:border-box;}
html,body{height:100%;}
body {
  margin: 0;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow: hidden; /* fullPage 사용 시 */
  letter-spacing: -0.02em; /* Pretendard는 자간을 살짝 줄이면 더 예쁩니다 */
}
li{list-style: none;}
/*section2~7 카운트다운*/
.topCountdownBar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60; /* 메뉴(120)와 폼(105)보다 아래 */
  padding: 11px 16px;
  min-height: 44px;
  background: rgba(0,0,0,.55);
  /*border-bottom: 1px solid rgba(255,255,255,.10);*/
  backdrop-filter: blur(10px);

  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.topCountdownBar.is-show{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.topCountdownBar__inner{
  max-width: 1100px;
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 14px;
  color: rgba(255,255,255,.92);
}

.topCountdownBar__label{font-size: 16px; opacity:0.9; font-weight: 400; }
.topCountdownBar__time{font-weight: 600; letter-spacing: .5px;}
.topCountdownBar__time span{font-size: 18px;}
.topCountdownBar__time .sep{opacity:.8; margin: 0 6px;}
/* Backdrop */
.backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 80;
}
.backdrop.is-open{
  opacity: 1;
  pointer-events: auto;
}

/* ===== Left Menu Toggle (햄버거 ↔ X, 열리면 같이 밀려나감) ===== */
.gnbToggle{
  position: fixed;
  width: 44px;
  height: 44px;
  border: 0;
  cursor: pointer;
  z-index: 130;
  background: rgba(180,40,55,.95);
  box-shadow: var(--shadow);
  transition: transform .28s ease, background .2s ease;display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px; /* 막대기 사이 간격 */
  
}
.gnbToggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  border-radius: 999px;
}
/* 메뉴가 열렸을 때 (body.gnb-open) 애니메이션 */

/* 1. 첫 번째 막대기: 45도 회전하며 가운데로 내려옴 */
body.gnb-open .gnbToggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

/* 2. 두 번째 막대기: 투명하게 숨김 */
body.gnb-open .gnbToggle span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px); /* 왼쪽으로 살짝 밀리며 사라지는 효과 */
}

/* 3. 세 번째 막대기: -45도 회전하며 가운데로 올라옴 */
body.gnb-open .gnbToggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* 메뉴 열렸을 때: X로 변환 + 버튼이 패널 폭만큼 이동 */
body.gnb-open .gnbToggle{
  transform: translateX(var(--panel-w));
  background: rgba(180,40,55,.95);
}


/* ===== Panels (Left only now) ===== */
.panel{
  position: fixed;
  top: 0;
  bottom: 0;
  width: var(--panel-w);
  background: rgba(18,20,26,.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  z-index: 120;
  transition: transform .28s ease;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.panel--left{left:0; transform: translateX(-102%);}
.panel.is-open{transform: translateX(0);}

/* GNB */
.gnb__brand{
  padding: 24px; 
  display: block;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  padding-top: 32px;
}
.gnb__brandLink{
  display: flex;
  flex-direction: column;
  align-items: center;   /* ← 가로 가운데 정렬 */
  text-align: center;
}
.gnb__sub{font-size: 16px; opacity: .8; margin-top: 6px; text-align: center;}
.gnb__nav{display:flex; flex-direction:column;}
.gnb__link{
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 18px 12px;
  color: #fff;
  text-decoration: none;
}
.gnb__link:hover{background: rgba(255,255,255,.12)}

.gnb__link[href="#s1"] .gnb__icon{
  background: #ddd;
}
.gnb__link[href="#s2"] .gnb__icon{
  background: #E04343;
}
.gnb__link[href="#s3"] .gnb__icon{
  background: #436FE0;
}
.gnb__link[href="#s4"] .gnb__icon{
  background: #168D0C;
}
.gnb__link[href="#s5"] .gnb__icon{
  background: #D3840C;
}
.gnb__link[href="#s6"] .gnb__icon{
  background: #6543E0;
}
.gnb__link[href="#s7"] .gnb__icon{
  background: #0C718D;
}
.gnb__icon{
  flex: 0 0 6px;   /* 기존 32px → 8px */
  width: 6px;
  height: 32px;
  background: rgba(255,255,255,.35);
}
.gnb__txt{
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  gap: 4px;
}
.gnb__desc{
  font-size: 14px;
  color: rgba(255,255,255,.65);
}

.gnb__title{
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,.95);
}

/* ===== GNB Footer (Panel bottom-right) ===== */
.gnbFooter{
  margin-top: 60px;
  position: relative;
  bottom: 0;

  padding: 22px 20px;
  text-align: left;

  backdrop-filter: blur(10px);

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gnbFooter__call{
  color: rgba(255,255,255,.75);
  font-size: 16px;
  letter-spacing: -0.02em;
}

.gnbFooter__phone{
  color: #fff;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.gnbFooter__sns{
  display: flex;
  gap: 8px;
}

/* 36x36 원형 버튼 */
.gnbFooter__btn{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #333;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.gnbFooter__btn:first-child{ background: #133E5F; }
.gnbFooter__btn:hover{ background: #111; }

.gnbFooter__btn img{
  width: 20px;
  height: 20px;
  display: block;
}

/* ===== Right Form Dock ===== */
.formDock{
  position: fixed;
  top: 18px;
  right: 18px;

  width: fit-content; height: fit-content;

  border-radius: 16px;
  z-index: 105;
  overflow: visible;       /* ✅ pill 버튼이 잘리지 않게 */
  background: transparent; /* close 상태는 도크 배경 없음 */
  box-shadow: none;        /* shadow는 버튼에 줌 */

  transition: width .28s ease, height .28s ease, border-radius .28s ease, background .28s ease, box-shadow .28s ease;
  contain: layout paint;
}

/* close 상태: 펜+텍스트 pill 버튼 */
.formDock__toggle{
  position:relative;
  top: 0;
  right: 0;

  padding: 10px 28px 10px 20px;

  border: 0;
  cursor: pointer;
  color: #fff;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;

  /* ✅ 그라데이션(원하면 애니메이션) */
  background: linear-gradient(
    -45deg,
    #FB1526,
    #0E90F4,
    #34CCBA
  );
  background-size: 400% 400%;
  animation: colorChange 3s ease infinite;

  box-shadow: var(--shadow);
  z-index: 2;
  pointer-events: auto;

  white-space: nowrap;
  font-weight: 500;
}

/* 텍스트 */
.formDock__label{
  font-size: 18px;
  letter-spacing: -0.02em;
}
  .formDock__label{ display: none; }

  /* 버튼을 원형 아이콘 버튼처럼 */
  .formDock__toggle{
    padding: 0;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    justify-content: center;
  }

  /* pen 아이콘 사이즈를 버튼에 맞게 */
  .formDock__svg--pen{
    width: 28px;
    height: 28px;
  }
/* 아이콘: padding에 따라 자동 스케일 */
.formDock__icon{
  position: relative;
  flex: 0 0 auto;
}
.formDock__svg{
  width: 100%;
  height: 100%;
  display: block;
}

/* 기본 상태: pen 보임, x 숨김 */
.formDock__svg--pen{ width: 36px; height: 36px; }
.formDock__svg--x{ display: none; }

/* ===== open 상태 ===== */
body.form-open .formDock{
  width: var(--dock-open-w);
  height: min(78vh, 700px);
  border-radius: 16px;

  /* ✅ open 상태에서만 패널 배경/그림자 */
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow);

  overflow: hidden; /* ✅ 패널은 내부 스크롤/클리핑 필요 */
}

/* open 상태: X 단독 버튼, 배경 투명 유지 */
body.form-open .formDock__toggle{
  padding: 0;
  width: var(--dock-closed);
  height: var(--dock-closed);
  border-radius: 12px;

  background: transparent;
  animation: none;
  box-shadow: none;

  display: flex;

  position: absolute;
  top: 8px; right: 8px;
}

/* open 상태: 텍스트 숨김 */
body.form-open .formDock__label{ display: none; }

/* open 상태: x 보임, pen 숨김 */
body.form-open .formDock__svg--pen{ display: none; }
body.form-open .formDock__svg--x{ display: block; }

/* 그라데이션 움직임 */
@keyframes colorChange{
    0%{
        background-position: 0% 50%;
    }
    50%{
        background-position: 100% 50%;
    }
    100%{
        background-position: 0% 50%;
    }
}

/* 콘텐츠 */
.formDock__content{
  position:absolute;
  inset: 0;
  padding: 14px 14px 16px;
  /*padding-top: 70px; /* 버튼 영역 피해주기 */
  opacity: 0;
  /*transform: translateY(6px);*/
  transition: opacity .2s ease, transform .2s ease;
  -webkit-overflow-scrolling: touch;
  color: #111;
  z-index: 1;              /* ✅ 추가 */
  overflow: hidden; /* 열렸을 때만 스크롤 추가 */
}

/* 열렸을 때 */
body.form-open .formDock{
  width: var(--dock-open-w);
  height: min(78vh, 700px);
  border-radius: 16px;
}
body.form-open .formDock__content{
  opacity: 1;
  transform: translateY(0);
  overflow-y: auto;
  padding-top: 70px;
}

/* Form */
.form__title{margin: 0 0 14px; font-size: 18px}
.field{display:block; margin-bottom: 12px}
.field__label{display:block; font-size: 16px; opacity:.85; margin-bottom: 6px; font-weight: 600;}
.field__input{
  width:100%;
  height: 42px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.88);
  color:#111;
  outline: none;
}
.field__input:focus { border: 1px solid rgba(0,0,0,.4); }
.checks{display:flex; flex-direction:column; gap:10px; margin: 12px 0 14px}
.check{display:flex; gap:10px; font-size: 16px; opacity:.9}
.form__submit{
  width:100%;
  height: 48px;
  border:0;
  border-radius: 12px;
  background: #b12b34;
  color:#fff;
  font-weight: 500;
  cursor: pointer;
  font-size: 16px;
}

/* Decorations layer */
.decor-layer{
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 30;
}
.decor{position: absolute; /*max-width: 30vw;*/ height: auto;}
.decor--confettiL{left: 0vw; top: 12vh; width: 440px}
.decor--confettiR{right: 0vw; top: 22vh; width: 440px}
.decor--gift{left: 22vw; top: 42vh; width: 150px}
.decor--megaphone{right: 24vw; bottom: 4vh; width: 120px}

/* Section common */
.section{position: relative;}
.hero{
  background-image: url('../../img/2026_exco_promotion/hero.jpg');
  background-size: cover;        /* 화면 꽉 채우기 */
  background-position: center;   /* 중앙 정렬 */
  background-repeat: no-repeat;  /* 반복 제거 */
}
.hero__inner{
  height: 100vh;
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 84px 0 30px;
  display:flex;
  align-items:center;
  justify-content:center;
  position: relative;
}

.hero__content{text-align: center; width: 100%;}
.hero__logo{
  width: 54px; height: 54px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  font-weight: 700;
}
.hero__title{
  margin: 24px 10px 10px 10px;
  font-size: clamp(54px, 2.6vw, 64px);
  line-height: 1.2;
  font-family: 'Gmarket Sans'; 
}
.hero__meta{
  margin: 0 0 18px; 
  color: var(--muted); 
  font-size: 20px; 
  font-family: 'Gmarket Sans'; 
}

/* Countdown */
.countdown{
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,.5);
  border-radius: 0 0 12px 12px;
  padding: 24px 54px;
  backdrop-filter: blur(10px);
}
.countdown__title{font-size: 18px; opacity:1; margin-bottom: 8px; text-align: center; font-weight: 400;}
.countdown__grid{display:flex; align-items:center; justify-content:center; gap: 12px}
.cd{min-width: 64px; text-align: center;}
.cd__num{font-size: 40px; font-weight: 400; line-height: 1}
.cd__label{font-size: 14px; opacity:.5; margin-top: 4px; font-weight: 300;}
.cd__sep{opacity:.6; font-weight: 700; height: 40px;}

/* Benefits */
.benefitsWrap{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.benefits{
  width: 100%;
  max-width: var(--benefits-width, 860px);
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 18px;
}
.benefit{
  flex: 1; /* 추가: 두 카드가 동일한 비율로 가득 차도록 함 */
  width: min(520px, 46%);
  min-width: 0; /* flex 자식 요소의 오버플로우 방지 */
  background: var(--card);
  background: var(--card);
  color: #111;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: left;
  overflow: hidden;
}

/* 3번: 헤더 감싸서 배경 따로 */
.benefit__head{
  padding: 14px 16px 12px;
  background-image: url("../../img/2026_exco_promotion/benefit.png");
  border-bottom: 1px solid rgba(0,0,0,.06);
  text-align: center;
}
.benefit__kicker{font-size: 14px; color: #63569F;}
.benefit__title{margin: 6px 0 0; font-size: 24px}

.benefit__list{
  margin: 0;
  padding: 12px 16px 14px;
  list-style: none;
}
.benefit__item{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.benefit__item:last-child{border-bottom:0;}

/* 4번: 아이콘 슬롯 (이미지 넣거나 배경으로 채우면 됨) */
.benefit__iconSlot{
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
}
/* 혜택 항목: 왼쪽(라벨+문장) / 오른쪽(아이콘) */
.benefit__body{
  display: flex;
  flex-direction: column;
  font-weight: 500;
  gap: 2px;
  min-width: 0; /* 긴 문장 줄바꿈 안정 */
}

/* "혜택 1" 라벨 */
.benefit__badge{
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: 14px;
  font-weight: 400;
  color: #63569F;/*
  background: rgba(40,120,220,.10);
  border: 1px solid rgba(40,120,220,.18);
  border-radius: 999px;
  padding: 4px 8px;
  line-height: 1;*/
}

/* 기존 benefit__text가 span이었다면 div로 바꿨으니 블록 기준으로 안전하게 */
.benefit__text{
  font-size: 18px;
  color: rgba(0,0,0,.82);
  line-height: 1.35;
}

/* 나중에 아이콘 이미지로 채우는 예시(원하면) */
/*
.benefit__item[data-icon="layout"] .benefit__iconSlot{ background:url('./img/ic_layout.png') center/contain no-repeat; border:0; }
*/

.notice{
  width: 100%;
  max-width: var(--benefits-width, 860px);
  margin: 0 auto;
  padding: 10px 16px;
  font-size: 14px;
  color: rgba(255,255,255,.8);
  text-align: center;
  background: rgba(0,0,0,.8);
  border-radius: 12px;
}

/* ===== Section2 Background Fade Slider ===== */
.s2{background:#05060a;}
.bgSlider{
  position:absolute;
  inset:0;
  overflow:hidden;
}
.bgSlider__slide{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .7s ease;
  pointer-events: none; /* “슬라이드 레이어는 클릭 못 하게” 막기 */
}
.bgSlider__slide.is-active{opacity: 1;}
.bgSlider::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,1), rgba(0,0,0,.2));
  pointer-events:none;
}
.bgSlider__ui{
  position:absolute;
  right: 18px;
  bottom: 18px;
  display:flex;
  align-items:center;
  gap: 10px;
  z-index: 5;
}
.bgSlider__caption{
  font-size: 14px;
  color: rgba(233,238,247,.9);/*
  padding: 8px 10px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  backdrop-filter: blur(10px);*/
}
.bgSlider__controls{display:flex; gap: 4px;}
.bgSlider__btn{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  color:#fff;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}

.s2__content{
  position: relative;
  z-index: 3;
  height: 100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 0 16px;
}
.s2__title{margin:0; font-size: 34px}
.s2__sub{margin:10px 0 0; opacity:.75}

/* Placeholder sections */
.placeholder{background:#0b0f1c}
.ph{height:100vh; display:flex; align-items:center; justify-content:center; opacity:.6}

/* 768px 이하: 패널 88vw + 혜택 박스 세로 + 도크 폭 88vw */
@media (max-width: 768px){
  .panel{width: var(--panel-w-mobile);}
  body.gnb-open .gnbToggle{ transform: translateX(var(--panel-w-mobile)); }
  .formDock{
    top: auto;
    bottom: 18px;
    right: 18px;
    left: auto;
  }

  body.form-open .formDock{
    width: var(--panel-w-mobile);
    height: min(80vh, 680px);
  }

  .benefits{flex-direction: column;}
  .benefit{width: 100%;}

  .decor-layer{display:none;}
}
/* ===== Section 2~7 공통 레이아웃 ===== */
.infoSection{
  position: relative;
  background:#05060a;
}
.infoSection__cta{
  margin: 12px 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  height: 52px;
  padding: 0 22px;
  border-radius: 999px;

  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 20px;

  background: linear-gradient(-45deg, #FB1526, #0E90F4, #34CCBA);
  background-size: 400% 400%;
  animation: colorChange 3s ease infinite;

  box-shadow: var(--shadow);
}

.infoSection__cta:hover{
  transform: translateY(-1px);
}
.infoSection__content{
  position: relative;
  z-index: 3;
  width: min(1100px, 92vw);
  margin: 0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  /*height: 100vh;
  padding: 90px 0 40px;*/
}

/* 상단 텍스트 */
.infoSection__kicker{
  margin: 0 0 10px;
  font-size: clamp(18px, 1.6vw, 28px);
  color: rgba(255,255,255,.85);
  font-weight: 500;
}
.infoSection__title{
  margin: 0;
  font-size: clamp(40px, 4.6vw, 86px);
  line-height: 1.05;
  font-weight: 800;
  /* Outer Glow 효과 */
  text-shadow: 
    0 0 10px color-mix(in srgb, #fff 50%, transparent),
    0 0 20px color-mix(in srgb, #fff 20%, transparent);
}

.infoSection__title img{
  max-width: 100%;
  height: auto;
  display: block;
}

.infoSection__desc{
  margin-bottom: 0;
  margin-top: 0;
  font-size: clamp(14px, 1.3vw, 20px);
  color: #ddd;
  display: none;
}

/* 1-2-1 박스 그리드 */
.infoGrid{
  width: 100%;
  max-width: 980px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* 박스 공통 */
.infoCard{
  color: #111;
  border-radius: 12px;
  padding: 26px 0;
  text-align: center;
}

/* 1개(가로 꽉) */
.infoCard--wide{ grid-column: 1 / -1; 
  color: #fff;
}
/* 2개(반반) */
.infoCard--half{ 
  min-height: 110px;
  background: rgba(255,255,255,1);
}
.infoCard__icon{font-size: 28px; font-family: 'Gmarket Sans'; color: var(--accent); font-weight: 600;
  height: 32px;
  display: flex;
  justify-content: center; /* 가로 */
  align-items: center;     /* 세로 */}
.infoCard__icon img{width: 32px; margin-right: 4px;}
/* 포인트 컬러 박스(하단 큰 박스) */
.infoCard--accent{
  color: #fff;
  padding-bottom: 0;
}
.infoCard__title{
  margin: 0 0 10px;
  font-size: 26px;
}
.infoCard__text{
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
  opacity: .8;
  padding-top: 8px;
}

/* 리스트(포인트 박스 내부) */
.infoList{
  margin: 0;
  padding-left: 0px;
  text-align: center;
}
.infoList li{
  margin: 8px 0;
  font-size: 18px;
}
/* 모바일: 2열 -> 1열 */
@media (max-width: 768px){
  .countdown{
    padding: 10px 54px;
  }
  .cd{
    min-width: 0;
  }
  .cd__num{
    font-size: 32px;
  }
  .hero__title{
    font-size: clamp(24px, 6vw, 40px);
    margin: 0;
  }
  .hero__meta{
  font-size: 12px; 
  }
  .benefit__title{
    margin: 0;
    font-size: 16px;
  }
  .benefit__head{
    padding: 7px 10px;
  } 
  .benefit__list{
    padding: 6px 12px;
  }
  .benefit__item{
    padding: 4px;
  }
  .benefit__text{
    font-size: 15px;
  }
  .infoSection__desc{
    display: none;
    margin-bottom: 14px;
  }
  .infoCard{
    padding: 12px 0;
  }
  .infoCard--half{
    min-height: 0;
  }
  .infoCard__icon{
    font-size: 20px;
    height: 24px;
  }
  .infoCard__icon img{
    width: 20px;
  }
  .infoCard__text{
    font-size: 16px;
    line-height: 1.3;
    padding-top: 0;
  }
  
  .infoSection__content{ padding: 0; }
  .infoGrid{ grid-template-columns: 1fr; gap: 6px;}
  .infoCard--wide{ grid-column: auto; }
}

/* ===== 자가설비 컨설팅 리스트 ===== */

.consultList{
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

.consultList li{
  display: flex;
  align-items: center;
  position: relative;
  gap: 4px;

  background: rgba(44,48,60,.95);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 4px;

  color: #fff;
  font-size: 18px;
  font-weight: 500;

  transition: transform .2s ease, background .2s ease;
}

.consultList li:hover{
  transform: translateY(-2px);
  background: rgba(60,65,80,1);
}

/* 숫자 박스 */
.consultList__num{
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 500;
}

/* 텍스트 */
.consultList__text{
  flex: 1;
  text-align: center;
  line-height: 1.4;
}

@media (max-width: 768px){
  .hero__logo{
    width: 32px;
    height: 32px;
    margin: 0 auto 8px;
  }

  .hero__logo img{
    width: 32px;
    height: 32px;
  }
  .formDock__label{ display: none; }
  .consultList{
    margin: 6px 0 0;
  }
  .consultList li{
    font-size: 16px;
    font-weight: 400;
    padding: 6px 10px;
    margin-bottom: 4px;
  }
  .benefit__iconSlot{
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
  }
  .benefit__iconSlot img{
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
  }
  .benefit__badge{
    display: none;
  }
  /* 버튼을 원형 아이콘 버튼처럼 */
  .formDock__toggle{
    padding: 0;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    justify-content: center;
  }

  /* pen 아이콘 사이즈를 버튼에 맞게 */
  .formDock__svg--pen{
    width: 28px;
    height: 28px;
  }
  .benefit__kicker{
    display: none;
  }
  .countdown__title{
    font-size: 16px;
  }
  .cd__label{
    display: none;
  }
  .cd__sep{
    height: 24px;
  }
  .infoSection__title img:nth-child(2){
    width: 240px;
  }
  .infoCard__title{
  font-size: 20px;
}
.bgSlider__ui{
  display: none;
}
.topCountdownBar{
  display: none;
}
}