/* =========================================================
   아이폰픽스 (iPhonePix) — style.css
   Pure CSS recreation of reference layout
   ========================================================= */

:root {
  --navy: #0f2747;
  --navy-2: #0d1b2a;
  --blue: #2f6bff;
  --blue-dark: #1d52e0;
  --blue-light: #7ea7ff;
  --blue-light-2: #9ad0ff;
  --kakao: #fee500;
  --kakao-text: #3b1e1e;
  --surface: #ffffff;
  --surface-2: #f4f7fb;
  --surface-3: #f7f9fc;
  --border: #e7ecf2;
  --border-2: #eef2f6;
  --t-title: #0f2747;
  --t-body: #3a4756;
  --t-sub: #717f8f;
  --star: #ffb300;
  --maxw: 1180px;
  --pad: clamp(18px, 5vw, 56px);
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  margin: 0;
  background: #fff;
  font-family:
    "Pretendard",
    system-ui,
    -apple-system,
    sans-serif;
  color: var(--navy-2);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font-family: inherit;
}
img {
  display: block;
  max-width: 100%;
}
::selection {
  background: var(--blue);
  color: #fff;
}

.disp {
  font-family: "Space Grotesk", "Pretendard", sans-serif;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--pad);
}

/* ---------- Keyframes ---------- */
@keyframes ip_loaderOut {
  0%,
  62% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes ip_devFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-7px) rotate(3deg);
  }
}
@keyframes ip_fill {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@keyframes ip_scan {
  0% {
    top: -12%;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    top: 104%;
    opacity: 0;
  }
}
@keyframes ip_word {
  0% {
    background-position: 120% 0;
    opacity: 0.35;
    letter-spacing: 0.22em;
  }
  100% {
    background-position: 0 0;
    opacity: 1;
    letter-spacing: 0.04em;
  }
}
@keyframes ip_spark {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.4);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes ip_grad {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 220% 50%;
  }
}
@keyframes ip_bgshift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes ip_dots {
  to {
    background-position:
      26px 26px,
      78px 78px,
      78px 78px;
  }
}
@keyframes ip_in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Root fade for page transitions ---------- */
.ip-root {
  position: relative;
  opacity: 1;
  transition: opacity 0.34s ease;
  background: #fff;
}

