:root {
  --blue: #14309e;
  --black: #1a1a1a;
  --yellow: #f5c400;
  --red: #e42626;
  --ink: #1a1a1a;
  --gray: #666666;
  --line: #cccccc;
  --panel: #eef0f7;
  --cream: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background: var(--cream);
  height: 100%;
  height: 100dvh;
  overscroll-behavior-y: none;
}

body {
  background: var(--cream);
  font-family: 'Pretendard', sans-serif;
  display: flex;
  justify-content: center;
  min-height: 100%;
  min-height: 100dvh;
  margin: 0;
  overscroll-behavior-y: none;
}

.page {
  width: 420px;
  max-width: 100%;
  background: var(--cream);
  overflow: hidden;
  color: var(--ink);
}

/* HAZARD STRIPE */
.hazard {
  height: 8px;
  background: var(--yellow);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.68);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 100dvh;
  padding: 48px 26px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-logo {
  height: 88px;
  width: auto;
  filter: brightness(0) invert(1);
  display: block;
}

.logo-shine-wrap {
  position: relative;
  display: inline-block;
}

.logo-shine {
  position: absolute;
  inset: 0;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  background: linear-gradient(
    100deg,
    transparent 30%,
    rgba(255,255,255,0.15) 44%,
    rgba(255,255,255,0.95) 50%,
    rgba(255,255,255,0.15) 56%,
    transparent 70%
  );
  background-size: 260% 100%;
  background-position: 160% 0;
  animation: logo-shimmer 3.4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes logo-shimmer {
  0% { background-position: 160% 0; }
  35% { background-position: -60% 0; }
  100% { background-position: -60% 0; }
}

.hero-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: hero-rise 1.9s cubic-bezier(0.19, 1, 0.22, 1) 0.15s both;
}

@keyframes hero-rise {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-kicker {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--yellow);
}

.hero-title {
  margin-top: 12px;
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
}

.hero-title .y {
  color: var(--yellow);
}

.hero-sub {
  margin-top: 18px;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
}

.hero-note {
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}

.hero-actions {
  display: flex;
  gap: 8px;
  width: 100%;
}

.call-pill {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--yellow);
  color: var(--black);
  font-size: 21px;
  font-weight: 800;
  padding: 18px 12px;
  text-decoration: none;
}

.call-pill .ring-ico { font-size: 24px; }

.call-pill svg {
  stroke: var(--black);
}

.ring-ico {
  display: inline-block;
  animation: ring 1.2s ease-in-out infinite;
}

@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(-18deg); }
  20% { transform: rotate(16deg); }
  30% { transform: rotate(-14deg); }
  40% { transform: rotate(10deg); }
  50% { transform: rotate(-6deg); }
  60% { transform: rotate(0deg); }
}

.kakao-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  flex: 0 0 104px;
  background: var(--yellow);
  text-decoration: none;
  color: var(--black);
  font-size: 15px;
  font-weight: 900;
}

/* FLEET PHOTOS */
.fleet-photos {
  padding: 32px 22px 0;
}

.fleet-photos h2 {
  font-size: 20px;
  font-weight: 900;
  color: var(--ink);
}

.fleet-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.fleet-grid figure {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.fleet-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fleet-grid figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 6px 7px;
  background: rgba(26,26,26,0.85);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  text-align: center;
}

/* CALL STRIP */
.call-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 26px 0 0;
  padding: 16px 22px;
  background: var(--blue);
  text-decoration: none;
}

.call-strip.alt {
  background: var(--yellow);
}

.call-strip span {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

.call-strip.alt span {
  color: var(--black);
}

.call-strip b {
  font-size: 16px;
  font-weight: 900;
  color: var(--yellow);
  white-space: nowrap;
}

.call-strip.alt b {
  color: var(--black);
}

/* WORK TYPES */
.work-types {
  padding: 36px 22px 0;
}

.work-types h2 {
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
}

.wt-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: 2px solid var(--black);
}

.wt-item {
  padding: 18px 14px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid var(--line);
}

.wt-t {
  font-size: 16px;
  font-weight: 900;
  color: var(--ink);
}

.wt-s {
  font-size: 11.5px;
  color: var(--gray);
  font-weight: 500;
}

