/*
  RAON Factory 홈페이지

  뼈대는 라온 매니저 프로그램에서 가져왔다 (`web/packages/design/tokens.css`, 디자인 기준 2판).
  바닥과 얹힌 면 둘만 쓰고, 층은 색의 대비가 아니라 1px 선으로 만든다. 모서리는 4px 과 8px
  둘뿐이고, 글꼴 굵기도 400 과 600 둘뿐이다. 그림자는 거의 쓰지 않는다.
  홈페이지만 화려하면 받아서 실행한 순간 다른 물건을 만나게 된다.

  강조색은 실제 제품 아이콘에서 뽑았다. 아이콘은 짙은 파랑 테두리 안에 회색 점이 깔리고
  그중 몇 개가 밝은 파랑으로 켜져 그림이 되는 모양이다. 그 세 색이 이 사이트의 전부다.

    #0358AE  테두리 - 제목·단추·강조
    #0088FF  켜진 점 - 작은 포인트
    #D9D9D9  꺼진 점 - 배경 무늬

  제품마다 다른 색을 주지 않는다. 실제 아이콘이 전부 같은 파랑이기 때문이다.
*/

:root {
  /* — 아이콘에서 뽑은 색 — */
  --brand:      #0358AE;
  --brand-deep: #024A93;
  --brand-lit:  #0088FF;
  --brand-tint: #EDF4FC;
  --dot:        #D9D9D9;

  /* — 매니저 2판의 재료. 바닥과 얹힌 면 둘뿐이다 — */
  --app-bg:     #FAFAFA;
  --surface:    #FFFFFF;
  --surface-2:  #F5F7FA;

  --line:       #E6E6E6;
  --line-soft:  #EBEBEB;
  --line-strong:#D8DCE2;

  /* — 글자. 검정이 아니라 슬레이트 계열이다 — */
  --text:       #1F2937;
  --text-2:     #5B6472;
  --text-3:     #8C939D;
  --on-dark:    #FFFFFF;

  --wrap:       1100px;
  --gutter:     24px;   /* 좌우 여백. 좁은 화면에서는 20px 로 내려간다 */

  /* 모서리는 둘뿐이다. 알약 모양을 쓰지 않는다. */
  --r:          4px;
  --r-lg:       8px;

  /* 그림자는 하나만. 떠 있는 것처럼 보일 필요가 있는 자리에만 쓴다. */
  --shadow:     0 1px 2px rgba(31, 41, 55, .04);
  --shadow-up:  0 4px 14px rgba(31, 41, 55, .08);

  --c:          var(--brand);
  --c-soft:     var(--brand-tint);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 76px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--app-bg);
  color: var(--text);
  font-family: "Pretendard Variable", Pretendard, "Malgun Gothic", -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
}

h1, h2, h3, p, ul { margin: 0; }
/* 굵기는 400 과 600 둘뿐이다. 제목도 600 이다. */
h1, h2, h3 { font-weight: 600; letter-spacing: -.02em; }
ul { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }

:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 2px; }

/*
  좌우 여백은 여기 한 곳에서만 정한다.

  **`.wrap` 을 단 요소에 `padding` 한 줄짜리(shorthand)를 다시 쓰지 않는다.** 같은 요소에
  두 클래스가 붙어 있으면 나중에 선언된 shorthand 가 좌우 값까지 통째로 덮는다. 실제로
  히어로가 그렇게 되어 좌우 여백이 0 이 된 적이 있다 - 세로 여백만 주려던 한 줄이었다.
  세로만 손대야 하면 padding-top / padding-bottom 으로 적는다.
*/
.wrap {
  width: 100%; max-width: var(--wrap); margin: 0 auto;
  padding-left: var(--gutter); padding-right: var(--gutter);
}

/* 작은 기능 아이콘은 선으로 그린다. 제품 자리에는 실제 아이콘 그림이 들어간다. */
.ico { width: 20px; height: 20px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.ico--sm { width: 16px; height: 16px; stroke-width: 1.8; }
.ico--xs { width: 13px; height: 13px; stroke-width: 2; }

/*
  꺼진 점을 깐 무늬. 아이콘 안쪽과 같은 격자다.
  배경으로만 쓰고 글자 뒤에서는 옅게 지운다.
*/
.dots-bg {
  background-image: radial-gradient(var(--dot) 1.4px, transparent 1.5px);
  background-size: 14px 14px;
}


/* ══════════ 공통 조각 ══════════ */

.eyebrow {
  font-size: 11.5px; font-weight: 600; letter-spacing: .14em;
  color: var(--brand); text-transform: uppercase;
}

.badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 10px; border-radius: var(--r);
  background: var(--surface); border: 1px solid var(--line);
  font-size: 11.5px; font-weight: 600; letter-spacing: .1em; color: var(--text-2);
}
.badge i { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-lit); }
.badge--ghost {
  background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.22); color: #fff;
}