/* ---------- Loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  background: radial-gradient(
    ellipse 60% 50% at 50% 42%,
    #ffffff 0%,
    #eef3fb 100%
  );
  animation: ip_loaderOut 1.9s ease forwards;
  pointer-events: none;
}
.loader__device {
  position: relative;
  width: 62px;
  height: 88px;
  border-radius: 17px;
  background: var(--navy);
  padding: 7px;
  box-shadow:
    0 22px 50px rgba(15, 39, 71, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  animation: ip_devFloat 2.4s ease-in-out infinite;
}
.loader__device::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.5);
  z-index: 2;
}
.loader__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: #0b1626;
  overflow: hidden;
}
.loader__fill {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background: linear-gradient(180deg, #9ad0ff 0%, #2f6bff 55%, #1d52e0 100%);
  animation: ip_fill 1.55s cubic-bezier(0.6, 0.04, 0.2, 1) forwards;
}
.loader__scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 10px;
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.9),
    transparent
  );
  filter: blur(1px);
  animation: ip_scan 1.05s ease-in-out infinite;
}
.loader__spark {
  position: absolute;
  top: -9px;
  right: -9px;
  color: var(--blue);
  animation: ip_spark 1.2s ease-in-out infinite;
}
.loader__word {
  font-family: "Space Grotesk", "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 21px;
  background: linear-gradient(90deg, var(--navy) 0 50%, #aebccd 50% 100%);
  background-size: 220% 100%;
  background-position: 120% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: ip_word 1.5s cubic-bezier(0.5, 0, 0.2, 1) forwards;
}

/* ---------- Logo mark (header/footer) ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.logo__mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo__phone {
  width: 13px;
  height: 21px;
  border-radius: 3px;
  background: #fff;
  position: relative;
  display: block;
}
.logo__phone::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 3px;
  right: 3px;
  height: 1.6px;
  border-radius: 1px;
  background: var(--blue);
  display: block;
}
.logo__text {
  font-family: "Space Grotesk", "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--navy);
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border-2);
}
.header__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--pad);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-inquiry {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 11px;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.btn-inquiry:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(47, 107, 255, 0.28);
}

.hamburger {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  border: 1px solid #e3e9f0;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.hamburger:hover {
  border-color: var(--blue);
}
.hamburger span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  display: block;
}

/* ---------- Drawer ---------- */
.backdrop {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(13, 27, 42, 0.5);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.backdrop.open {
  opacity: 1;
  visibility: visible;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86vw, 360px);
  z-index: 960;
  background: #fff;
  box-shadow: -20px 0 50px rgba(13, 27, 42, 0.18);
  padding: 26px 24px;
  overflow-y: auto;
  transform: translateX(110%);
  transition: transform 0.34s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.drawer.open {
  transform: translateX(0);
}
.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}
.drawer__title {
  font-family: "Space Grotesk", "Pretendard", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
}
.drawer__close {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #e3e9f0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.drawer__nav {
  display: flex;
  flex-direction: column;
}
.drawer__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 4px;
  border-bottom: 1px solid var(--border-2);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition:
    color 0.18s ease,
    padding 0.18s ease;
}
.drawer__nav a:hover {
  color: var(--blue);
  padding-left: 10px;
}
.drawer__cta {
  margin-top: 26px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 13px;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
.drawer__cta:hover {
  background: var(--blue-dark);
}
.drawer__sub {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.drawer__sub button {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 13px;
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.drawer__sub .phone {
  background: #fff;
  border: 1px solid #dde4ec;
  color: var(--navy);
}
.drawer__sub .kakao {
  background: var(--kakao);
  border: none;
  color: var(--kakao-text);
}

/* ---------- Main / sections ---------- */
.main {
  position: relative;
  z-index: 2;
  background: #fff;
}
.section {
  padding: clamp(64px, 9vw, 128px) 0;
}
.section--white {
  background: #fff;
}
.section--soft {
  background: var(--surface-2);
}
.eyebrow {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 14px;
}
.h2 {
  margin: 0;
  font-family: "Space Grotesk", "Pretendard", sans-serif;
  font-size: clamp(27px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: var(--navy);
}
.lead {
  margin: 18px 0 0;
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.7;
  color: var(--t-body);
}
.sec-head {
  margin-bottom: clamp(36px, 5vw, 56px);
  max-width: 620px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero__bg {
  position: absolute;
  inset: -8% 0;
  z-index: 0;
  background: var(--navy);
}
.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    102deg,
    rgba(11, 22, 38, 0.92) 0%,
    rgba(12, 24, 40, 0.78) 38%,
    rgba(13, 30, 55, 0.5) 70%,
    rgba(15, 45, 84, 0.32) 100%
  );
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--pad);
}
.hero__col {
  max-width: 760px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(47, 107, 255, 0.16);
  border: 1px solid rgba(47, 107, 255, 0.34);
  color: #bcd0ff;
  padding: 8px 15px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 26px;
}
.hero__badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  display: inline-block;
}
.hero h1 {
  margin: 0;
  font-family: "Space Grotesk", "Pretendard", sans-serif;
  font-size: clamp(33px, 6.2vw, 66px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #fff;
}
.grad-text {
  background: linear-gradient(
    100deg,
    #7ea7ff 0%,
    #2f6bff 25%,
    #9ad0ff 50%,
    #2f6bff 75%,
    #7ea7ff 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: ip_grad 6s linear infinite;
}
.hero__p {
  margin: 24px 0 0;
  font-size: clamp(15px, 1.8vw, 19px);
  line-height: 1.7;
  color: #c4cedb;
  max-width: 560px;
}
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #d7e0ec;
  font-size: 14px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 14px;
  border-radius: 100px;
}

/* stats merged into hero */
.stats {
  margin-top: clamp(44px, 6vw, 70px);
  padding-top: clamp(30px, 4vw, 44px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: clamp(18px, 3vw, 36px);
}
.stat__row {
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.stat__num {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  color: #fff;
  letter-spacing: -0.02em;
}
.stat__suffix {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 2vw, 21px);
  color: var(--blue-light);
}
.stat__label {
  margin-top: 6px;
  font-size: 13.5px;
  color: #9fb0c4;
  font-weight: 500;
}

/* ---------- Services ---------- */
.cards-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: clamp(18px, 2vw, 26px);
}
.svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: clamp(22px, 2.4vw, 30px);
  transition:
    border-color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.svc-card:hover {
  border-color: var(--blue);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(15, 39, 71, 0.1);
}
.svc-card__media {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--surface-2);
}
.svc-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.svc-card h3 {
  margin: 0 0 9px;
  font-size: clamp(18px, 2.2vw, 21px);
  font-weight: 700;
  color: var(--navy);
}
.svc-card p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--t-sub);
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.tags span {
  font-size: 12.5px;
  font-weight: 500;
  color: #33414f;
  background: var(--surface-2);
  border: 1px solid #eaeff5;
  padding: 5px 10px;
  border-radius: 7px;
}