/* GALLERY BLOCK */
.gallery-block {
  padding: 36px 0 0;
}

.gallery-block h2 {
  padding: 0 22px;
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
}

.gallery-block > p {
  padding: 0 22px;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.6;
}

.gallery-block .mosaic-gallery {
  margin-top: 18px;
}

.gallery-block .target-row {
  padding: 16px 22px 4px;
}

/* DASHBOARD */
.dash {
  margin: 0;
  background: var(--blue);
  padding: 28px 10px 26px 20px;
  border-top: 6px solid var(--yellow);
  overflow: hidden;
}

.dash-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
}

.dash-text {
  display: flex;
  flex-direction: column;
  height: 232px;
}

.dash-tons {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
  height: 232px;
}

.dash-ton {
  flex: 1;
  width: 116px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px;
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.dash-ton span {
  font-size: 28px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.dash-label {
  margin: auto 0;
  font-size: 28px;
  color: #fff;
  line-height: 1.4;
  font-weight: 800;
}

.dash-label b {
  color: var(--yellow);
  font-weight: 900;
}

.dash-foot {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  font-weight: 700;
}

/* SECTION HEAD */
.section-head {
  padding: 36px 22px 16px;
}

.section-head h2 {
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.3px;
}

/* CLAIM BLOCK */
.claim-block {
  padding: 36px 22px 0;
}

.claim-block h2 {
  font-size: 25px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: -0.3px;
}

.claim-block h2 .hl {
  color: #fff;
  background: var(--blue);
  padding: 2px 6px;
  display: inline-block;
}

/* COMPARE TABLE */
.compare-table {
  margin-top: 22px;
  border: 2px solid var(--black);
}

.ct-row {
  display: grid;
  grid-template-columns: 92px 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.ct-row:last-child {
  border-bottom: none;
}

.ct-row.ct-head {
  border-bottom: 2px solid var(--black);
}

.ct-cell {
  padding: 13px 8px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  border-left: 1px solid var(--line);
}

.ct-cell:first-child {
  border-left: none;
  text-align: left;
  padding-left: 12px;
  font-weight: 800;
  background: var(--panel);
}

.ct-row.ct-head .ct-cell {
  font-weight: 900;
  font-size: 13.5px;
  background: var(--black);
  color: #fff;
  border-left-color: rgba(255,255,255,0.25);
}

.ct-row.ct-head .ct-cell:first-child {
  background: var(--black);
}

.ct-cell.ct-them {
  color: var(--gray);
}

.ct-cell.ct-us {
  font-weight: 900;
  color: var(--blue);
  background: var(--panel);
}

/* MEGA CTA */
.mega-cta {
  display: block;
  margin: 26px 22px 0;
  background: var(--yellow);
  padding: 20px;
  text-align: center;
  text-decoration: none;
}

.mega-cta.final {
  margin: 0 22px;
}

.mc-top {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--black);
}

.mc-phone {
  margin-top: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 28px;
  font-weight: 900;
  color: var(--black);
}

.mc-sub {
  margin-top: 5px;
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(0,0,0,0.65);
}

/* PROMO STRIP */
.promo-strip {
  margin: 26px 22px 0;
  background: var(--yellow);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ps-badge {
  background: var(--black);
  color: var(--yellow);
  font-size: 10.5px;
  font-weight: 800;
  padding: 4px 9px;
  flex-shrink: 0;
}

.ps-t {
  flex: 1;
  font-size: 14px;
  font-weight: 800;
  color: var(--black);
}

.ps-t b {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.ps-link {
  font-size: 12.5px;
  font-weight: 900;
  color: var(--black);
  text-decoration: none;
  white-space: nowrap;
}

/* MOSAIC GALLERY */
.mosaic-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 78px;
  gap: 2px;
  padding: 0 22px;
}

.m-cell {
  overflow: hidden;
  position: relative;
  grid-column: span 2;
  grid-row: span 2;
}

.m-cell.m-big {
  grid-column: span 4;
  grid-row: span 3;
}

.m-cell.m-wide {
  grid-column: span 4;
  grid-row: span 2;
}

.m-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.m-tag {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--black);
  color: var(--yellow);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
}

.proof-lead {
  padding: 0 22px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.6;
}

.target-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 16px 22px 0;
}

.target-row span {
  background: var(--black);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 13px;
}

/* FINAL PANEL */
.final-panel {
  margin: 0;
  background: var(--blue);
  padding: 44px 22px;
  min-height: calc(38vh - 96px);
  min-height: calc(38dvh - 96px);
  box-sizing: content-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-top: 8px solid var(--yellow);
  padding-bottom: calc(96px + env(safe-area-inset-bottom));
}
.fp-hero {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 28px;
}

.fp-hero .y {
  color: var(--yellow);
}

.fp-points {
  list-style: none;
  width: 100%;
  margin-bottom: 28px;
  text-align: left;
}

.fp-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}

