/* ============================================================
   SERVICE PAGE
   ============================================================ */

   /* ---------- 0. Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* palette */
  --color-bg: #ffffff;
  --color-bg-alt: #f7faf9;
  --color-bg-deep: #f0f6f5;
  --color-ink: #0a1a1c;
  --color-ink-2: #2a3a3c;
  --color-muted: #6a7a7c;
  --color-line: #e6ebea;

  --color-primary: #00a0ab;
  --color-primary-dark: #007a82;
  --color-primary-soft: #e6faf7;

  --grad-splash: linear-gradient(
    135deg,
    rgba(0, 203, 212, 1) 17%,
    rgba(95, 223, 156, 0.94) 63%,
    rgba(190, 242, 100, 0.87) 88%
  );
  --grad-splash-deep: linear-gradient(
    135deg,
    #00cbd4 0%,
    #00a0ab 50%,
    #007a82 100%
  );

  --shadow-xs: 0 1px 2px rgba(10, 26, 28, 0.04);
  --shadow-sm: 0 4px 14px rgba(10, 26, 28, 0.06);
  --shadow-md: 0 12px 32px rgba(10, 26, 28, 0.08);
  --shadow-lg: 0 24px 60px rgba(10, 26, 28, 0.12);
  --shadow-glow: 0 20px 60px -10px rgba(0, 160, 171, 0.35);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --container-max: 1280px;
  --container-pad: 24px;

  --font-jp:
    "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Aclonica", sans-serif;
}

.page-service {
  background: #fff;
}

/* 히어로 진입 시 헤더 슬라이드 아웃 */
.site-header {
  transition: transform 0.3s ease;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

/* ---------- SERVICE HERO ---------- */   
.service-hero {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, #7df8fccc 0%, #6ee7b7 55%, #ffffff 100%);
  overflow: hidden;
  padding: 120px 0 160px;
}

.service-hero__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px 32px;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-hero__logo {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  margin: 0 0 10px;
  text-shadow: 0 2px 10px rgba(0, 100, 110, 0.18);
}

.service-hero__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 28px;
  opacity: 0.95;
  text-shadow: 0 1px 4px rgba(0, 100, 110, 0.15);
}

.service-hero__stage {
  position: relative;
  width: 100%;
  max-width: 340px;
  height: 360px;
  margin: 0 auto;
}

/* ---------- 카드 (가운데 고정) ---------- */
.service-hero__card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 300px;
  background: linear-gradient(135deg, #00cbd4 0%, #5fdf9c 100%);
  border-radius: 16px;
  box-shadow:
    0 20px 40px rgba(20, 40, 130, 0.28),
    0 8px 16px rgba(20, 40, 130, 0.15);
  padding: 22px 18px;
  color: #fff;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.card-chip {
  width: 40px;
  height: 32px;
  background: linear-gradient(135deg, #ffd66b 0%, #fbb034 100%);
  border-radius: 5px;
  margin-bottom: 14px;
}

.card-brand {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-bottom: auto;
}

.card-number {
  display: flex;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  opacity: 0.9;
}

/* ---------- 회전 오빗: 카드보다 오른쪽으로 시프트 + 크기 키움 ---------- */
.service-hero__orbit {
  position: absolute;
  top: 45%;
  left: calc(50% + 140px);
  width: 380px;
  height: 380px;
  margin: -190px 0 0 -190px;
  pointer-events: none;
  z-index: 2;
}

.orbit-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 67px;
  height: 67px;
  margin: -28px 0 0 -28px;
  background: rgba(255, 255, 255, 0.4);
  border: 1.25px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  --angle: calc(var(--i) * 72deg);
  --radius: 175px;
  --tilt: 0deg;
  /* 시작 위치 + 자기 기울기 */
  transform:
    rotate(var(--angle))
    translate(0, calc(var(--radius) * -1))
    rotate(var(--tilt));
  animation: orbit-counter 18s linear infinite;
}