/* ---------- Repair items ---------- */
.items-split {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: clamp(18px, 2.5vw, 26px);
}
.items-visual {
  flex: 1 1 300px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 340px;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(26px, 3vw, 36px);
  color: #fff;
}
.items-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.items-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    rgba(15, 39, 71, 0.5),
    rgba(13, 27, 42, 0.86)
  );
}
.items-visual h3,
.items-visual p {
  position: relative;
  z-index: 1;
}
.items-visual h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.items-visual p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: #bcd0ff;
  max-width: 300px;
}
.items-grid {
  flex: 2 1 460px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(10px, 1.2vw, 14px);
  grid-auto-rows: 1fr;
}
.item-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(15, 39, 71, 0.1);
  border-color: var(--blue);
}
.item-card .no {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--blue);
}
.item-card h3 {
  margin: 0;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
}
.item-card p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--t-sub);
}

/* ---------- Why ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(40px, 5vw, 70px);
  align-items: stretch;
}
.why-h2 {
  margin: 0 0 clamp(34px, 4vw, 52px);
  font-family: "Space Grotesk", "Pretendard", sans-serif;
  font-size: clamp(27px, 4vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: var(--navy);
}
.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
}
.reason {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 22px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.reason:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(15, 39, 71, 0.1);
  border-color: var(--blue);
}
.reason__ico {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 16px;
}
.reason h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}
.reason p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--t-sub);
}
.why-visual {
  position: relative;
  min-height: 420px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--navy);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.why-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.why-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15, 39, 71, 0.35),
    rgba(13, 27, 42, 0.78)
  );
}
.why-quote {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 18px 20px;
}
.why-quote p {
  margin: 0;
  font-size: 14px;
  color: #cdd9e8;
  line-height: 1.6;
}
.why-quote .by {
  margin-top: 10px;
  font-size: 13px;
  color: var(--blue-light);
  font-weight: 600;
}

/* ---------- Process ---------- */
.process {
  background: linear-gradient(135deg, #0b1626 0%, #13315c 50%, #0b1626 100%);
  background-size: 200% 200%;
  animation: ip_bgshift 16s ease infinite;
  position: relative;
  overflow: hidden;
}
.process__dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1.4px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size:
    26px 26px,
    78px 78px,
    78px 78px;
  -webkit-mask-image: radial-gradient(
    ellipse 80% 70% at 50% 42%,
    #000 0%,
    rgba(0, 0, 0, 0.35) 58%,
    transparent 86%
  );
  mask-image: radial-gradient(
    ellipse 80% 70% at 50% 42%,
    #000 0%,
    rgba(0, 0, 0, 0.35) 58%,
    transparent 86%
  );
  animation: ip_dots 38s linear infinite;
}
.process__glow1 {
  position: absolute;
  top: -22%;
  right: -8%;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 107, 255, 0.2), transparent 70%);
  pointer-events: none;
}
.process__glow2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(126, 167, 255, 0.13),
    transparent 70%
  );
  pointer-events: none;
}
.process__head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
  position: relative;
}
.process__eyebrow {
  color: var(--blue-light);
}
.process__head h2 {
  color: #fff;
}
.timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.timeline__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 7%,
    #000 93%,
    transparent
  );
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 7%,
    #000 93%,
    transparent
  );
}
.timeline__fill {
  position: absolute;
  left: 50%;
  top: 0;
  height: 0%;
  width: 3px;
  transform: translateX(-50%);
  background: linear-gradient(#7ea7ff, #2f6bff);
  border-radius: 3px;
  box-shadow: 0 0 16px rgba(47, 107, 255, 0.6);
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 10%,
    #000 78%,
    transparent
  );
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 10%,
    #000 78%,
    transparent
  );
}
.tl-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: clamp(14px, 2.2vw, 24px) 0;
}
.tl-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: clamp(18px, 2.4vw, 28px);
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.tl-card:hover {
  border-color: rgba(47, 107, 255, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}
.tl-row--l .tl-card {
  grid-column: 1;
  margin-right: clamp(14px, 3vw, 40px);
}
.tl-row--r .tl-card {
  grid-column: 2;
  margin-left: clamp(14px, 3vw, 40px);
}
.tl-card .no {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 36px);
  color: var(--blue);
  letter-spacing: -0.01em;
  line-height: 1;
}
.tl-card h3 {
  margin: 12px 0 7px;
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 700;
  color: #fff;
}
.tl-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: #9fb0c4;
}
.tl-node {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--navy-2);
  border: 3px solid var(--blue);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 5px rgba(47, 107, 255, 0.16);
}