.display {
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.38; letter-spacing: -.03em; font-weight: 600;
}
.display b { color: var(--brand); font-weight: 600; }
.display--sm { font-size: clamp(24px, 2.8vw, 34px); }

.title { font-size: clamp(21px, 2.3vw, 30px); line-height: 1.4; }
.title--lg { font-size: clamp(21px, 2.2vw, 29px); }

.lead { margin-top: 16px; font-size: 16px; line-height: 1.75; color: var(--text-2); }
.body { font-size: 15px; line-height: 1.8; color: var(--text-2); }
.note { font-size: 13px; color: var(--text-3); }

/*
  단추. 매니저와 같은 모양이다 - 4px 모서리, 1px 선, 아래쪽 선만 한 단계 진하게.
  주 단추만 아이콘의 파랑으로 채운다.
*/
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: var(--r);
  font-size: 14px; font-weight: 600; letter-spacing: -.01em;
  white-space: nowrap; cursor: pointer;
  border: 1px solid transparent;
  transition: background .14s ease, border-color .14s ease, color .14s ease;
}
.btn--brand {
  background: var(--brand); color: var(--on-dark);
  border-color: var(--brand); border-bottom-color: var(--brand-deep);
}
.btn--brand:hover { background: var(--brand-deep); border-color: var(--brand-deep); }

.btn--dark {
  background: var(--surface); color: var(--text);
  border-color: var(--line); border-bottom-color: var(--line-strong);
}
.btn--dark:hover { background: var(--surface-2); border-color: var(--line-strong); color: var(--brand); }

.btn--white { background: #fff; color: var(--brand); border-color: #fff; }
.btn--white:hover { background: #F0F5FB; border-color: #F0F5FB; }
.btn--line { border-color: var(--line); }
.btn--sm { padding: 7px 13px; font-size: 13px; gap: 6px; }

.link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--brand); }
.link:hover { color: var(--brand-deep); }


/* ══════════ 머리말 ══════════ */

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,250,250,.88);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.is-stuck { background: rgba(255,255,255,.94); border-bottom-color: var(--line); }

.nav__inner { display: flex; align-items: center; gap: 24px; height: 60px; }