.orbit-icon:nth-child(1) { --tilt: 25deg;  }
.orbit-icon:nth-child(2) { --tilt: -15deg; }
.orbit-icon:nth-child(3) { --tilt: -5deg;  }
.orbit-icon:nth-child(4) { --tilt: -35deg; }
.orbit-icon:nth-child(5) { --tilt: 25deg;  }

/* 위쪽 하이라이트 — 유리체럼 빛이 반짝이는 효과 */
.orbit-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.253) 0%,
    rgba(255, 255, 255, 0.15) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  border-radius: 16px 16px 0 0;
}

.orbit-icon svg {
  position: relative;
  z-index: 1;
}

.orbit-icon svg {
  width: 30px;
  height: 30px;
  display: block;
}

@keyframes orbit-counter {
  0%    { transform: rotate(calc(var(--angle) +   0deg)) translate(0, calc(var(--radius) * -1)) rotate(calc(var(--tilt) +   0deg - var(--angle) -   0deg)); }
  12.5% { transform: rotate(calc(var(--angle) +  45deg)) translate(0, calc(var(--radius) * -1)) rotate(calc(var(--tilt) -   7deg - var(--angle) -  45deg)); }
  25%   { transform: rotate(calc(var(--angle) +  90deg)) translate(0, calc(var(--radius) * -1)) rotate(calc(var(--tilt) -  20deg - var(--angle) -  90deg)); }
  37.5% { transform: rotate(calc(var(--angle) + 135deg)) translate(0, calc(var(--radius) * -1)) rotate(calc(var(--tilt) -   7deg - var(--angle) - 135deg)); }
  50%   { transform: rotate(calc(var(--angle) + 180deg)) translate(0, calc(var(--radius) * -1)) rotate(calc(var(--tilt) +   0deg - var(--angle) - 180deg)); }
  62.5% { transform: rotate(calc(var(--angle) + 225deg)) translate(0, calc(var(--radius) * -1)) rotate(calc(var(--tilt) +   7deg - var(--angle) - 225deg)); }
  75%   { transform: rotate(calc(var(--angle) + 270deg)) translate(0, calc(var(--radius) * -1)) rotate(calc(var(--tilt) +  20deg - var(--angle) - 270deg)); }
  87.5% { transform: rotate(calc(var(--angle) + 315deg)) translate(0, calc(var(--radius) * -1)) rotate(calc(var(--tilt) +   7deg - var(--angle) - 315deg)); }
  100%  { transform: rotate(calc(var(--angle) + 360deg)) translate(0, calc(var(--radius) * -1)) rotate(calc(var(--tilt) +   0deg - var(--angle) - 360deg)); }
}

@media (prefers-reduced-motion: reduce) {
  .service-hero__orbit,
  .orbit-icon {
    animation: none;
  }
}

@media (min-width: 1025px) {
  .service-hero {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, #7df8fccc 0%, #6ee7b7 55%, #ffffff 100%);
  overflow: hidden;
  padding: 80px 0 70px;
  }

  .service-hero__inner {
    padding: 64px 24px 56px;
    min-height: 640px;
  }
  .service-hero__logo {
    font-size: 60px;
  }
  .service-hero__lead {
    font-size: 18px;
    margin-bottom: 40px;
  }
  .service-hero__stage {
    max-width: 480px;
    height: 480px;
  }
  .service-hero__card {
    width: 200px;
    height: 300px;
    padding: 28px 22px;
  }
  .card-chip { width: 48px; height: 38px; margin-bottom: 18px; }
  .card-brand { font-size: 14px; }
  .card-number { font-size: 14px; gap: 10px; }
  .service-hero__orbit {
    left: 50%;
    width: 560px;
    height: 560px;
    margin: -280px 0 0 -280px;
  }
  .orbit-icon {
    width: 72px;
    height: 72px;
    margin: -36px 0 0 -36px;
    border-radius: 18px;
    --radius: 250px;
  }
  .orbit-icon svg {
    width: 38px;
    height: 38px;
  }
}

