:root{
  --ac-red:#EC001E;
  --text-main:#222222;
  --burgundy:#800020;
}

/* 업로드 폰트 – 실제 서버 경로로 교체해서 사용 */
@font-face{
  font-family:'AssistCardKor';
  src:url('f0fb0919-a929-4061-a5b2-65f4649f1b59.OTF') format('opentype');
  font-weight:400;
  font-style:normal;
}

*{margin:0;padding:0;box-sizing:border-box;}

body{
  font-family:'AssistCardKor','Nanum Gothic',sans-serif;
  color:var(--text-main);
  line-height:1.6;
  background:#ffffff;
}

.accent-red{
  color:var(--ac-red);
  font-weight:800;
}

/* ====================================
   HERO
==================================== */
.hero-assist{
  position:relative;
  min-height:480px;
  background:#ffffff url('https://media.eoding.com/media/travelagent/1229/imagecontent/assist_card8.png') no-repeat center center;
  background-size:contain;
}

.hero-assist-inner{
  max-width:1200px;
  margin:0 auto;
  min-height:480px;
  padding:0 20px 30px;
  display:flex;
  justify-content:flex-start;
  align-items:flex-end;
}

.hero-text{
  max-width:520px;
  text-align:left;
  padding-bottom:8px;
}

.hero-label{
  display:inline-block;
  padding:6px 14px;
  background:var(--ac-red);
  color:#ffffff;
  font-size:13px;
  font-weight:800;
  letter-spacing:0.08em;
  margin-bottom:14px;
}

.hero-text h1{
  font-size:28px;
  line-height:1.5;
  font-weight:800;
  color:var(--text-main);
  margin-bottom:12px;
}

.hero-text p{
  font-size:17px;
  color:var(--text-main);
}

.hero-text p strong{
  font-weight:800;
  color:var(--ac-red);
}

@media(max-width:768px){
  .hero-assist{
    min-height:380px;
  }
  .hero-assist-inner{
    min-height:380px;
    justify-content:flex-start;
    align-items:flex-end;
    padding:0 16px 24px;
  }
  .hero-text{
    padding-bottom:4px;
  }
  .hero-text h1{
    font-size:22px;
  }
}

/* ====================================
   PLAN TABS
==================================== */
.plan-tabs{
  padding:32px 0 40px;
  background:#ffffff;
}
.plan-tabs-inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
  display:flex;
  justify-content:center;
}
.plan-tabs-list{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  justify-content:center;
}
.plan-tab{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:140px;
  padding:10px 24px;
  border-radius:999px;
  background:var(--burgundy);
  color:#ffffff;
  font-size:16px;
  font-weight:700;
  text-decoration:none;
  border:1px solid var(--burgundy);
  transition:background .2s ease,color .2s ease,transform .1s ease;
}
.plan-tab:hover,
.plan-tab:focus-visible{
  background:#ffffff;
  color:var(--burgundy);
}
.plan-tab:active{
  transform:translateY(1px);
  background:#4d0014;
  border-color:#4d0014;
}

/* ====================================
   SECTION 2 : 비교
==================================== */
.section2{
  padding:50px 0 60px;
  background:#fafafa;
}
.compare-layout{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
  display:flex;
  align-items:center;
  gap:24px;
}

/* 왼쪽 카피 */
.compare-copy{
  flex:0.7;
  padding-left:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  margin-left:-20px;
}
.compare-copy h2{
  font-size:34px;
  line-height:1.5;
  margin-bottom:8px;
  font-weight:800;
}
.compare-copy .copy-main{
  white-space:nowrap;
  color:var(--text-main);
}
.compare-copy .copy-sub{
  color:var(--ac-red);
  font-weight:800;
}
.compare-copy p{
  font-size:18px;
  font-weight:700;
  color:var(--text-main);
}

/* 오른쪽 전체 */
.compare-right{
  flex:1.6;
}

/* 상단 로고 */
.compare-head{
  display:grid;
  grid-template-columns:1fr 220px 1fr;
  align-items:center;
  margin-bottom:14px;
}
.compare-head-left,
.compare-head-right{
  display:flex;
  justify-content:center;
}
.compare-head-left img,
.compare-head-right img{
  height:26px;
  width:auto;
  display:block;
}
.compare-head-right img{
  margin-left:18px;
}

