/* ============================================================
     서비스 소개 — 똑똑! 수학탐험대 인터랙티브 탐험 덱
     ============================================================ */
  #service-intro {
    padding: 24px;
    color: #f8fbff;
  }
  #service-intro .guidebook__overlay {
    background:
      radial-gradient(circle at 78% 18%, rgba(17, 190, 255, .2), transparent 28%),
      radial-gradient(circle at 12% 82%, rgba(125, 92, 255, .18), transparent 32%),
      rgba(2, 10, 30, .9);
    backdrop-filter: blur(16px) saturate(1.1);
  }
  .service-showcase {
    --service-blue: #13b9ef;
    --service-navy: #071a3d;
    --service-ink: #0d2348;
    --service-yellow: #ffc83d;
    --service-green: #73df85;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 316px minmax(0, 1fr);
    width: min(1460px, 96vw);
    height: min(860px, 92vh);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 32px;
    background: var(--service-navy);
    box-shadow: 0 42px 120px rgba(0, 0, 0, .58), inset 0 1px rgba(255,255,255,.1);
    animation: serviceDeckIn .65s cubic-bezier(.2, .85, .2, 1) both;
  }
  .guidebook.is-closing .service-showcase { animation: serviceDeckOut .26s ease both; }
  @keyframes serviceDeckIn {
    from { opacity: 0; transform: translateY(28px) scale(.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
  @keyframes serviceDeckOut {
    to { opacity: 0; transform: translateY(18px) scale(.98); }
  }

  .service-rail {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 34px 28px 28px;
    overflow-x: hidden;
    overflow-y: auto;
    background:
      radial-gradient(circle at 20% 4%, rgba(19, 185, 239, .22), transparent 28%),
      linear-gradient(180deg, #0a2b58 0%, #071a3d 70%);
    border-right: 1px solid rgba(255, 255, 255, .1);
  }
  .service-rail::after {
    content: '';
    position: absolute;
    right: -90px;
    bottom: 0;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(19, 185, 239, .18);
    border-radius: 50%;
    box-shadow: 0 0 0 34px rgba(19,185,239,.035), 0 0 0 70px rgba(19,185,239,.025);
    pointer-events: none;
  }
  .service-kicker {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 8px;
    margin-bottom: 18px;
    padding: 7px 11px;
    border: 1px solid rgba(115, 223, 133, .4);
    border-radius: 999px;
    color: #b7f5c1;
    background: rgba(115, 223, 133, .08);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
  }
  .service-kicker::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--service-green);
    box-shadow: 0 0 12px rgba(115, 223, 133, .9);
  }
  .service-rail__title {
    margin: 0 0 12px;
    color: #fff;
    font-family: "Jua", "Noto Sans KR", sans-serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: -.03em;
    word-break: keep-all;
  }
  .service-rail__title strong { color: var(--service-yellow); font-weight: 400; }
  .service-rail__desc {
    margin: 0;
    color: rgba(235, 245, 255, .68);
    font-size: 16px;
    line-height: 1.7;
    word-break: keep-all;
  }
  .service-route {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: safe center;
    gap: 7px;
    margin: 22px 0;
    padding-left: 0;
  }
  .service-route::before {
    content: '';
    position: absolute;
    top: 28px;
    bottom: 28px;
    left: 17px;
    width: 1px;
    background: linear-gradient(180deg, rgba(19,185,239,.1), rgba(19,185,239,.65), rgba(19,185,239,.1));
  }
  .service-route__item {
    position: relative;
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 11px;
    align-items: center;
    width: 100%;
    padding: 10px 9px 10px 0;
    border: 0;
    border-radius: 14px;
    color: rgba(235, 245, 255, .58);
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: color .2s ease, background .2s ease, transform .2s ease;
  }
  .service-route__item:hover { color: #fff; background: rgba(255,255,255,.05); transform: translateX(3px); }
  .service-route__item.is-active { color: #fff; background: rgba(19,185,239,.11); }
  .service-route__dot {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50%;
    color: rgba(255,255,255,.58);
    background: #0a2a55;
    font: 800 11px/1 "Noto Sans KR", sans-serif;
  }
  .service-route__item.is-active .service-route__dot {
    color: #062042;
    border-color: #92e9ff;
    background: var(--service-blue);
    box-shadow: 0 0 0 5px rgba(19,185,239,.12), 0 0 22px rgba(19,185,239,.4);
  }
  .service-route__copy strong { display: block; margin-bottom: 2px; font-size: 16px; font-weight: 800; }
  .service-route__copy span { display: block; font-size: 13px; color: rgba(235,245,255,.52); }
  .service-route__item.is-active .service-route__copy span { color: rgba(196,239,255,.72); }
  .service-login {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 15px;
    color: #082044;
    background: var(--service-yellow);
    box-shadow: 0 10px 28px rgba(255, 200, 61, .16);
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .service-login:hover { transform: translateY(-2px); box-shadow: 0 15px 32px rgba(255, 200, 61, .25); }
  .service-login span { font-size: 18px; }

  .service-stage {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    min-width: 0;
    min-height: 0;
    background:
      linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
      #f5f9ff;
    background-size: 42px 42px;
  }
  .service-stage__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    padding: 15px 22px 12px 28px;
    border-bottom: 1px solid #dce7f4;
    color: #57708f;
    background: rgba(255,255,255,.88);
  }
  .service-stage__status { display: flex; align-items: center; gap: 13px; }
  .service-stage__count {
    color: var(--service-blue);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .08em;
  }
  .service-stage__label { font-size: 16px; font-weight: 800; color: #25486c; }
  .service-close {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid #d8e4f0;
    border-radius: 50%;
    color: #17385f;
    background: #fff;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    transition: transform .2s ease, background .2s ease;
  }
  .service-close:hover { transform: rotate(90deg); background: #eef7ff; }

  .service-slides { min-height: 0; overflow: hidden; }
  .service-slide {
    display: none;
    grid-template-columns: minmax(0, 1.35fr) minmax(340px, .9fr);
    gap: clamp(22px, 3vw, 46px);
    align-items: safe center;
    height: 100%;
    padding: clamp(24px, 3.2vw, 48px);
    overflow-y: auto;
  }
  .service-slide.is-active { display: grid; animation: serviceSlideIn .5s cubic-bezier(.2,.75,.25,1) both; }
  @keyframes serviceSlideIn {
    from { opacity: 0; transform: translateX(18px); }
    to { opacity: 1; transform: translateX(0); }
  }
  .service-screen {
    position: relative;
    min-width: 0;
    padding: 10px;
    border: 1px solid #c9d8e8;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 24px 55px rgba(31, 74, 122, .18);
    transform: rotate(-.45deg);
  }
  .service-screen::before {
    content: '';
    position: absolute;
    z-index: -1;
    inset: 12px -12px -12px 12px;
    border-radius: 24px;
    background: #d8ecf8;
  }
  .service-screen img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    border-radius: 15px;
  }
  .service-story { max-width: 380px; }
  .service-story__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: #1688bb;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: .12em;
  }
  .service-story__eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--service-blue); }
  .service-story__heading-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 10px;
    margin-bottom: 14px;
  }
  .service-story__heading-line .service-story__eyebrow { margin-bottom: 0; }
  .service-coming-soon {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border: 1px solid #f2d58a;
    border-radius: 999px;
    color: #805d08;
    background: #fff8dc;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: -.01em;
    white-space: nowrap;
  }
  .service-story h2 {
    margin: 0 0 16px;
    color: var(--service-ink);
    font-family: "Jua", "Noto Sans KR", sans-serif;
    font-size: clamp(33px, 3vw, 50px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -.035em;
    word-break: keep-all;
  }
  .service-story h2 em { color: #0ea5d9; font-style: normal; }
  .service-story > p {
    margin: 0 0 24px;
    color: #526a85;
    font-size: 17px;
    line-height: 1.85;
    word-break: keep-all;
  }
  .service-points { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
  .service-points li {
    padding: 8px 11px;
    border: 1px solid #d8e6f3;
    border-radius: 999px;
    color: #274a70;
    background: #fff;
    font-size: 16px;
    font-weight: 800;
  }
  .service-insight {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 11px;
    margin-top: 26px;
    padding-top: 19px;
    border-top: 1px solid #dce6f0;
    color: #385571;
    font-size: 16px;
    line-height: 1.65;
  }
  .service-insight b { color: #0d9bce; font-size: 20px; }

  .service-slide--dense .service-story h2 { font-size: clamp(31px, 2.45vw, 42px); }
  .service-slide--dense .service-story > p { margin-bottom: 16px; line-height: 1.7; }
  .service-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 0;
  }
  .service-facts div {
    padding: 12px 10px;
    border: 1px solid #d8e6f3;
    border-radius: 14px;
    background: #fff;
  }
  .service-facts dt { margin-bottom: 3px; color: #7690aa; font-size: 13px; font-weight: 800; }
  .service-facts dd { margin: 0; color: #163b62; font-size: 16px; font-weight: 900; }
  .service-facts dd a { color: inherit; text-decoration: none; }
  .service-facts__operator { grid-column: 1 / -1; }
  .service-facts__operator dd a { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
  .service-facts__operator dd strong { font-size: 16px; }
  .service-facts__operator dd span { color: #52708e; font-size: 16px; font-weight: 700; }
  .service-facts dd a:hover,
  .service-facts dd a:focus-visible { color: #0b7bd6; text-decoration: underline; text-underline-offset: 3px; }

  .service-feature-grid,
  .service-catalog,
  .service-proof-list,
  .service-access-list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .service-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .service-feature-grid li {
    min-height: 72px;
    padding: 10px 11px;
    border: 1px solid #d9e6f2;
    border-radius: 13px;
    background: rgba(255,255,255,.82);
  }
  .service-feature-grid strong,
  .service-feature-grid span { display: block; }
  .service-feature-grid strong { margin-bottom: 3px; color: #143d67; font-size: 16px; }
  .service-feature-grid span { color: #6a8098; font-size: 16px; line-height: 1.5; }

  .service-catalog {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
  }
  .service-catalog li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 42px;
    padding: 8px 10px;
    border-left: 3px solid #13b9ef;
    border-radius: 8px 12px 12px 8px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(33,77,122,.06);
  }
  .service-catalog strong { color: #173f69; font-size: 13px; }
  .service-catalog span { color: #758ba2; font-size: 11px; text-align: right; }
  .service-note {
    margin: 14px 0 0 !important;
    padding: 10px 12px;
    border-radius: 12px;
    color: #66551b !important;
    background: #fff8d9;
    font-size: 12px !important;
    line-height: 1.55 !important;
  }

  .service-steps { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
  .service-steps li { display: grid; grid-template-columns: 30px 1fr; align-items: center; gap: 10px; }
  .service-steps b {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #07365d;
    background: #8de7fb;
    font-size: 14px;
  }
  .service-steps span { color: #6b8096; font-size: 16px; line-height: 1.55; }
  .service-steps strong { display: block; color: #153f69; font-size: 16px; }
  .service-roles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 16px; }
  .service-roles span { padding: 10px 8px; border: 1px solid #dce7f2; border-radius: 12px; color: #6f8499; background: #fff; font-size: 11px; line-height: 1.45; }
  .service-roles b { display: block; margin-bottom: 3px; color: #0d86b8; font-size: 13px; }

  .service-reward-gallery {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    min-width: 0;
    margin: 0;
    padding: 12px;
    border: 1px solid #c9d8e8;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 24px 55px rgba(31, 74, 122, .18);
    transform: rotate(-.35deg);
  }
  .service-reward-gallery::before {
    content: '';
    position: absolute;
    z-index: -1;
    inset: 12px -12px -12px 12px;
    border-radius: 24px;
    background: linear-gradient(145deg, #d8ecf8, #e7e1ff);
  }
  .service-reward-shot {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border-radius: 14px;
    background: #102c50;
  }
  .service-reward-shot img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform .35s ease;
  }
  .service-reward-shot:hover img { transform: scale(1.035); }
  .service-reward-shot span {
    position: absolute;
    left: 9px;
    bottom: 8px;
    padding: 5px 9px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 999px;
    color: #fff;
    background: rgba(4, 24, 57, .8);
    backdrop-filter: blur(7px);
    font-size: 13px;
    font-weight: 900;
  }
  .service-reward-loop {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: reward;
  }
  .service-reward-loop li {
    position: relative;
    min-height: 84px;
    padding: 12px 12px 11px 44px;
    border: 1px solid #d8e5f1;
    border-radius: 14px;
    background: rgba(255,255,255,.86);
    counter-increment: reward;
  }
  .service-reward-loop li::before {
    content: counter(reward);
    position: absolute;
    top: 12px;
    left: 12px;
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: #08365d;
    background: #8de7fb;
    font-size: 13px;
    font-weight: 900;
  }
  .service-reward-loop b,
  .service-reward-loop span { display: block; }
  .service-reward-loop b { margin-bottom: 3px; color: #123f6a; font-size: 16px; }
  .service-reward-loop span { color: #667e97; font-size: 16px; line-height: 1.5; word-break: keep-all; }
  .service-reward-message {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0 0 !important;
    padding: 11px 13px;
    border-radius: 13px;
    color: #fff !important;
    background: linear-gradient(135deg, #0d3767, #11699a);
    font-size: 16px !important;
    line-height: 1.5 !important;
  }
  .service-reward-message b { flex: 0 0 auto; color: #8de7fb; font-size: 16px; }

  .service-quote {
    margin: 0 0 15px;
    padding: 16px 18px;
    border: 0;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, #0d3767, #11699a);
    box-shadow: 0 12px 28px rgba(13,55,103,.18);
    font-family: "Jua", "Noto Sans KR", sans-serif;
    font-size: 22px;
    line-height: 1.35;
  }
  .service-proof-list { display: grid; gap: 7px; }
  .service-proof-list li { display: grid; grid-template-columns: 82px 1fr; gap: 8px; padding: 9px 11px; border-bottom: 1px solid #dce7f1; }
  .service-proof-list b { color: #0d88b9; font-size: 13px; }
  .service-proof-list span { color: #526c86; font-size: 12px; }
  .service-source-note { margin: 12px 0 0 !important; color: #8495a7 !important; font-size: 11px !important; line-height: 1.55 !important; }

  .service-access-list { display: grid; gap: 8px; }
  .service-access-list li { display: grid; grid-template-columns: 48px 1fr; align-items: center; gap: 11px; padding: 12px; border: 1px solid #dae7f2; border-radius: 13px; background: #fff; }
  .service-access-list > li > b { color: #0d9bce; font-size: 14px; letter-spacing: .08em; }
  .service-access-list span { color: #72869a; font-size: 16px; line-height: 1.5; }
  .service-access-list strong { display: block; margin-bottom: 2px; color: #173e66; font-size: 16px; }
  .service-start-actions { display: flex; gap: 8px; margin-top: 16px; }
  .service-start-actions a { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 44px; padding: 0 16px; border-radius: 999px; color: #fff; background: #0d2348; font-size: 16px; font-weight: 900; text-decoration: none; }
  .service-start-actions a.is-secondary { color: #244a70; border: 1px solid #d6e3ef; background: #fff; }
  .service-start-actions a:focus-visible { outline: 3px solid #ffc83d; outline-offset: 3px; }

  .service-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 74px;
    padding: 12px 28px;
    border-top: 1px solid #dce7f4;
    background: rgba(255,255,255,.9);
  }
  .service-progress { flex: 1; max-width: 360px; height: 4px; overflow: hidden; border-radius: 999px; background: #dce8f3; }
  .service-progress span { display: block; width: 16.666%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #12b9ef, #765df4); transition: width .35s ease; }
  .service-control-group { display: flex; gap: 8px; }
  .service-control {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 104px;
    height: 42px;
    padding: 0 16px;
    border: 1px solid #d6e3ef;
    border-radius: 999px;
    color: #23486f;
    background: #fff;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    font-weight: 900;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
  }
  .service-control:hover:not(:disabled) { transform: translateY(-2px); border-color: #56c8ee; background: #f1fbff; }
  .service-control--next { color: #fff; border-color: var(--service-ink); background: var(--service-ink); }
  .service-control--next:hover:not(:disabled) { color: #fff; background: #13396b; }
  .service-control:disabled { opacity: .35; cursor: default; }

  .service-route__item:focus-visible,
  .service-close:focus-visible,
  .service-control:focus-visible,
  .service-login:focus-visible {
    outline: 3px solid #ffc83d;
    outline-offset: 3px;
  }

  @media (max-width: 1020px) {
    #service-intro { padding: 12px; }
    .service-showcase { grid-template-columns: 1fr; height: min(920px, 96vh); border-radius: 24px; }
    .service-rail { display: block; padding: 17px 58px 15px 20px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
    .service-kicker { margin: 0 0 7px; }
    .service-rail__title { margin: 0; font-size: 24px; }
    .service-rail__title br, .service-rail__desc, .service-login { display: none; }
    .service-route { flex-direction: row; justify-content: flex-start; gap: 5px; margin: 14px 0 0; overflow-x: auto; }
    .service-route::before { display: none; }
    .service-route__item { grid-template-columns: 28px auto; flex: 0 0 auto; width: auto; padding: 7px 9px; }
    .service-route__dot { width: 28px; height: 28px; }
    .service-route__copy span { display: none; }
    .service-stage { min-height: 0; }
    .service-stage__top { position: absolute; z-index: 5; top: 12px; right: 12px; min-height: 0; padding: 0; border: 0; background: transparent; }
    .service-stage__status { display: none; }
    .service-close { color: #fff; border-color: rgba(255,255,255,.25); background: rgba(4,21,49,.72); }
    .service-slide { grid-template-columns: 1fr; align-content: start; gap: 28px; padding: 30px; overflow-y: auto; }
    .service-screen { width: min(760px, 100%); margin: 0 auto; }
    .service-story { max-width: 760px; margin: 0 auto; }
    .service-story h2 { font-size: 36px; }
    .service-insight { margin-top: 18px; }
    .service-feature-grid { grid-template-columns: repeat(3, 1fr); }
    .service-catalog { grid-template-columns: repeat(2, 1fr); }
    .service-reward-gallery { width: min(760px, 100%); margin: 0 auto; }
  }

  @media (max-width: 600px) {
    #service-intro { padding: 0; }
    .service-showcase { width: 100%; height: 100dvh; border: 0; border-radius: 0; }
    .service-rail { padding: 14px 52px 12px 15px; }
    .service-kicker { padding: 5px 8px; font-size: 12px; }
    .service-rail__title { font-size: 20px; }
    .service-route { margin-top: 10px; }
    .service-route__item { grid-template-columns: 26px; padding: 5px; }
    .service-route__dot { width: 26px; height: 26px; }
    .service-route__copy { display: none; }
    .service-slide { gap: 22px; padding: 22px 18px; }
    .service-screen { padding: 6px; border-radius: 16px; transform: none; }
    .service-screen::before { inset: 8px -6px -7px 7px; border-radius: 16px; }
    .service-screen img { border-radius: 10px; }
    .service-story h2 { margin-bottom: 10px; font-size: 30px; }
    .service-story > p { margin-bottom: 16px; font-size: 16px; line-height: 1.7; }
    .service-points li { padding: 7px 10px; font-size: 16px; }
    .service-insight { display: none; }
    .service-feature-grid { grid-template-columns: repeat(2, 1fr); }
    .service-feature-grid li { min-height: 58px; }
    .service-catalog { grid-template-columns: 1fr; }
    .service-roles { grid-template-columns: 1fr; }
    .service-roles span { padding: 7px 9px; }
    .service-reward-gallery { gap: 6px; padding: 6px; border-radius: 16px; transform: none; }
    .service-reward-gallery::before { inset: 8px -6px -7px 7px; border-radius: 16px; }
    .service-reward-shot { border-radius: 9px; }
    .service-reward-shot span { left: 5px; bottom: 5px; padding: 3px 6px; font-size: 12px; }
    .service-reward-loop { grid-template-columns: 1fr; }
    .service-reward-loop li { min-height: 0; padding: 9px 9px 9px 40px; }
    .service-reward-loop li::before { top: 10px; left: 9px; }
    .service-reward-message { align-items: flex-start; flex-direction: column; gap: 2px; }
    .service-quote { padding: 13px 15px; font-size: 19px; }
    .service-start-actions { flex-direction: column; }
    .service-controls { min-height: 64px; padding: 10px 16px; }
    .service-progress { max-width: none; }
    .service-control { min-width: 46px; width: 46px; padding: 0; }
    .service-control span { display: none; }
  }

  @media (prefers-reduced-motion: reduce) {
    .service-showcase,
    .guidebook.is-closing .service-showcase,
    .service-slide.is-active { animation: none; }
    .service-progress span { transition: none; }
  }