/* ---------- ANCHOR CHIPS (sticky) ---------- */   
.service-anchors {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.service-anchors__inner {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.service-anchors__inner::-webkit-scrollbar {
  display: none;
}

.service-anchors__list {
  display: flex;
  gap: 8px;
  padding: 12px 20px;
  margin: 0 auto;
  width: max-content;
  list-style: none;
  white-space: nowrap;
}

.anchor-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #6b7280;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.anchor-chip__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.anchor-chip:hover {
  border-color: #00a0ab;
  color: #00a0ab;
}

.anchor-chip.is-active {
  background: linear-gradient(135deg, #00cbd4 0%, #5fdf9c 100%);
  border-color: transparent;
  color: #fff;
  font-weight: 700;
}

@media (min-width: 1025px) {
  .service-anchors__list {
    gap: 20px;
  }
}

/* ---------- SERVICE SECTIONS ---------- */
.service-section {
  scroll-margin-top: 70px;
}

.service-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  min-height: 60vh;
}
/* ============================================================
   SERVICE SECTIONS
   ============================================================ */

.svc {
  --svc-color: var(--color-primary);
  --svc-bg: var(--color-primary-soft);
  --svc-ink: #0a1a1c;
  scroll-margin-top: 80px;
  border-bottom: 1px solid var(--color-line);
}
.svc:nth-of-type(even) {
  background: var(--color-bg-alt);
}

.svc--pay      { --svc-color: #00a0ab; --svc-bg: #e3f7f6; }
.svc--transit  { --svc-color: #3182f6; --svc-bg: #e4eeff; }
.svc--esim     { --svc-color: #00b386; --svc-bg: #ddf5ec; }
.svc--taxi     { --svc-color: #f0992a; --svc-bg: #fdf0db; }
.svc--insurance{ --svc-color: #7c5cfa; --svc-bg: #ece6ff; }

.svc .service-section__inner {
  padding: 64px 24px;
  min-height: 0;
}

/* ---------- header ---------- */
.svc__header {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-bottom: 48px;
}

.svc__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--svc-bg);
  color: var(--svc-color);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.svc__tag-num {
  opacity: 0.65;
  font-weight: 700;
}
.svc__tag-num::before { content: "— "; }

.svc__title {
  font-size: clamp(26px, 6.4vw, 42px);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: -0.03em;
  color: var(--color-ink);
  margin-bottom: 18px;
}

.svc__lead {
  font-size: 16px;
  line-height: 1.85;
  color: var(--color-ink-2);
  max-width: 580px;
}

.svc__highlights {
  list-style: none;
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.svc__highlights li {
  flex: 1;
  min-width: 90px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  text-align: center;
}
.svc:nth-of-type(even) .svc__highlights li { background: var(--color-bg); }
.svc__hl-num {
  display: block;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--svc-color);
  line-height: 1;
}
.svc__hl-num small {
  font-size: 14px;
  font-weight: 700;
  margin-left: 1px;
}
.svc__hl-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-muted);
  margin-top: 7px;
}

.svc__illust {
  background: var(--svc-bg);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.1;
}
.svc__illust::before,
.svc__illust::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #fff;
  opacity: 0.35;
}
.svc__illust::before { width: 56px; height: 56px; top: 22px; right: 22px; }
.svc__illust::after { width: 28px; height: 28px; bottom: 26px; left: 26px; }
.svc__illust svg {
  width: 100%;
  max-width: 300px;
  height: auto;
  position: relative;
  z-index: 1;
}

.svc__illust img {
  width: 80%;
  max-width: 300px;
  height: auto;
  position: relative;
  z-index: 1;
  object-fit: contain;
}

/* ---------- 서비스별 애니메이션 ---------- */
.svc__illust img { will-change: transform; transform-origin: center; }
@keyframes mpPayZoom { 0%,100% { transform: scale(1) rotate(-1.2deg); } 50% { transform: scale(1.06) rotate(1.2deg); } }
@keyframes mpTransitSway { 0%,100% { transform: translateX(-7px); } 50% { transform: translateX(7px); } }
@keyframes mpEsimPulse { 0%,100% { transform: scale(1); opacity: .9; } 50% { transform: scale(1.05); opacity: 1; } }
@keyframes mpTaxiBob { 0%,100% { transform: translateY(0); } 25% { transform: translateY(-6px); } 50% { transform: translateY(0); } 75% { transform: translateY(-2px); } }
@keyframes mpGuard { 0%,100% { transform: scale(1); } 50% { transform: scale(1.035); } }
.svc--pay       .svc__illust img { animation: mpPayZoom 4.2s ease-in-out infinite; }
.svc--transit   .svc__illust img { animation: mpGuard 4.6s ease-in-out infinite; }
.svc--esim      .svc__illust img { animation: mpGuard 4.6s ease-in-out infinite; }
.svc--taxi      .svc__illust img { animation: mpTaxiBob 2.6s ease-in-out infinite; }
.svc--insurance .svc__illust img { animation: mpGuard 4.6s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
  .svc__illust img { animation: none !important; }
}

.svc-block {
  margin-bottom: 44px;
}
.svc-block__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.svc-block__eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--svc-color);
}
.svc-block__title {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-top: 6px;
  color: var(--color-ink);
}