/* 비교 행 */
.compare-rows{}
.compare-row{
  display:grid;
  grid-template-columns:1fr 220px 1fr;
  align-items:center;
  column-gap:0;
  margin-bottom:10px;
  font-size:18px;
  font-weight:700;
  color:var(--text-main);
}
.cr-left,
.cr-right{
  text-align:center;
  word-break:keep-all;
}
.cr-left strong,
.cr-right strong{
  color:var(--ac-red);
  font-weight:800;
}

/* 가운데 : 점 + Pill + 점 */
.cr-middle{
  display:flex;
  align-items:center;
  justify-content:center;
  width:220px;
  margin:0 auto;
  gap:6px;
}

/* 의료 이송 행만 왼쪽 정렬 */
.compare-row:last-child .cr-middle{
  justify-content:flex-start;
  padding-left:0;
}

/* 의료 이송 행의 왼쪽 텍스트만 좌측 이동 */
.compare-row:last-child .cr-left{
  padding-right:12px;
}

/* 1,3,4번 pill을 우측으로 이동 (2,5번 제외) */
.compare-row:nth-child(1) .cr-middle,
.compare-row:nth-child(3) .cr-middle,
.compare-row:nth-child(4) .cr-middle{
  justify-content:flex-end;
  padding-right:8px;
}

/* 2번 pill도 약간 우측으로 이동 */
.compare-row:nth-child(2) .cr-middle{
  margin-left:12px;
}
.cr-dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#cccccc;
}
.cr-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:140px;
  padding:6px 14px;
  border-radius:8px;
  background:linear-gradient(to right,#ff9aaa 0%,#ff5a6a 45%,var(--ac-red) 100%);
  color:#ffffff;
  font-size:14px;
  font-weight:800;
  text-align:center;
  white-space:nowrap;
}

/* 데스크탑에서 1줄 고정 */
@media(min-width:901px){
  .cr-left,
  .cr-right{
    white-space:nowrap;
  }
}

@media(max-width:1024px){
  .compare-layout{
    flex-direction:column;
    align-items:flex-start;
  }
  .compare-right{
    width:100%;
  }
  .compare-copy{
    margin-left:0;
  }
}
@media(max-width:768px){
  .compare-row{
    grid-template-columns:1fr;
    row-gap:6px;
  }
  .cr-middle{
    justify-content:center;
    width:auto;
    margin-left:0;
  }
}

/* ====================================
   SECTION 3 : 네 가지 설명
==================================== */
.section3{
  padding:70px 0;
  background:#ffffff;
}
.section3 ul{
  list-style:none;
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}
.section3 li{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  margin-bottom:70px;
}
.section3 li:nth-child(even){
  flex-direction:row-reverse;
}
.section3 img{
  width:45%;
  max-width:520px;
  border-radius:12px;
}
.section3 li > div{
  flex:1;
}
.section3 h2{
  font-size:34px;
  line-height:1.5;
  margin-bottom:14px;
  font-weight:800;
}
.section3 h2 span{
  color:var(--ac-red);
}
.section3 li > div > div{
  font-size:18px;
  color:var(--text-main);
  font-weight:700;
}
.section3 small{
  display:block;
  font-size:12px;
  color:#777;
  margin-top:4px;
  font-weight:400;
}

@media(max-width:900px){
  .section3 li,
  .section3 li:nth-child(even){
    flex-direction:column;
  }
  .section3 img{
    width:100%;
  }
  .section3 h2{
    font-size:26px;
  }
  .section3 li > div > div{
    font-size:16px;
  }
}