.fp-points li:first-child {
  border-top: 1px solid rgba(255,255,255,0.2);
}

.fp-points b {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--black);
  font-size: 16px;
  font-weight: 900;
}

/* STICKY CTA */
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(0);
  width: 420px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  font-size: 24px;
  padding: 23px 16px;
  padding-bottom: calc(23px + env(safe-area-inset-bottom));
  text-align: center;
  text-decoration: none;
  border-top: 1px solid rgba(0,0,0,0.2);
  z-index: 50;
  transition: transform 0.3s ease;
}

.scroll-ready .sticky-cta {
  transform: translateX(-50%) translateY(100%);
}

.scroll-ready.has-scrolled .sticky-cta {
  transform: translateX(-50%) translateY(0);
}

.sticky-cta span { font-size: 22px; }
.sticky-cta .ring-ico { font-size: 25px; }
.sticky-cta b { font-size: 28px; }

/* PC / WIDE */
/* DIRECT, FIELD-FOCUSED CONTENT */
.direct-intro { padding: 40px 22px 24px; text-align: center; }
.red-label { display: inline-block; margin-bottom: 10px; padding: 6px 14px; background: var(--red); color: #fff !important; font-size: 16px !important; font-weight: 900 !important; }
.direct-intro h2 { font-size: 28px; line-height: 1.3; letter-spacing: -1px; }
.direct-intro > p { margin-top: 14px; color: #777c86; font-size: 17px; font-weight: 600; line-height: 1.65; }
.job-board,.real-field { padding: 40px 22px; }
.job-board { padding-bottom: 20px; }

.why-us {
  padding: 40px 22px;
  background: var(--blue);
  border-top: 6px solid var(--yellow);
}

.why-logo {
  display: block;
  width: 170px;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}

.why-lead {
  margin-top: 20px;
  text-align: center;
  font-size: 26px;
  color: #fff;
  font-weight: 800;
  line-height: 1.5;
}

.why-lead b {
  color: var(--yellow);
  font-weight: 900;
}

.why-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.25);
}

.why-item {
  background: var(--blue);
  padding: 20px 16px;
}

.why-num {
  display: block;
  font-size: 13px;
  font-weight: 900;
  color: var(--yellow);
}

.why-t {
  margin-top: 8px;
  font-size: 19px;
  font-weight: 900;
  color: #fff;
}

.why-s {
  margin-top: 6px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.why-promo {
  margin-top: 18px;
  padding: 14px 16px;
  background: var(--yellow);
  color: var(--black);
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}

.why-promo b {
  margin-right: 8px;
  padding: 3px 8px;
  background: var(--black);
  color: var(--yellow);
  font-size: 10px;
  font-weight: 900;
}
.plain-title span { display: block; color: var(--blue); font-size: 14px; font-weight: 900; }
.plain-title h2 { margin-top: 6px; font-size: 27px; line-height: 1.25; letter-spacing: -.5px; }
.plain-title h2:first-child { margin-top: 0; }
.job-grid { display: flex; flex-direction: column; gap: 5px; margin-top: 20px; }
.job-grid figure { position: relative; height: 260px; overflow: hidden; }
.job-grid img,.field-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; }
.job-grid figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 10px 11px;
  background: var(--blue);
  color: #fff;
}
.job-grid figcaption b,.job-grid figcaption span { display: block; }
.job-grid figcaption b { font-size: 19px; }.job-grid figcaption span { margin-top: 3px; font-size: 12px; }
.more-jobs {
  list-style: none;
  width: 100%;
  margin-top: 20px;
  text-align: left;
}