/* ---------- carousel ---------- */
.svc-carousel {
  overflow: hidden;
  margin: 0 -24px;
  padding: 4px 0;
}
.svc-carousel__track {
  display: flex;
  gap: 14px;
  padding: 0 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.svc-feat {
  flex: 0 0 82%;
  max-width: 360px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
}
.svc:nth-of-type(even) .svc-feat { background: var(--color-bg); }
.svc-feat__icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--svc-bg);
  display: grid;
  place-items: center;
  margin-bottom: 15px;
}
.svc-feat h4 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.45;
  margin-bottom: 8px;
  color: var(--color-ink);
}
.svc-feat p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-ink-2);
}

.svc-carousel__ctrl {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.svc-carousel__btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--color-line);
  background: #fff;
  color: var(--color-ink-2);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.svc-carousel__btn:hover {
  background: var(--svc-color);
  border-color: var(--svc-color);
  color: #fff;
}
.svc-carousel__btn:disabled {
  opacity: 0.4;
  cursor: default;
}
.svc-carousel__btn:disabled:hover {
  background: #fff;
  border-color: var(--color-line);
  color: var(--color-ink-2);
}

.svc-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 18px;
}
.svc-carousel__dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--color-line);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}
.svc-carousel__dots button.is-active {
  width: 22px;
  border-radius: 4px;
  background: var(--svc-color);
}

/* ---------- 이용방법 ---------- */
.svc-timeline {
  list-style: none;
  position: relative;
}
.svc-tl__step {
  display: flex;
  gap: 16px;
  padding-bottom: 28px;
}
.svc-tl__step:last-child { padding-bottom: 0; }

.svc-tl__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.svc-tl__num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--svc-color);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 800;
  z-index: 1;
}
.svc-tl__marker::after {
  content: "";
  flex: 1;
  width: 2px;
  background: var(--color-line);
  margin-top: 6px;
}
.svc-tl__step:last-child .svc-tl__marker::after { display: none; }