/* ====================================
   SECTION 4 : 통계
==================================== */
.section4{
  padding:70px 0;
  background:linear-gradient(135deg,#2647d9,#2f87e7);
  color:#ffffff;
  position:relative;
}
.section4::before{
  content:'';
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(circle at 15% 20%,rgba(255,255,255,0.12) 2px,transparent 2px),
    radial-gradient(circle at 80% 70%,rgba(255,255,255,0.12) 2px,transparent 2px);
  background-size:140px 140px;
  opacity:0.7;
}
.section4-inner{
  position:relative;
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
  display:flex;
  justify-content:space-between;
  align-items:stretch;
  gap:40px;
}
.stats-copy{
  flex:0.9;
}
.stats-copy h2{
  font-size:34px;
  line-height:1.5;
  margin-bottom:12px;
  font-weight:800;
  color:#ffffff;
}
.stats-copy p{
  font-size:18px;
  font-weight:700;
  color:#ffffff;
}
.stats-grid{
  flex:1.3;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.stats-item{
  background:#f5f5f5;
  border-radius:16px;
  padding:16px 10px 18px;
  text-align:center;
  color:#222222;
}
.stats-number{
  font-weight:800;
  font-size:20px;
  position:relative;
  display:inline-block;
}
.stats-number::after{
  content:'';
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:-6px;
  width:60%;
  height:2px;
  background:var(--ac-red);
}
.stats-number strong{
  font-size:22px;
}
.stats-unit{
  font-size:13px;
  margin-left:2px;
}
.stats-label{
  font-size:13px;
  margin-top:10px;
}

@media(max-width:900px){
  .section4-inner{
    flex-direction:column;
  }
  .stats-grid{
    grid-template-columns:repeat(3,1fr);
  }
}
@media(max-width:640px){
  .stats-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* ====================================
   SECTION 6 : 서비스 상세 (좌측 타이틀 / 우측 본문)
==================================== */
.section6{
  padding:70px 0 50px;
  background:#ffffff;
}
.section6-inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}
.section6-inner h2{
  font-size:34px;
  font-weight:800;
  margin-bottom:50px;
  color:var(--text-main);
  text-align:center;
}

/* 한 줄 묶음 */
.svc-row{
  display:flex;
  align-items:center;
  gap:40px;
  margin-bottom:45px;
}

/* 좌측 타이틀 */
.svc-col-title{
  flex:0 0 220px;
  font-size:22px;
  font-weight:700;
  color:#000;
}

/* 우측 본문 */
.svc-col-body{
  flex:1;
  font-size:15px;
  line-height:1.7;
  color:#333;
}
.svc-col-body ul{
  margin:0;
  padding-left:18px;
}
.svc-col-body li{
  margin-bottom:8px;
}
.svc-col-body li strong{
  color:var(--ac-red);
  font-weight:700;
}

/* 반응형 */
@media(max-width:960px){
  .svc-row{
    flex-direction:column;
    align-items:flex-start;
  }
  .svc-col-title{
    width:100%;
    margin-bottom:8px;
  }
}

/* ====================================
   PARTNERSHIP SECTION
==================================== */
.partners{
  padding:28px 0 22px;
  background:#ffffff;
}
.partners-inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
  text-align:center;
}
.partners-text{
  font-size:22px;
  line-height:1.6;
  margin-bottom:16px;
}
.partners-text .accent-red{
  font-size:22px;
}
.partners-logo img{
  max-width:900px;
  width:100%;
  height:auto;
  border-radius:10px;
  display:block;
  margin:0 auto;
}

/* ====================================
   CTA : 보장 조회 버튼
==================================== */
.cta-travelcare{
  padding:10px 0 60px;
  background:#ffffff;
}
.cta-inner{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}
.cta-bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:20px 26px 20px 32px;
  border-radius:999px;
  background:linear-gradient(90deg,#6f7b8c,#4c5565,#323844);
  color:#ffffff;
  text-decoration:none;
  font-size:20px;
  font-weight:700;
}
.cta-text{
  flex:1;
}
.cta-text strong{
  font-weight:800;
  color:#ffffff;
}
.cta-click{
  flex:0 0 auto;
  padding:8px 18px;
  border-radius:999px;
  background:linear-gradient(145deg,#56c9ff,#1aa4ff,#0077ff);
  box-shadow:0 6px 14px rgba(0,0,0,0.25);
  font-size:14px;
  font-weight:800;
  letter-spacing:0.08em;
  text-align:center;
}

/* CTA 반응형 */
@media(max-width:768px){
  .cta-bar{
    flex-direction:column;
    align-items:flex-start;
    padding:16px 20px;
    font-size:16px;
  }
  .cta-click{
    align-self:flex-end;
    margin-top:6px;
  }
}

/* ====================================
   FADE 클래스 (애니메이션 없이 표시만)
==================================== */
.fade-in-left,
.fade-in-right,
.fade-in-up{
  /* CMS 문제 방지를 위해 투명도/변형 없음 */
}