/* ---------- Reviews ---------- */
.reviews {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  overflow: hidden;
}
.review-wrap {
  position: relative;
}
.review-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.review-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}
.review-track {
  display: flex;
  gap: 32px;
  padding: 34px 0;
  will-change: transform;
  transition: transform 0.7s cubic-bezier(0.6, 0.04, 0.2, 1);
}
.review-item {
  flex: 0 0 auto;
  width: min(560px, 62vw);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(32px, 4vw, 48px);
  box-shadow: 0 24px 50px rgba(15, 39, 71, 0.12);
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}
.review-item p {
  margin: 0 0 26px;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.6;
  color: #1f2c3a;
  font-weight: 500;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 13px;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
}
.review-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}
.review-device {
  font-size: 13px;
  color: var(--t-sub);
}
.review-dots {
  display: flex;
  gap: 9px;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  height: 8px;
}
.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: #cdd9e8;
  cursor: pointer;
  transition:
    width 0.35s cubic-bezier(0.6, 0.04, 0.2, 1),
    background 0.3s ease;
  display: block;
  flex: none;
}
.review-dot.active {
  width: 26px;
  background: var(--blue);
}
/* mobile list */
.reviews-mobile {
  display: none;
  flex-direction: column;
  gap: 16px;
}
.review-m {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-m p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #33414f;
}
.review-m .review-avatar {
  width: 40px;
  height: 40px;
  font-size: 15px;
}