.svc-tl__body {
  flex: 1;
  min-width: 0;
  padding-top: 3px;
}
.svc-tl__body h4 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 7px;
  color: var(--color-ink);
}
.svc-tl__body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-ink-2);
  margin-bottom: 14px;
}
.svc-tl__img {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--svc-bg);
  border: 1px solid var(--color-line);
}
.svc-tl__img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- FEATURES ---------- */
.svc-cards {
  padding: 4px 0;
}
.svc-cards > .svc-carousel__track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  transform: none !important;
  transition: none;
}
.svc-cards .svc-feat,
.svc:nth-of-type(even) .svc-cards .svc-feat {
  flex: initial;
  max-width: none;
  background: var(--color-bg-alt);
  border: none;
  box-shadow: none;
  border-radius: 22px;
  padding: 24px 16px;
  text-align: center;
}
.svc-cards .svc-feat__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--svc-color);
  margin: 0 auto 14px;
}
.svc-cards .svc-feat__icon svg {
  width: 28px;
  height: 28px;
}
.svc-cards .svc-feat h4 {
  font-size: 15px;
}
.svc-cards .svc-feat p {
  font-size: 13.5px;
  line-height: 1.6;
}
.svc-cards + .svc-carousel__dots {
  display: none;
}
@media (max-width: 440px) {
  .svc-cards > .svc-carousel__track {
    gap: 10px;
  }
  .svc-cards .svc-feat,
  .svc:nth-of-type(even) .svc-cards .svc-feat {
    padding: 20px 12px;
  }
  .svc-cards .svc-feat h4 {
    font-size: 14px;
  }
  .svc-cards .svc-feat p {
    font-size: 12.5px;
  }
}
@media (max-width: 339px) {
  .svc-cards > .svc-carousel__track {
    grid-template-columns: 1fr;
  }
}
.svc-carousel .svc-feat__icon {
  background: var(--svc-color);
}
.svc-plancar {
  padding: 18px 0 6px;
}
.svc-plancar .svc-plan {
  flex: 0 0 78%;
  max-width: 300px;
  margin-top: 4px;
}

/* ---------- 이용방법 ---------- */
.svc-step {
  flex: 0 0 86%;
  max-width: 440px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}
.svc:nth-of-type(even) .svc-step {
  background: var(--color-bg);
}
.svc-step__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.svc-step__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--svc-color);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 800;
  flex-shrink: 0;
}
.svc-step__head h4 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: var(--color-ink);
}
.svc-step__img {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--svc-bg);
  border: 1px solid var(--color-line);
  margin-bottom: 14px;
}
.svc-step__img img {
  width: 100%;
  height: auto;
  display: block;
}
.svc-step p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-ink-2);
}

/* ---------- PLAN (eSIM / insurance) ---------- */
.svc-plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.svc-plan {
  background: #fff;
  border: 2px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  text-align: center;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.svc:nth-of-type(even) .svc-plan { background: var(--color-bg); }
.svc-plan:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.svc-plan.is-popular {
  border-color: var(--svc-color);
}
.svc-plan.is-popular::before {
  content: "おすすめ";
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--svc-color);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.svc-plan__days {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-ink-2);
  margin-bottom: 8px;
}
.svc-plan__price {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--color-ink);
  margin-bottom: 6px;
}
.svc-plan__price .yen {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-ink-2);
  margin-right: 1px;
}
.svc-plan__data {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 18px;
}
.svc-plan__feat {
  list-style: none;
  text-align: left;
  border-top: 1px solid var(--color-line);
  padding-top: 16px;
}
.svc-plan__feat li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 13px;
  color: var(--color-ink-2);
}
.svc-plan__feat li::before {
  content: "✓";
  color: var(--svc-color);
  font-weight: 900;
  flex-shrink: 0;
}

/* ---------- info ---------- */
.svc-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.svc-info__card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.svc:nth-of-type(even) .svc-info__card { background: var(--color-bg); }
.svc-info__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.svc-info__icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--svc-bg);
  color: var(--svc-color);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.svc-info__head h4 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}
.svc-info__list { list-style: none; }
.svc-info__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--color-line);
  font-size: 14px;
}
.svc-info__list li:last-child { border-bottom: none; }
.svc-info__list .lbl { color: var(--color-muted); font-weight: 500; }
.svc-info__list .val { color: var(--color-ink); font-weight: 700; text-align: right; }