.more-jobs li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
}

.more-jobs li:first-child {
  border-top: 1px solid var(--line);
}

.more-jobs b {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.fleet-strip {
  position: relative;
  margin-top: 18px;
  height: 260px;
  overflow: hidden;
}

.fleet-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fleet-strip figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 14px 18px;
  background: rgba(20,48,158,0.88);
  text-align: center;
}

.fleet-strip b {
  color: var(--yellow);
  font-size: 17px;
  font-weight: 900;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  margin-top: 2px;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}

.check-list li {
  display: flex;
  gap: 7px;
  padding: 17px 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  font-weight: 800;
}

.check-list b {
  color: var(--red);
}

.big-phone { display: block; margin: 0 22px 46px; padding: 25px 20px; background: var(--yellow); color: var(--blue); text-align: center; text-decoration: none; border: 3px solid var(--blue); }
.big-phone span,.big-phone strong,.big-phone b,.big-phone small { display: block; }
.big-phone span { font-size: 13px; font-weight: 700; }.big-phone strong { margin-top: 5px; font-size: 24px; }.big-phone b { margin-top: 7px; color: var(--blue); font-size: 35px; }.big-phone small { margin-top: 5px; color: var(--ink); font-weight: 700; }
.big-phone .phone-wave .wave-digit,.big-phone .phone-wave .wave-separator { display: inline-block; font-size: inherit; }
.phone-wave.is-waving .wave-digit { animation: phone-wave-up .56s cubic-bezier(.22,.75,.28,1) both; animation-delay: var(--wave-delay); }

@keyframes phone-wave-up {
  0%, 100% { transform: translateY(0); }
  42% { transform: translateY(-13px); }
  68% { transform: translateY(3px); }
  84% { transform: translateY(-2px); }
}
.real-field { padding: 44px 14px; background: #fff; border-top: 1px solid var(--line); }
.real-field .plain-title { padding: 0 8px; }
.field-gallery { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 320px; grid-auto-rows: 250px; gap: 7px; margin-top: 22px; }
.field-gallery figure { overflow: hidden; }
.field-gallery .field-wide { grid-column: 1 / -1; height: auto; }
.blog-cta { display: block; margin-top: 14px; padding: 18px; background: #fff; border: 2px solid var(--blue); color: var(--ink); text-decoration: none; }
.blog-cta span,.blog-cta strong,.blog-cta b { display: block; }
.blog-cta span { color: var(--gray); font-size: 13px; font-weight: 700; }
.blog-cta strong { margin-top: 5px; font-size: 19px; }
.blog-cta b { margin-top: 12px; color: var(--blue); font-size: 15px; }
.dispatch-info { padding: 44px 22px; background: var(--panel); border-top: 1px solid var(--line); }.dispatch-info h2 { margin-bottom: 20px; font-size: 25px; line-height: 1.3; }.dispatch-info > div { display: flex; align-items: center; gap: 15px; padding: 14px 4px; border-top: 1px solid var(--line); }.dispatch-info > div b { color: var(--blue); font-size: 12px; }.dispatch-info > div span { font-size: 16px; font-weight: 900; }.dispatch-info p { padding: 14px; background: #fff; color: var(--gray); font-size: 12px; line-height: 1.5; }
.dispatch-info > div:last-of-type { border-bottom: 1px solid var(--line); }

/* SECTION TITLE REVEAL */
.reveal-ready .reveal-up { opacity: 0; transform: translateY(22px); transition: opacity .5s ease, transform .5s ease; }
.reveal-ready .reveal-up.is-visible { opacity: 1; transform: translateY(0); }

.reveal-ready .reveal-ton {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: calc(var(--i) * 0.12s);
}
.reveal-ready .reveal-ton.is-visible { opacity: 1; transform: translateX(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal-ready .reveal-up { opacity: 1; transform: none; transition: none; }
  .reveal-ready .reveal-ton { opacity: 1; transform: none; transition: none; }
  .phone-wave.is-waving .wave-digit { animation: none; }
}