/* ---------- FAQ ---------- */
.faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 5vw, 64px);
  align-items: flex-start;
}
.faq-side {
  flex: 1 1 280px;
  position: sticky;
  top: 100px;
}
.faq-side h2 {
  margin: 0 0 16px;
  font-family: "Space Grotesk", "Pretendard", sans-serif;
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.faq-side p {
  margin: 0 0 26px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--t-sub);
  max-width: 300px;
}
.faq-side .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.faq-side .btn:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}
.faq-list {
  flex: 1.6 1 460px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.faq:hover {
  border-color: #cdd9e8;
  box-shadow: 0 10px 26px rgba(15, 39, 71, 0.07);
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq__q span.q {
  font-size: 16.5px;
  font-weight: 600;
  color: var(--navy);
}
.faq__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eef3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.faq__icon span {
  display: flex;
  transition: transform 0.25s ease;
}
.faq.open .faq__icon span {
  transform: rotate(45deg);
}
.faq__body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 0.35s ease,
    opacity 0.3s ease;
}
.faq.open .faq__body {
  max-height: 320px;
  opacity: 1;
}
.faq__body p {
  margin: 0;
  padding: 0 24px 24px;
  font-size: 14.5px;
  line-height: 1.8;
  color: #56636f;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(28px, 3.5vw, 48px);
  align-items: center;
}
.contact-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-left h2 {
  margin: 0 0 16px;
  font-family: "Space Grotesk", "Pretendard", sans-serif;
  font-size: clamp(27px, 4vw, 42px);
  line-height: 1.16;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: var(--navy);
}
.contact-left p {
  margin: 0 0 30px;
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 1.7;
  color: var(--t-body);
  max-width: 380px;
}
.contact-cta {
  display: flex;
  gap: 12px;
}
.contact-cta button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 14px;
  padding: 18px 16px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
.contact-cta .phone {
  background: var(--blue);
  color: #fff;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.contact-cta .phone:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(47, 107, 255, 0.32);
}
.contact-cta .kakao {
  background: var(--kakao);
  color: var(--kakao-text);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.contact-cta .kakao:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(254, 229, 0, 0.32);
}
.contact-form {
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(26px, 3vw, 40px);
  box-shadow: 0 1px 3px rgba(15, 39, 71, 0.06);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.field label.lbl {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #dde4ec;
  border-radius: 11px;
  padding: 13px 15px;
  font-size: 15px;
  font-family: inherit;
  color: var(--navy);
  background: #fff;
  outline: none;
  transition: border-color 0.18s ease;
}
.field textarea {
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: #56636f;
  line-height: 1.5;
  cursor: pointer;
}
.consent input {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
  flex: none;
}
.consent a {
  color: var(--blue);
  font-weight: 600;
}
.form-submit {
  margin-top: 4px;
  width: 100%;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 13px;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
.form-submit:hover {
  background: var(--blue-dark);
}
.form-done {
  text-align: center;
  padding: 30px 10px;
}
.form-done__ico {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #eaf1ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-done h3 {
  margin: 0 0 10px;
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
}
.form-done p {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.7;
  color: #56636f;
}
.form-done__btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.form-done__btns .phone {
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 11px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.form-done__btns .kakao {
  background: var(--kakao);
  color: var(--kakao-text);
  border: none;
  border-radius: 11px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.hidden {
  display: none !important;
}

/* ---------- Footer ---------- */
.footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: var(--navy-2);
  color: #9fb0c4;
  padding: clamp(54px, 7vw, 84px) 0 0;
}
.footer__top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(32px, 4vw, 56px);
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__brand .logo__mark {
  background: #fff;
}
.footer__brand .logo__phone {
  background: var(--navy);
}
.footer__brand .logo__text {
  color: #fff;
}
.footer__brand > .logo {
  margin-bottom: 16px;
}
.footer__brand p {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.7;
  max-width: 300px;
}
.socials {
  display: flex;
  gap: 10px;
}
.socials a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cdd9e8;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}
.socials a:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-3px);
}
.footer__col-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer__links a {
  font-size: 14px;
  color: #9fb0c4;
  cursor: pointer;
  transition: color 0.18s ease;
}
.footer__links a:hover {
  color: #fff;
}
.footer__biz {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__biz-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  color: #cdd9e8;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}
.footer__biz-toggle .ico {
  display: flex;
  transition: transform 0.25s ease;
}
.footer__biz.open .footer__biz-toggle .ico {
  transform: rotate(180deg);
}
.footer__biz-body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 0.35s ease,
    opacity 0.3s ease;
}
.footer__biz.open .footer__biz-body {
  max-height: 360px;
  opacity: 1;
}
.footer__biz-grid {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.7;
  color: #8295aa;
  text-align: left;
}
.footer__bottom {
  padding: 24px 0 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.footer__copy {
  font-size: 12.5px;
  color: #6b7d92;
}
.footer__legal {
  display: flex;
  gap: 18px;
}
.footer__legal a {
  font-size: 12.5px;
  color: #9fb0c4;
  cursor: pointer;
}
.footer__legal a:hover {
  color: #fff;
}

/* ---------- Quick menu / mobile bar ---------- */
.quick {
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quick button {
  width: 66px;
  height: 66px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  border: none;
}
.quick .phone {
  background: #fff;
  border: 1px solid #e3e9f0;
  box-shadow: 0 8px 22px rgba(15, 39, 71, 0.12);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.quick .phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(15, 39, 71, 0.2);
}
.quick .phone span {
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
}
.quick .kakao {
  background: var(--kakao);
  box-shadow: 0 8px 22px rgba(254, 229, 0, 0.3);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.quick .kakao:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(254, 229, 0, 0.45);
}
.quick .kakao span {
  font-size: 11px;
  font-weight: 600;
  color: var(--kakao-text);
}
.quick .top {
  background: var(--navy);
  border: 1px solid transparent;
  box-shadow: 0 8px 22px rgba(15, 39, 71, 0.28);
  transition:
    transform 0.2s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}
.quick .top:hover {
  transform: translateY(-3px);
}
.quick .top svg {
  stroke: #fff;
  transition: stroke 0.28s ease;
}
.quick .top span {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  transition: color 0.28s ease;
}
/* TOP button inverts when it overlaps the dark footer band */
.quick .top.on-footer {
  background: #fff;
  border-color: #e3e9f0;
  box-shadow: 0 10px 26px rgba(15, 39, 71, 0.16);
}
.quick .top.on-footer svg {
  stroke: var(--navy);
}
.quick .top.on-footer span {
  color: var(--navy);
}

.mbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 800;
  display: none;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(15, 39, 71, 0.08);
}
.mbar button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  padding: 16px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}
.mbar .kakao {
  background: var(--kakao);
  color: var(--kakao-text);
}
.mbar .phone {
  background: var(--blue);
  color: #fff;
}
.mbar-spacer {
  height: 60px;
  display: none;
}

/* ========================================================
   Responsive — 768px breakpoint (mobile)
   ======================================================== */
@media (max-width: 768px) {
  .header__inner {
    height: 60px;
  }
  .btn-inquiry.header-only {
    display: none;
  }
  .reviews-desktop {
    display: none;
  }
  .reviews-mobile {
    display: flex;
  }
  .quick {
    display: none;
  }
  .mbar {
    display: flex;
  }
  .mbar-spacer {
    display: block;
  }
  .footer {
    position: static !important;
  }
  .main {
    margin-bottom: 0 !important;
  }
  .faq-side {
    position: static;
  }
  .faq-side h2 {
    white-space: normal;
  }
  .tl-row {
    grid-template-columns: 1fr;
  }
  .tl-row .tl-card {
    grid-column: 1 !important;
    margin-left: 46px !important;
    margin-right: 0 !important;
  }
  .timeline__line,
  .timeline__fill {
    left: 18px;
  }
  .tl-node {
    left: 18px;
  }
  .hero {
    min-height: auto;
    padding: 108px 0 64px;
  }
}

/* ========================================================
   Policy pages (privacy / terms)
   ======================================================== */
.policy-root {
  font-family: "Pretendard", system-ui, sans-serif;
  color: var(--navy-2);
  background: #fff;
  min-height: 100vh;
  transition: opacity 0.34s ease;
  animation: ip_in 0.5s ease both;
}
.policy-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border-2);
}
.policy-header__inner {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 40px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.policy-header .logo__text {
  font-size: 18px;
}
.policy-home {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  cursor: pointer;
}
.policy-main {
  max-width: 840px;
  margin: 0 auto;
  padding: clamp(40px, 7vw, 80px) clamp(18px, 5vw, 40px) clamp(60px, 8vw, 100px);
}
.policy-eyebrow {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 14px;
}
.policy-main h1 {
  margin: 0 0 14px;
  font-family: "Space Grotesk", "Pretendard", sans-serif;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.policy-meta {
  margin: 0 0 40px;
  font-size: 14px;
  color: var(--t-sub);
}
.policy-section {
  margin-bottom: 34px;
}
.policy-section h2 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}
.policy-section p {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--t-body);
}
.policy-links {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border-2);
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.policy-links a {
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.policy-links a.primary {
  color: var(--blue);
}
.policy-links a.muted {
  color: var(--t-sub);
}
.policy-footer {
  background: var(--navy-2);
  color: #6b7d92;
  padding: 28px clamp(18px, 5vw, 40px);
}
.policy-footer__inner {
  max-width: 840px;
  margin: 0 auto;
  font-size: 12.5px;
}

@media print {
  .loader,
  .quick,
  .mbar {
    display: none !important;
  }
}