.svc-info__tips { list-style: none; }
.svc-info__tips li {
  display: flex;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--color-line);
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-ink-2);
}
.svc-info__tips li:last-child { border-bottom: none; }
.svc-info__tipnum {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--svc-color);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  margin-top: 1px;
}

/* ---------- ポイント ---------- */
.svc-info__card {
  border-left: 3px solid var(--svc-color);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.svc-info__icon {
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
}
.svc-info__eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--svc-color);
  flex-shrink: 0;
}
.svc-info__tips {
  counter-reset: tip;
}
.svc-info__tips li {
  counter-increment: tip;
  align-items: baseline;
}
.svc-info__tips li::before {
  content: counter(tip, decimal-leading-zero);
  flex-shrink: 0;
  min-width: 18px;
  color: var(--svc-color);
  font-size: 13px;
  font-weight: 900;
}
.svc-info__tips .svc-info__tipnum {
  display: none;
}

/* ================ FAQ TAB ================ */
  .faq-section {
    padding: 100px 0 120px;
    background: var(--color-bg);
  }
  .faq-head {
    text-align: center;
    margin-bottom: 48px;
  }
  .faq-eyebrow {
    font-size: 13px;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .faq-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
  }
  .faq-sub {
    font-size: 17px;
    color: var(--color-ink-2);
  }

  .faq-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    width: max-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }
  .faq-tabs::-webkit-scrollbar { display: none; }
  .faq-tab {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 12px 22px;
    border-radius: 999px;
    background: var(--color-bg-deep);
    color: var(--color-ink-2);
    font-size: 14px;
    font-weight: 700;
    transition: all .15s;
  }
  .faq-tab:hover { background: var(--color-line); }
  .faq-tab.active {
    background: var(--color-ink); color: white;
  }

  .faq-list {
    max-width: 880px;
    margin: 0 auto;
    border-top: 1px solid var(--color-line);
  }
  .faq-item {
    border-bottom: 1px solid var(--color-line);
    cursor: pointer;
    transition: opacity .2s;
  }
  .faq-item.hidden { display: none; }
  .faq-q {
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px;
    padding: 24px 0;
  }
  .faq-q-label {
    display: flex; align-items: center; gap: 14px;
    flex: 1;
  }
  .faq-q-cat {
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.05em;
    flex-shrink: 0;
  }
  .faq-q-cat.pay { background: #e3f7f6; color: #00a0ab; }
  .faq-q-cat.transit { background: #e4eeff; color: #3182f6; }
  .faq-q-cat.esim { background: #ddf5ec; color: #00b386; }
  .faq-q-cat.taxi { background: #fdf0db; color: #f0992a; }
  .faq-q-cat.insur { background: #ece6ff; color: #7c5cfa; }
  .faq-q-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-ink);
    letter-spacing: -0.02em;
    transition: color 0.2s ease;
  }
  .faq-item.open .faq-q-text {
    color: var(--color-primary);
  }
  .faq-toggle {
    width: 24px; height: 24px;
    display: grid; place-items: center;
    flex-shrink: 0;
    color: var(--color-muted);
    background: none;
    transition:
      transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
      color 0.2s;
  }
  .faq-item.open .faq-toggle {
    color: var(--color-primary);
    transform: rotate(180deg);
  }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .faq-a-inner {
    font-size: 15px;
    color: var(--color-ink-2);
    line-height: 1.7;
    padding-left: 80px;
    padding-bottom: 24px;
  }

/* ============================================================
   DESKTOP
   ============================================================ */
@media (min-width: 721px) {
  .svc .service-section__inner {
    max-width: 688px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .svc-faq__inner { max-width: 688px; }
  .svc-cta__inner { padding: 60px 40px; }
}

@media (min-width: 1101px) {
  .svc .service-section__inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .svc-feat,
  .svc-carousel__track,
  .svc-faq__toggle,
  .svc-faq__a,
  .svc-cta__btn { transition: none; }
}