/* 로고. 제품 아이콘과 같은 짜임이되 제품이 아니므로 글자 한 자로 둔다. */
.logo { display: inline-flex; align-items: center; gap: 9px; }
.logo__tile {
  display: grid; place-items: center; width: 26px; height: 26px;
  border-radius: var(--r); background: var(--brand); color: #fff;
  font-size: 13px; font-weight: 600; line-height: 1;
}
.logo__text { font-size: 16px; font-weight: 600; letter-spacing: -.02em; }
.logo__text em { font-style: normal; color: var(--brand); }
.logo--on-dark .logo__text { color: #fff; }
.logo--on-dark .logo__text em { color: #9CC8F5; }
.logo--on-dark .logo__tile { background: #fff; color: var(--brand); }

.nav__menu { display: flex; gap: 26px; margin: 0 auto; }
.nav__menu a { font-size: 14px; color: var(--text-2); }
.nav__menu a:hover { color: var(--brand); }

.nav__toggle { display: none; flex-direction: column; gap: 4px; padding: 8px; margin-left: auto; }
.nav__toggle span { display: block; width: 20px; height: 1.5px; background: var(--text); }


/* ══════════ 히어로 ══════════ */

.hero { position: relative; overflow: hidden; background: var(--surface); border-bottom: 1px solid var(--line); }

/* 점 격자를 아주 옅게 깐다. 아이콘 안쪽과 같은 무늬다. */
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(var(--dot) 1.4px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: .5;
  -webkit-mask-image: radial-gradient(90% 70% at 74% 46%, #000 0%, transparent 72%);
          mask-image: radial-gradient(90% 70% at 74% 46%, #000 0%, transparent 72%);
  pointer-events: none;
}

.slide[hidden] { display: none; }
.slide__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .8fr);
  gap: 48px; align-items: center;
  min-height: 420px; padding-top: 56px; padding-bottom: 44px;
}
.slide.is-active .slide__copy > * { animation: rise .45s ease backwards; }
.slide.is-active .slide__copy > *:nth-child(2) { animation-delay: .04s; }
.slide.is-active .slide__copy > *:nth-child(3) { animation-delay: .08s; }
.slide.is-active .slide__copy > *:nth-child(4) { animation-delay: .12s; }
.slide.is-active .slide__copy > *:nth-child(5) { animation-delay: .16s; }
@keyframes rise { from { opacity: 0; transform: translateY(8px); } }

.slide .eyebrow { margin-top: 18px; }
.slide__name { margin-top: 4px; }
.slide__cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 26px; }

/* — 히어로의 제품 그림. 실제 아이콘 하나와 그 옆의 짧은 말뿐이다 — */
.slide__art { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.slide__icon { width: 132px; height: 132px; }
.marks { display: grid; gap: 6px; justify-items: start; }
.mark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px; border-radius: var(--r);
  background: var(--surface); border: 1px solid var(--line);
  font-size: 12.5px; color: var(--text-2); white-space: nowrap;
}
.mark .ico { color: var(--brand-lit); }

/* — 히어로 아래 조작 줄 — */
.hero__bar {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 28px;
}
.dots { display: flex; align-items: center; gap: 7px; }
.dot { width: 7px; height: 7px; padding: 0; border-radius: 50%; background: var(--dot); transition: background .18s ease; }
.dot.is-on { background: var(--brand); }

.pager { display: flex; align-items: center; gap: 10px; }
.rnd {
  display: grid; place-items: center; width: 30px; height: 30px;
  border-radius: var(--r); background: var(--surface); color: var(--text-2);
  border: 1px solid var(--line); border-bottom-color: var(--line-strong);
  transition: color .14s ease, border-color .14s ease;
}
.rnd:hover { color: var(--brand); border-color: var(--line-strong); }
.count { font-size: 12px; color: var(--text-3); }
.count b { color: var(--text-2); font-weight: 600; }


/* ══════════ 섹션 뼈대 ══════════ */

.section { padding: 76px 0; }
.section--tight { padding: 40px 0; }

.head { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 28px; }
.head .title { margin-top: 8px; }
.head__note { font-size: 13.5px; line-height: 1.7; color: var(--text-3); text-align: right; }

.grid { display: grid; gap: 3px; }        /* 카드는 3px 간격으로 쌓인다 - 매니저와 같다 */
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }


/* ══════════ 제품 카드 ══════════ */

.card {
  position: relative; display: flex; flex-direction: column;
  padding: 22px; border-radius: var(--r);
  background: var(--surface); border: 1px solid var(--line);
  transition: border-color .16s ease, background .16s ease;
}
.card:hover { border-color: var(--line-strong); background: #FDFDFD; }

.card__icon { width: 52px; height: 52px; }

.card__eyebrow { margin-top: 18px; font-size: 11.5px; font-weight: 600; letter-spacing: .12em; color: var(--brand); }
.card__name { margin-top: 3px; font-size: 19px; }
.card__desc { margin-top: 10px; font-size: 14px; line-height: 1.7; color: var(--text-2); }

.card__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 22px; }
.ver { font-size: 12px; color: var(--text-3); }


/* ══════════ 라온 팩 ══════════ */

/*
  이 사이트에서 색이 채워지는 유일한 면이다. 하나뿐이라 강조가 된다.
  점 무늬를 여기에도 깔아 아이콘과 같은 물건임을 말한다.
*/
.pack {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px; align-items: center;
  padding: 44px 40px; border-radius: var(--r-lg);
  background: var(--brand); color: #fff;
}
.pack::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.18) 1.4px, transparent 1.5px);
  background-size: 16px 16px;
  -webkit-mask-image: radial-gradient(70% 90% at 82% 50%, #000 0%, transparent 70%);
          mask-image: radial-gradient(70% 90% at 82% 50%, #000 0%, transparent 70%);
}
.pack__copy { position: relative; z-index: 1; }
.pack .display { margin-top: 16px; }
.pack .display b { color: #9CC8F5; }
.pack .lead { color: rgba(255,255,255,.78); }

.checks { display: grid; gap: 8px; margin-top: 22px; }
.checks li { display: flex; align-items: center; gap: 9px; font-size: 14px; color: rgba(255,255,255,.9); }
.checks .ico { color: #9CC8F5; }
.pack .btn--white { margin-top: 26px; }

.pack__art { position: relative; z-index: 1; display: grid; place-items: center; }
.pack__icon { width: 116px; height: 116px; }


/* ══════════ 우리의 기준 ══════════ */

.standard { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 48px; align-items: center; }
.standard .title { margin-top: 10px; }
.standard .body { margin-top: 18px; }

.standard__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.mini { padding: 20px 18px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); }
.mini__icon {
  display: grid; place-items: center; width: 32px; height: 32px;
  border-radius: var(--r); background: var(--brand-tint); color: var(--brand);
}
.mini h3 { margin-top: 16px; font-size: 15px; }
.mini p { margin-top: 6px; font-size: 13px; line-height: 1.6; color: var(--text-2); }


/* ══════════ 가이드 ══════════ */

.guide {
  display: flex; flex-direction: column;
  border-radius: var(--r); background: var(--surface); border: 1px solid var(--line);
  transition: border-color .16s ease;
}
.guide:hover { border-color: var(--line-strong); }
.guide__art {
  display: grid; place-items: center; height: 116px;
  border-bottom: 1px solid var(--line-soft); background: var(--surface-2);
  background-image: radial-gradient(var(--dot) 1.4px, transparent 1.5px);
  background-size: 14px 14px;
}
.guide__art img { width: 48px; height: 48px; }
.guide__art .ico { width: 30px; height: 30px; color: var(--brand); stroke-width: 1.4; }
.guide__body { display: flex; flex-direction: column; flex: 1; padding: 18px 20px 20px; }
.guide__body h3 { margin-top: 6px; font-size: 15px; line-height: 1.55; }
.more { display: inline-flex; align-self: flex-start; align-items: center; gap: 4px; margin-top: auto; padding-top: 18px; font-size: 12.5px; font-weight: 600; color: var(--text-3); }
.guide:hover .more { color: var(--brand); }


/* ══════════ 고객지원 띠 ══════════ */

.strip {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  padding: 24px 28px; border-radius: var(--r);
  background: var(--surface); border: 1px solid var(--line);
}
.strip__text { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.strip__text b { font-size: 16px; font-weight: 600; }
.strip__text span { font-size: 13.5px; color: var(--text-2); }


/* ══════════ 꼬리말 ══════════ */

.foot { margin-top: 40px; padding: 36px 0 32px; background: #1F2937; color: rgba(255,255,255,.6); }
.foot__top { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.foot__menu { display: flex; gap: 20px; flex-wrap: wrap; }
.foot__menu a { font-size: 12.5px; color: rgba(255,255,255,.6); }
.foot__menu a:hover { color: #fff; }
.foot__bottom {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12);
  font-size: 12.5px; line-height: 1.75;
}
.foot__note { color: rgba(255,255,255,.42); text-align: right; }


/* ══════════ 스크롤에 맞춰 떠오르기 ══════════ */

/* 매니저의 결에 맞춰 아주 작게만 움직인다. */
.reveal { opacity: 0; transform: translateY(8px); transition: opacity .4s ease, transform .4s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .slide.is-active .slide__copy > * { animation: none; }
}


/* ══════════ 알림 한 줄 ══════════ */

.toast {
  position: fixed; left: 50%; bottom: 24px; z-index: 100;
  transform: translate(-50%, 8px);
  padding: 11px 18px; border-radius: var(--r);
  background: #1F2937; color: #fff;
  font-size: 13.5px;
  box-shadow: var(--shadow-up);
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  max-width: calc(100vw - 40px); text-align: center;
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }


/* ══════════ 카드 전체를 누르게 만들기 ══════════ */

.card__link { color: inherit; }
.card__link::after { content: ""; position: absolute; inset: 0; z-index: 1; border-radius: inherit; }
.card:hover .card__link { color: var(--brand); }
.card__foot { position: relative; z-index: 2; }

/* 아직 연결되지 않은 단추. 겉모습은 그대로 두고 누른 뒤에 말한다. */
.btn[data-pending] { position: relative; }


/* ══════════ 넓은 화면 ══════════ */

/*
  1100px 짜리 띠에 132px 아이콘 하나를 오른쪽에 두면, 글이 짧은 히어로에서 가운데가
  휑하게 빈다. 장식을 더하는 대신 **제품 아이콘을 키워** 오른쪽에 무게를 준다.
  이 사이트에서 그림다운 그림은 제품 아이콘뿐이므로 그것을 크게 쓰는 것이 맞다.
*/
@media (min-width: 1000px) {
  .slide__icon { width: 172px; height: 172px; }
  .marks { gap: 8px; }
  .mark { font-size: 13px; padding: 8px 14px; }
}

/* 아주 넓은 화면에서는 띠를 조금 넓힌다. 1100 으로 묶어 두면 1920 에서 작아 보인다. */
@media (min-width: 1400px) {
  :root { --wrap: 1200px; }
}


/* ══════════ 좁은 화면 ══════════ */

/*
  좁은 화면에서는 **가운데로 모은다.**

  전에는 여기서 전부 왼쪽에 붙여 두었다. 넓은 화면의 짜임은 왼쪽에 글, 오른쪽에 그림인데
  그것을 그대로 세로로 눕히면 글 옆에 있던 그림이 글 아래 왼쪽 구석으로 떨어지고 오른쪽이
  통째로 빈다. 세로로 내려놓기만 한 것처럼 보이는 까닭이 바로 이것이다 - 짜임을 바꾼 것이
  아니라 방향만 꺾은 셈이었다.

  가운데로 모으면 좌우 여백이 같아져 한 장의 띠처럼 읽힌다. 세로로 긴 화면에서는 이쪽이
  맞는 짜임이다.

  **목록만은 묶음째로 가운데에 두고 항목끼리는 왼쪽으로 맞춘다.** 체크 표시가 줄마다
  들쭉날쭉하면 오히려 읽기 어려워진다. 묶음이 놓인 자리만 가운데로 옮기고 안쪽 줄맞춤은
  건드리지 않는다.
*/
@media (max-width: 900px) {
  /* 모바일 기본 좌우 여백. 변수 하나라 머리말부터 꼬리말까지 한꺼번에 따라온다. */
  :root { --gutter: 20px; }

  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__menu {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; left: 0; right: 0; top: 60px; margin: 0;
    padding: 4px var(--gutter) 14px; background: #fff;
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  }
  .nav.is-open .nav__menu a { padding: 11px 0; border-bottom: 1px solid var(--line-soft); }

  .section { padding: 52px 0; }

  /* — 히어로 — */
  .slide__inner { grid-template-columns: 1fr; min-height: 0; gap: 28px; padding-top: 36px; padding-bottom: 32px; }
  .slide__copy { text-align: center; }
  .slide__cta { justify-content: center; }
  /* .slide__art 는 원래 가운데 정렬이다. 왼쪽으로 당기던 덮어쓰기를 걷어냈다. */
  .marks { justify-items: center; }

  /* — 섹션 머리 — */
  .head { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
  .head__note { text-align: center; }

  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  /* — 제품 카드 — */
  /*
    버전 숫자를 아랫줄로 내린다. 단추와 숫자를 한 줄에 나란히 두면 숫자 쪽이 짧아
    묶음의 가운데가 단추의 가운데와 어긋나고, 단추가 왼쪽으로 밀려 보인다.
  */
  .card { align-items: center; text-align: center; }
  .card__foot { flex-direction: column; align-items: center; gap: 8px; }

  /* — 라온 매니저 띠 — */
  .pack { grid-template-columns: 1fr; padding: 32px 24px; gap: 28px; text-align: center; }
  /* 체크 목록은 묶음만 가운데로. max-content 라 항목끼리는 왼쪽으로 맞아 표시가 한 줄로 선다. */
  .checks { width: max-content; max-width: 100%; margin-left: auto; margin-right: auto; }

  /* — 우리의 기준 — */
  .standard { grid-template-columns: 1fr; gap: 28px; }
  .standard__copy { text-align: center; }
  .mini { text-align: center; }
  .mini__icon { margin-left: auto; margin-right: auto; }

  /* — 가이드 카드 — */
  .guide__body { align-items: center; text-align: center; }
  .more { align-self: center; }

  /* — 고객지원 띠 — */
  .strip { justify-content: center; text-align: center; }
  .strip__text { justify-content: center; }

  /* — 꼬리말 — */
  .foot__top { flex-direction: column; align-items: center; text-align: center; }
  .foot__menu { justify-content: center; }
  .foot__bottom { flex-direction: column; align-items: center; text-align: center; }
  .foot__note { text-align: center; }
}

@media (max-width: 620px) {
  .slide__icon { width: 96px; height: 96px; }
  .grid--3 { grid-template-columns: 1fr; }
  .standard__cards { grid-template-columns: 1fr; }
  .strip { padding: 20px; }
}
