﻿:root {
  --bg: #ffffff;
  --paper: #ffffff;
  --line: rgba(0, 0, 0, 0.14);
  --line-strong: rgba(0, 0, 0, 0.3);
  --text: #000000;
  --muted: #3e202a;
  --panel: #000000;
  --accent: #85b92a;
  --accent-strong: #e7437b;
  --header-offset: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "Noto Sans KR", sans-serif;
}

.service-atlas-preview {
  transition: opacity 260ms ease;
}

.service-atlas-preview.is-atlas-fading {
  opacity: 0.42;
}

a {
  display: block;
}

img {
  max-width: 100%;
}

.container {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
}

.header-row {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: flex-end;
  gap: 10px;
  width: auto;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.brand-logo {
  display: block;
  width: clamp(132px, 16vw, 188px);
  height: auto;
  object-position: center center;
}

.brand:hover .brand-logo,
.brand:focus-visible .brand-logo {
  opacity: 0.94;
}

.brand:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 8px;
}

.brand-copy {
  display: inline-flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding-bottom: 2px;
  font-size: 0.8rem;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: none;
  white-space: nowrap;
}

.site-nav a,
.section-kicker,
.section-summary,
.hero-text,
.hero-note span,
.hero-note p,
.service-item p,
.service-item li,
.capability-copy p,
.capability-row span {
  color: var(--detail-accent, #111111);
}

.hero-message h1,
.section-summary,
.capability-open-summary,
.capability-open-insights h3,
.capability-open-insights p {
  word-break: keep-all;
  line-break: strict;
}

.brand-copy span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  gap: 10px 18px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lang-btn {
  appearance: none;
  border: 1px solid var(--line);
  background: #ffffff;
  min-width: 34px;
  height: 30px;
  padding: 0;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  display: inline-grid;
  place-items: center;
}

.lang-btn.is-active {
  border-color: var(--line-strong);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.site-nav a {
  text-decoration: none;
  font-size: 0.92rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent-strong);
}

.service-nav-sticky {
  position: sticky;
  top: var(--header-offset);
  z-index: 24;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  transition: opacity 220ms ease, transform 220ms ease;
}

body.detail-lock .service-nav-sticky {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

.service-route {
  position: relative;
  padding: 10px 0 8px;
}

.service-route-track {
  position: relative;
  height: 28px;
  padding-inline: 18px;
}

.service-route-line,
.service-route-progress {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
}

.service-route-line {
  background: var(--line);
}

.service-route-progress {
  right: auto;
  width: var(--route-fill, 0%);
  background: var(--route-accent, rgba(133, 185, 42, 0.8));
}

.service-route-bus {
  position: absolute;
  top: 50%;
  left: var(--route-position, 0%);
  width: 34px;
  height: 26px;
  color: #111111;
  transform: translate(-50%, -72%) scale(1);
  transform-origin: center center;
  transition: left 220ms ease, transform 220ms ease;
  will-change: left, transform;
}

.service-route-bus {
  cursor: grab;
  touch-action: none;
}

body.service-route-dragging .service-route-bus {
  cursor: grabbing;
}

.service-route-bus svg {
  display: block;
  width: 100%;
  height: 100%;
}

.service-route-stop {
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--stop-accent, var(--accent-strong)) 20%, white);
  border: 1px solid color-mix(in srgb, var(--stop-accent, var(--accent-strong)) 55%, white);
  transform: translate(-50%, -50%);
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.service-route-stop.is-active {
  background: var(--stop-accent, var(--accent-strong));
  border-color: var(--stop-accent, var(--accent-strong));
  transform: translate(-50%, -50%) scale(1.08);
}

.service-nav-sticky.is-arrived .service-route-bus {
  transform: translate(-50%, -72%) scale(1.12);
}

.hero-section {
  padding: 18px 0 0;
}

.hero-stage {
  position: relative;
  display: block;
  width: 100%;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.hero-visuals {
  position: relative;
  width: 100%;
  height: clamp(420px, 56vw, 660px);
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity 1350ms ease;
}

.hero-visual.is-active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 10%;
  left: 9%;
  width: min(900px, 70%);
  display: grid;
  gap: 18px;
}

.section-kicker {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2,
h3,
strong {
  margin: 0;
  letter-spacing: -0.04em;
}

.hero-message {
  max-width: 900px;
}

.hero-message h1 {
  font-size: clamp(1.9rem, 2.9vw, 3.2rem);
  line-height: 1.08;
  text-transform: none;
  font-weight: 700;
  color: var(--text);
}

.hero-brand {
  color: #000000;
  letter-spacing: 0.035em;
}

.hero-rest {
  color: #2d2736;
}

.hero-note {
  max-width: 360px;
  margin-top: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
}

.hero-note span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-note p {
  margin: 0;
  line-height: 1.7;
}

.hero-cta {
  appearance: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  align-self: center;
  min-height: 56px;
  width: fit-content;
  margin-top: 2px;
  padding: 0 22px;
  text-decoration: none;
  background: var(--accent-strong);
  color: var(--paper);
  border: 1px solid var(--accent-strong);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-cta:focus-visible,
.contact-submit:focus-visible,
.contact-close:focus-visible {
  outline: 2px solid rgba(133, 185, 42, 0.28);
  outline-offset: 2px;
}

.ticker-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 0;
  padding: 8px;
  border-top: 1px solid var(--line);
  border-bottom: 0;
  background: transparent;
}

.ticker-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 58px;
  padding: 14px 14px;
  border-right: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  color: #111111;
  text-decoration: none;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.ticker-link::before {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--ticker-accent, var(--accent-strong));
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  pointer-events: none;
  transition: transform 160ms ease, opacity 160ms ease;
}

.ticker-link::after {
  content: '↗';
  flex: 0 0 auto;
  opacity: 0.55;
  transform: translateY(-1px);
  transition: transform 160ms ease, opacity 160ms ease;
}

.ticker-link:hover,
.ticker-link:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  color: #000000;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.ticker-link:focus-visible {
  outline: 2px solid rgba(133, 185, 42, 0.28);
  outline-offset: 2px;
}

.ticker-link:hover::after,
.ticker-link:focus-visible::after {
  opacity: 0.9;
  transform: translate(2px, -2px);
}

.ticker-link.is-active {
  background: rgba(255, 255, 255, 0.98);
  color: #000000;
  transform: translateY(-1px);
}

.ticker-link.is-active::before {
  transform: scaleX(1);
  opacity: 1;
}

.ticker-link.is-active::after {
  opacity: 0.9;
}

.ticker-link:last-child {
  border-right: 0;
}

.index-section,
.capability-section,
.company-section,
.contact-section {
  padding: 34px 0 0;
}

.company-section {
  padding: 0;
}

.section-head-grid,
.capability-grid,
.contact-grid {
  display: grid;
  gap: 24px;
}

.section-head-grid,
.capability-grid,
.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
}

.section-summary {
  margin: 36px 0 0;
  max-width: 34ch;
  line-height: 1.58;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  letter-spacing: -0.02em;
}

.services-flow {
  padding-top: 26px;
  padding-bottom: 10px;
}

.services-flow-track {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 20px minmax(0, 1.1fr) 20px minmax(0, 1fr) 20px minmax(0, 0.95fr) 20px minmax(0, 1fr);
  align-items: center;
  gap: 0;
}

.services-flow-step {
  min-height: 92px;
  padding: 14px 14px 12px;
  border: 1px solid var(--line);
  border-top: 2px solid var(--flow-accent, #85b92a);
  background: #ffffff;
}

.services-flow-index {
  display: block;
  margin-bottom: 10px;
  font: 700 12px 'Noto Sans KR', sans-serif;
  letter-spacing: 0.12em;
  color: var(--flow-accent, #85b92a);
}

.services-flow-step strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.services-flow-step p {
  margin: 8px 0 0;
  font-size: 0.84rem;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--muted);
}

.services-flow-arrow {
  position: relative;
  height: 1px;
  background: var(--line);
}

.services-flow-arrow::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--line-strong);
  border-right: 1px solid var(--line-strong);
  transform: translateY(-50%) rotate(45deg);
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.capability-open {
  padding: 56px 0 18px;
  background: linear-gradient(180deg, #fcfcfa 0%, #f9f8f4 100%);
}

.capability-open-head {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
  padding-bottom: 26px;
}

.capability-open-head h2 {
  margin: 0;
  font-size: clamp(1.95rem, 3.9vw, 3.25rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-transform: none;
  max-width: 16ch;
}

.capability-open-summary {
  margin: 2px 0 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
  line-height: 1.72;
  text-align: center;
}

.capability-open-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20px minmax(0, 1fr) 20px minmax(0, 1fr) 20px minmax(0, 1fr);
  align-items: center;
  gap: 0;
  padding: 14px 0 8px;
}

.capability-open-step {
  display: grid;
  gap: 8px;
  min-height: 0;
  padding: 12px 14px;
  border: 1px solid #ececec;
  background: #ffffff;
}

.capability-open-step strong {
  display: block;
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.capability-open-step span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.capability-open-step.step-route {
  border-top: 2px solid #efbb45;
}

.capability-open-step.step-control {
  border-top: 2px solid #2380f1;
}

.capability-open-step.step-erp {
  border-top: 2px solid #32b154;
}

.capability-open-step.step-fuel {
  border-top: 2px solid #1b3479;
}

.capability-open-join {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d58b95;
  font-size: 1.06rem;
  font-weight: 700;
}

.capability-open-core {
  margin: 28px auto 0;
  max-width: 840px;
  padding: 34px 18px 30px;
  text-align: center;
  background: radial-gradient(circle at 50% 42%, rgba(231, 67, 123, 0.1), rgba(255, 255, 255, 0) 62%);
}

.capability-open-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  width: min(100%, 532px);
}

.capability-open-icons img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.capability-open-focus {
  padding: 0;
  text-align: center;
}

.capability-open-focus-note {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.capability-open-focus h3 {
  margin: 10px 0 0;
  font-size: clamp(2.3rem, 4.6vw, 3.9rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: #e7437b;
}

.capability-open-insights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 26px 0 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  width: min(100%, 1180px);
  margin: 0 auto;
}

.capability-open-insights article {
  display: grid;
  align-content: start;
  gap: 14px;
}

.capability-open-insights span {
  color: var(--muted);
  font: 700 0.8rem 'Noto Sans KR', sans-serif;
  letter-spacing: 0.1em;
}

.capability-open-insights h3 {
  margin: 0;
  font-size: clamp(1.18rem, 1.65vw, 1.55rem);
  line-height: 1.34;
  letter-spacing: -0.03em;
  text-transform: none;
}

.capability-open-insights p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.84;
}

.capability-open-cta {
  display: flex;
  justify-content: center;
  padding: 24px 0 6px;
}

.capability-open-cta button {
  appearance: none;
  border: 1px solid #111111;
  border-top: 4px solid #2380f1;
  background: #ffffff;
  color: #111111;
  min-height: 50px;
  padding: 0 34px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.capability-grid {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.capability-copy p {
  margin: 20px 0 0;
  max-width: 48ch;
  line-height: 1.7;
}

.capability-list {
  border-left: 1px solid var(--line);
}

.capability-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.capability-row strong {
  font-size: 1.2rem;
}

.affiliate-section {
  padding: 18px 0 10px;
}

.affiliate-shell {
  position: relative;
  padding: clamp(20px, 2.2vw, 28px);
  border: 1px solid rgba(32, 76, 168, 0.09);
  border-radius: 22px;
  background:
    radial-gradient(circle at 14% 22%, rgba(67, 112, 214, 0.08), transparent 24%),
    radial-gradient(circle at 82% 20%, rgba(67, 112, 214, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 18px 42px rgba(22, 55, 121, 0.08);
  overflow: hidden;
}

.affiliate-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.15)),
    radial-gradient(circle at 60% 15%, rgba(67, 112, 214, 0.08) 0, transparent 38%);
  pointer-events: none;
}

.affiliate-hero,
.affiliate-grid {
  position: relative;
  z-index: 1;
}

.affiliate-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  align-items: center;
  gap: 20px;
}

.affiliate-copy h2 {
  margin: 8px 0 0;
  color: #11234d;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.06em;
}

.affiliate-summary {
  max-width: 36ch;
  margin: 14px 0 0;
  color: rgba(17, 35, 77, 0.62);
  font-size: 0.96rem;
  line-height: 1.58;
  letter-spacing: -0.03em;
  word-break: keep-all;
}

.affiliate-orbit {
  position: relative;
  min-height: 220px;
  display: grid;
  place-items: center;
}

.affiliate-orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(92, 131, 221, 0.12);
}

.affiliate-orbit-ring.ring-outer {
  width: min(100%, 280px);
  aspect-ratio: 1;
  border-style: solid;
}

.affiliate-orbit-ring.ring-middle {
  width: min(72%, 208px);
  aspect-ratio: 1;
  opacity: 0.7;
  box-shadow: none;
}

.affiliate-orbit-ring.ring-inner {
  width: min(64%, 172px);
  aspect-ratio: 1;
  background: #ffffff;
  border-color: rgba(92, 131, 221, 0.08);
  box-shadow: 0 10px 24px rgba(34, 62, 126, 0.06);
}

.affiliate-orbit-node {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(77, 139, 255, 0.72);
  box-shadow: none;
}

.affiliate-orbit-node.node-top { top: calc(50% - 98px); left: 50%; transform: translateX(-50%); }
.affiliate-orbit-node.node-right { top: 50%; right: calc(50% - 98px); transform: translateY(-50%); }
.affiliate-orbit-node.node-bottom { bottom: calc(50% - 98px); left: 50%; transform: translateX(-50%); }
.affiliate-orbit-node.node-left { top: 50%; left: calc(50% - 98px); transform: translateY(-50%); }

.affiliate-core {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 4px;
  text-align: center;
  padding: 0;
}

.affiliate-core img {
  width: min(96px, 44%);
  object-fit: contain;
}

.affiliate-core strong {
  color: #163476;
  font-size: clamp(1.08rem, 1.3vw, 1.36rem);
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.affiliate-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.affiliate-card {
  min-height: 220px;
  padding: 18px 14px 16px;
  border: 1px solid rgba(72, 108, 184, 0.11);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 255, 0.94));
  box-shadow: 0 8px 18px rgba(24, 47, 97, 0.05);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.affiliate-card:hover,
.affiliate-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(53, 96, 191, 0.24);
  background: linear-gradient(180deg, #ffffff, rgba(243, 247, 255, 0.98));
  box-shadow: 0 16px 28px rgba(24, 47, 97, 0.1);
}

.affiliate-card:hover .affiliate-logo-wrap img,
.affiliate-card:focus-within .affiliate-logo-wrap img {
  transform: scale(1.03);
}

.affiliate-logo-wrap {
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}

.affiliate-logo-wrap img {
  max-width: 82%;
  max-height: 52px;
  object-fit: contain;
  transition: transform 180ms ease;
}

.affiliate-card h3 {
  margin: 0;
  color: #172f68;
  font-size: 1.08rem;
  letter-spacing: -0.04em;
}

.affiliate-name {
  margin: 6px 0 0;
  color: rgba(23, 47, 104, 0.82);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: -0.03em;
}

.affiliate-desc {
  margin: 12px 0 0;
  color: rgba(17, 35, 77, 0.58);
  font-size: 0.83rem;
  line-height: 1.55;
  letter-spacing: -0.03em;
  word-break: keep-all;
}

.service-trust-shell {
  position: relative;
  width: 100%;
  border: 0;
  background:
    radial-gradient(circle at 86% 0%, rgba(86, 133, 230, 0.22) 0%, rgba(86, 133, 230, 0) 26%),
    radial-gradient(circle at 10% 100%, rgba(68, 110, 194, 0.2) 0%, rgba(68, 110, 194, 0) 32%),
    linear-gradient(140deg, #03153f 0%, #07266a 48%, #123f92 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  padding: clamp(34px, 3.2vw, 44px) 0 clamp(26px, 2.6vw, 34px);
  overflow: hidden;
}

.service-trust-inner {
  width: min(1360px, calc(100% - 40px));
  margin: 0 auto;
}

.service-trust-shell::before {
  content: '';
  position: absolute;
  right: -120px;
  top: 110px;
  width: 760px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: -18px -18px 0 0 rgba(255, 255, 255, 0.08), -36px -36px 0 0 rgba(255, 255, 255, 0.06), -54px -54px 0 0 rgba(255, 255, 255, 0.04), -72px -72px 0 0 rgba(255, 255, 255, 0.03);
  transform: rotate(-8deg);
  opacity: 0.75;
  pointer-events: none;
}

.service-trust-shell::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.24) 1px, transparent 1.2px) 0 0 / 13px 13px;
  mask-image: linear-gradient(100deg, transparent 0 67%, rgba(0, 0, 0, 0.95) 79% 100%);
  opacity: 0.22;
}

.service-trust-head {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
}

.service-trust-head .section-kicker {
  color: rgba(238, 245, 255, 0.96);
  font-size: clamp(0.76rem, 0.84vw, 0.88rem);
  letter-spacing: -0.01em;
  text-transform: none;
}

.service-trust-head h2 {
  color: #ffffff;
  text-transform: none;
  font-size: clamp(1.7rem, 3vw, 2.95rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.service-trust-grid {
  position: relative;
  z-index: 1;
  margin-top: clamp(22px, 2.4vw, 30px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 14px;
}

.service-trust-card {
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  gap: 6px;
  min-height: 158px;
  padding: 2px 6px 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.service-trust-card.tone-blue { --service-tone: #2f6df6; }
.service-trust-card.tone-green { --service-tone: #32b154; }
.service-trust-card.tone-cyan { --service-tone: #2cb0da; }
.service-trust-card.tone-pink { --service-tone: #ef5f88; }
.service-trust-card.tone-violet { --service-tone: #7866f3; }
.service-trust-card.tone-yellow { --service-tone: #efbb45; }

.service-trust-card h3 {
  display: inline-grid;
  justify-items: center;
  margin: 0;
  color: #ffffff;
  font-size: clamp(0.98rem, 1.14vw, 1.18rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.service-trust-card h3::before {
  content: '';
  display: block;
  width: 100%;
  max-width: 100%;
  height: 1px;
  margin-bottom: 6px;
  background: color-mix(in srgb, var(--service-tone, #2f6df6) 92%, #ffffff 8%);
}

.service-trust-card p {
  margin: 2px 0 0;
  color: rgba(227, 239, 255, 0.9);
  font-size: clamp(0.7rem, 0.78vw, 0.84rem);
  line-height: 1.42;
  letter-spacing: -0.01em;
}

.service-trust-cta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.service-trust-cta button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: 12px;
  min-width: 176px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #ffffff;
  font: 700 0.8rem 'Noto Sans KR', sans-serif;
  letter-spacing: -0.02em;
  box-shadow: none;
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-trust-cta button span {
  font-size: 0.9rem;
  line-height: 1;
  transition: transform 220ms ease;
}

.service-trust-cta button:hover,
.service-trust-cta button:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow: 0 8px 16px rgba(7, 16, 42, 0.34);
}

.service-trust-cta button:hover span,
.service-trust-cta button:focus-visible span {
  transform: translateX(3px);
}

.contact-grid {
  align-items: end;
  border-top: 1px solid var(--line);
  padding: 24px 0 34px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, #04132f 0%, #020c20 100%);
  color: rgba(235, 242, 255, 0.9);
  padding: 24px 0 28px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
  justify-items: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(12, 24, 52, 0.14);
}

.footer-logo {
  display: block;
  width: min(168px, 100%);
  height: auto;
  filter: none;
}

.footer-copy {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.footer-copy p {
  margin: 0;
  font: 400 0.85rem/1.56 "Noto Sans KR", sans-serif;
  color: rgba(230, 239, 255, 0.86);
  letter-spacing: -0.01em;
  word-break: keep-all;
}

.footer-copyright {
  margin-top: 2px;
  font-size: 0.8rem;
  color: rgba(212, 226, 252, 0.76);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  min-height: 90px;
  padding: 0 24px;
  background: var(--panel);
  color: var(--paper);
  text-decoration: none;
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  letter-spacing: -0.03em;
}

.contact-overlay {
  position: fixed;
  inset: 0;
  z-index: 65;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.84);
}

.contact-overlay[hidden] {
  display: none;
}

.contact-backdrop {
  position: absolute;
  inset: 0;
}

.contact-panel {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.contact-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--line);
}

.contact-panel-head h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  text-transform: none;
}

.contact-close {
  appearance: none;
  border: 1px solid var(--line-strong);
  background: #ffffff;
  color: #111111;
  min-height: 40px;
  padding: 0 14px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.contact-form {
  padding: 22px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field-wide {
  grid-column: 1 / -1;
}

.contact-field span {
  font-size: 0.82rem;
  letter-spacing: -0.02em;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #ffffff;
  color: #111111;
  padding: 12px 14px;
  font: inherit;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: 2px solid rgba(133, 185, 42, 0.2);
  outline-offset: 1px;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}

.contact-status {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.62);
}

.contact-submit {
  appearance: none;
  border: 1px solid var(--line-strong);
  background: #111111;
  color: #ffffff;
  min-height: 44px;
  padding: 0 18px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

body.contact-lock {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .section-head-grid,
  .capability-grid,
  .contact-grid,
  .ticker-row {
    grid-template-columns: 1fr;
  }

  .service-trust-inner {
    width: min(100% - 28px, 1280px);
  }

  .service-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .service-trust-card {
    min-height: 142px;
  }

  .hero-overlay {
    position: static;
    width: 100%;
    margin-top: 18px;
  margin-inline: auto;
  }

  .capability-list {
    border-left: 0;
    padding-left: 0;
  }

  .capability-open-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 10px 0 6px;
  }

  .capability-open-step {
    padding: 12px;
    min-width: 0;
  }

  .capability-open-step.step-fuel {
    grid-column: span 2;
  }

  .capability-open-join {
    display: none;
  }

  .capability-open-insights {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ticker-link {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-item-wide,
  .service-item:not(.service-item-wide):not(.accent-panel):not(.service-item-dark),
  .accent-panel,
  .service-item-dark {
    grid-column: span 12;
  }

  .service-route {
    padding: 8px 0 6px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1280px);
  }

  .header-row {
    flex-direction: column;
    align-items: stretch;
    padding: 14px 0;
    gap: 12px;
  }

  .site-nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
  }

  .lang-switch {
    justify-content: center;
    width: 100%;
  }

  .capability-open {
    padding-top: 40px;
  }

  .capability-open-head {
    gap: 8px;
    padding-bottom: 16px;
  }

  .capability-open-head h2 {
    font-size: clamp(1.48rem, 6.3vw, 2.02rem);
    line-height: 1.02;
    white-space: normal;
  }

  .capability-open-summary {
    font-size: 0.9rem;
    line-height: 1.54;
  }

  .capability-open-flow {
    grid-template-columns: 1fr;
    padding-top: 8px;
    padding-bottom: 4px;
  }

  .capability-open-step {
    padding: 10px 10px 11px;
  }

  .capability-open-step.step-fuel {
    grid-column: auto;
  }

  .capability-open-step strong {
    font-size: 0.9rem;
  }

  .capability-open-step span {
    margin-top: 4px;
    font-size: 0.76rem;
    line-height: 1.38;
  }

  .capability-open-core {
    margin-top: 20px;
    padding: 18px 6px 18px;
  }

  .capability-open-icons {
    width: min(100%, 364px);
    margin-bottom: 6px;
  }

  .capability-open-focus {
    padding: 0;
    text-align: left;
  }

  .capability-open-focus h3 {
    margin-top: 8px;
    font-size: clamp(1.63rem, 6.9vw, 2.3rem);
    line-height: 1.08;
  }

  .capability-open-insights {
    padding: 16px 0 18px;
    gap: 12px;
  }

  .capability-open-insights h3 {
    font-size: 1.1rem;
    line-height: 1.26;
  }

  .capability-open-insights p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .capability-open-cta {
    justify-content: flex-start;
    padding-top: 14px;
  }

  .capability-open-cta button {
    width: 100%;
    min-height: 46px;
    padding: 0 12px;
    text-align: center;
  }

  .site-nav a {
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .site-nav-primary {
    align-self: auto;
  }

  h2 {
    font-size: 2rem;
    line-height: 1.02;
  }

  .services-section h2 {
    font-size: clamp(1.48rem, 6.3vw, 2.02rem);
    line-height: 1.02;
    max-width: none;
  }

  .section-summary {
    max-width: 22ch;
    margin-top: 8px;
    font-size: 0.84rem;
    line-height: 1.38;
    white-space: normal;
  }

  .services-section {
    padding: 28px 0 8px;
  }

  .service-trust-shell {
    padding: 16px 10px 14px;
  }

  .service-trust-inner {
    width: min(100% - 20px, 1280px);
  }

  .service-trust-head {
    justify-items: center;
    text-align: center;
    gap: 9px;
  }

  .service-trust-head h2 {
    font-size: clamp(1.36rem, 6.8vw, 1.74rem);
    line-height: 1.08;
  }

  .service-trust-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 14px;
  }

  .service-trust-card {
    min-height: 0;
    padding: 4px 4px 6px;
    border-radius: 0;
    justify-items: center;
    text-align: center;
    gap: 5px;
  }

  .service-trust-card h3 {
    font-size: 0.92rem;
  }

  .service-trust-cta {
    margin-top: 8px;
  }

  .service-trust-card p {
    font-size: 0.76rem;
    line-height: 1.38;
  }

  .service-trust-cta button {
    min-width: 100%;
    min-height: 38px;
    padding: 0 12px;
  }

  .service-route-track {
    height: 24px;
    padding-inline: 14px;
  }

  .service-route-bus {
    width: 40px;
    height: 30px;
  }

  .service-route-stop {
    width: 8px;
    height: 8px;
  }

  .services-section .section-head-grid {
    gap: 10px;
    padding-bottom: 8px;
  }

  .services-section .solution-stack {
    margin-top: 14px;
  }

  .services-section .solution-section {
    padding: 26px 0;
    gap: 14px;
  }

  .services-section .solution-subtitle {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    max-width: 100%;
    font-size: 0.88rem;
    line-height: 1.48;
  }

  .services-section .solution-copy ul {
    margin-top: 14px;
  }

  .services-section .solution-copy li {
    padding: 5px 0;
    font-size: 0.92rem;
  }

  .services-section .solution-detail-btn {
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.88rem;
  }

  .hero-copy,
  .hero-side,
  .service-item,
  .contact-link {
    padding: 18px;
  }

  .contact-link {
    min-height: 72px;
    font-size: 1.1rem;
    word-break: break-all;
  }

  .site-footer {
    padding: 18px 0 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-logo {
    width: min(152px, 100%);
  }

  .footer-copy {
    gap: 7px;
  }

  .footer-copy p {
    font-size: 0.76rem;
    line-height: 1.5;
  }

  .footer-copyright {
    font-size: 0.72rem;
  }

  .contact-panel {
    width: min(100% - 24px, 960px);
    max-height: calc(100vh - 24px);
  }

  .contact-panel-head,
  .contact-form {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-submit {
    width: 100%;
  }

  .services-flow {
    padding-top: 12px;
    padding-bottom: 0;
  }

  .services-flow-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .services-flow-track::-webkit-scrollbar {
    display: none;
  }

  .services-flow-arrow {
    display: none;
  }

  .services-flow-step {
    flex: 0 0 146px;
    min-height: 72px;
    padding: 12px 12px 10px;
  }

  .services-flow-index {
    margin-bottom: 4px;
    font-size: 9px;
  }

  .services-flow-step strong {
    font-size: 0.78rem;
  }

  .services-flow-step p {
    display: none;
  }

  .services-section .solution-stack {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    margin-top: 10px;
  }

  .services-section .solution-section,
  .services-section .solution-section.reverse {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: 'copy';
    align-content: start;
    min-height: 88px;
    padding: 8px 9px 7px;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.94);
    scroll-margin-top: 72px;
  }

  .services-section .solution-media,
  .services-section .solution-rule,
  .services-section .solution-copy ul {
    display: none;
  }

  .services-section .solution-copy {
    padding-inline: 0;
  }

  .services-section .solution-label {
    margin-bottom: 4px;
    font-size: 0.64rem;
  }

  .services-section .solution-copy h3 {
    font-size: 0.56rem;
    line-height: 1.16;
    margin-bottom: 3px;
  }

  .services-section .solution-subtitle {
    -webkit-line-clamp: 2;
    font-size: 0.7rem;
    line-height: 1.25;
    min-height: 0;
    margin-bottom: 0;
  }

  .services-section .solution-detail-btn {
    display: none;
  }

  .services-section .solution-section:nth-child(5) {
    grid-column: auto;
  }
}









/* Alternating solution sections */
.services-section {
  --section-theme-bg: #f2f6ff;
  --section-theme-line: rgba(47, 109, 246, 0.18);
  padding: 24px 0 18px;
  scroll-margin-top: calc(var(--header-offset, 0px) + 120px);
  overscroll-behavior: contain;
  transition: background-color 420ms ease;
}

.services-section h2 {
  font-size: clamp(1.95rem, 3.9vw, 3.25rem);
  line-height: 0.96;
  white-space: nowrap;
  word-break: normal;
  letter-spacing: -0.05em;
  text-transform: none;
  max-width: none;
}

.service-intro-shell {
  position: relative;
  display: grid;
  gap: 0;
  border: 1px solid color-mix(in srgb, var(--section-theme-line) 70%, rgba(0, 0, 0, 0.08));
  border-radius: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--section-theme-bg) 55%, #ffffff) 0%, #ffffff 54%);
  box-shadow: 0 16px 34px rgba(18, 26, 39, 0.04);
  transition: background-color 420ms ease, border-color 420ms ease;
}

.services-section .section-head-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: clamp(20px, 4vw, 52px);
  padding: clamp(22px, 3.1vw, 34px) clamp(24px, 3vw, 38px) clamp(20px, 2.6vw, 28px);
}

.services-section .section-head-copy {
  position: relative;
  padding-top: 16px;
}

.services-section .section-head-copy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 2px;
  background: color-mix(in srgb, var(--preview-accent, var(--accent-strong)) 78%, #ff6b94);
}

.services-section .section-head-rail {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 28px;
  padding: 0 8px;
}

.services-section .section-head-rail-line {
  position: absolute;
  left: 8px;
  right: 8px;
  top: calc(50% - 1px);
  height: 2px;
  background: color-mix(in srgb, var(--section-theme-line) 56%, rgba(0, 0, 0, 0.08));
}

.services-section .section-head-rail-dot {
  position: relative;
  z-index: 1;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--preview-accent, #2f6df6) 46%, #c8ceda);
  background: #ffffff;
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.services-section .section-head-rail-dot.is-active {
  transform: scale(1.18);
  background: var(--preview-accent, #2f6df6);
  border-color: var(--preview-accent, #2f6df6);
}

.services-section .section-kicker {
  margin-bottom: 14px;
  color: rgba(0, 0, 0, 0.58);
}

.services-section .section-summary {
  margin-top: 14px;
  max-width: none;
  font-size: clamp(0.94rem, 1.05vw, 1.02rem);
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.66);
}

.services-section .solution-stack {
  margin-top: 34px;
}

.services-section .solution-section {
  padding: 64px 0;
  gap: 56px;
}

.services-section .solution-copy {
  padding-inline: 10px;
}

.services-section .solution-copy h3 {
  font-size: clamp(2rem, 3.3vw, 3rem);
}


.solution-stack {
  display: grid;
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.solution-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  grid-template-areas: 'media copy';
  gap: 42px;
  align-items: center;
  padding: 52px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 92px;
}

.solution-section.reverse {
  grid-template-areas: 'copy media';
}

.solution-media {
  grid-area: media;
  background: #ffffff;
}

.solution-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
}

.solution-copy {
  grid-area: copy;
  padding-inline: 6px;
}

.solution-rule {
  width: min(320px, 76%);
  height: 3px;
  background: var(--solution-accent);
  margin: 0 0 22px;
}

.solution-label {
  margin: 0 0 12px;
  color: var(--solution-accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.solution-copy h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  text-transform: none;
}

.solution-subtitle {
  font-size: 0.98rem;
  line-height: 1.85;
  margin: 0;
  max-width: 44ch;
}

.solution-copy ul {
  margin: 20px 0 0;
  padding-left: 18px;
}

.solution-copy li {
  padding: 8px 0;
}

.solution-section.is-targeted {
  animation: section-pop 900ms ease;
}

@keyframes section-pop {
  0% {
    background: rgba(133, 185, 42, 0.04);
    box-shadow: inset 0 0 0 1px rgba(133, 185, 42, 0.12);
  }
  100% {
    background: transparent;
    box-shadow: none;
  }
}

.service-atlas {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 0;
  border-top: 1px solid color-mix(in srgb, var(--section-theme-line) 50%, rgba(0, 0, 0, 0.08));
}

.service-atlas-preview {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: clamp(20px, 2.5vw, 28px) clamp(24px, 3vw, 38px) 24px;
  border: 0;
  background: transparent;
  scroll-margin-top: calc(var(--header-offset, 0px) + 16px);
  overscroll-behavior: contain;
  transition: opacity 320ms ease, transform 320ms ease, background-color 420ms ease;
}

.service-atlas-preview.is-transitioning {
  opacity: 0;
  transform: translateY(8px);
}

.service-atlas-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.service-atlas-preview-tag {
  margin: 0;
  font: 700 12px 'Noto Sans KR', sans-serif;
  letter-spacing: 0.14em;
  color: var(--preview-accent, var(--accent-strong));
}

.service-atlas-preview-title {
  margin: 0;
  font: 600 clamp(1.8rem, 2.6vw, 2.55rem) 'Noto Sans KR', sans-serif;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.service-atlas-preview-text {
  margin: 0;
  max-width: 42ch;
  font: 400 15px 'Noto Sans KR', sans-serif;
  line-height: 1.78;
  color: var(--muted);
}

.service-atlas-preview-btn {
  appearance: none;
  border: 1px solid var(--preview-accent, var(--line-strong));
  background: var(--preview-accent, #111111);
  color: #ffffff;
  min-height: 36px;
  padding: 0 16px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  border-radius: 0;
  transition: filter 140ms ease, opacity 140ms ease;
}

.service-atlas-preview-btn:hover,
.service-atlas-preview-btn:focus-visible {
  filter: brightness(1.06);
}

.service-atlas-visual {
  position: relative;
  min-height: 300px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.96) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.02) 0, rgba(0,0,0,0.02) 100%);
  overflow: hidden;
}

.service-atlas-visual::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 24px;
  right: 24px;
  height: 3px;
  background: color-mix(in srgb, var(--preview-accent, var(--accent-strong)) 22%, white);
}

.service-atlas-visual-line,
.service-atlas-visual-node,
.service-atlas-visual-panel {
  position: absolute;
  display: block;
}

.service-atlas-visual-line {
  left: 24px;
  right: 24px;
  top: 108px;
  height: 2px;
  background: #dfe5ec;
}

.service-atlas-visual-node {
  top: 98px;
  left: 84px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--preview-accent, var(--accent-strong));
}

.service-atlas-visual-node.mid {
  left: 214px;
  background: #ffffff;
  border: 2px solid var(--preview-accent, var(--accent-strong));
}

.service-atlas-visual-node.end {
  left: 344px;
  background: color-mix(in srgb, var(--preview-accent, var(--accent-strong)) 35%, white);
  border: 1px solid var(--preview-accent, var(--accent-strong));
}

.service-atlas-visual-panel {
  left: 24px;
  right: 24px;
  bottom: 24px;
  height: 124px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.service-atlas-visual-panel::before,
.service-atlas-visual-panel::after {
  content: '';
  position: absolute;
  left: 24px;
  right: 24px;
  height: 10px;
  background: #e9edf3;
}

.service-atlas-visual-panel::before {
  top: 28px;
}

.service-atlas-visual-panel::after {
  top: 50px;
  width: 56%;
}

.service-atlas-visual.is-linx {
  --linx-accent: #2380f1;
  min-height: 372px;
  padding: 20px;
  border-color: #d8d8d8;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-atlas-visual.is-linx::before {
  display: none;
}

.linx-visual-cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px minmax(0, 1fr) 32px minmax(0, 1fr) 32px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: min(100%, 1100px);
  margin: 0 auto;
}

.linx-visual-arrow {
  display: inline-grid;
  place-items: center;
  color: #cfd5df;
  font: 400 2.2rem/1 'Noto Sans KR', sans-serif;
}

.linx-visual-card {
  border: 1px solid #dddddd;
  border-radius: 18px;
  background: #ffffff;
  min-height: 264px;
  padding: 16px 12px 14px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.linx-card-icon {
  display: inline-block;
  width: 98px;
  height: 98px;
  border-radius: 999px;
  background: #e8edf6;
  position: relative;
}

.linx-card-icon::before,
.linx-card-icon::after {
  content: '';
  position: absolute;
}

.linx-card-icon.is-route::before {
  display: none;
}

.linx-card-icon.is-route::after {
  left: 11px;
  top: 12px;
  width: 76px;
  height: 69px;
  background: url("icon/linx_ico1.png") center/contain no-repeat;
}

.linx-card-icon.is-merge::before {
  display: none;
}

.linx-card-icon.is-merge::after {
  left: 9px;
  top: 11px;
  width: 80px;
  height: 74px;
  background: url("icon/linx_ico2.png") center/contain no-repeat;
}

.linx-card-icon.is-path::before {
  display: none;
}

.linx-card-icon.is-path::after {
  left: 8px;
  top: 10px;
  width: 82px;
  height: 74px;
  background: url("icon/linx_ico3.png") center/contain no-repeat;
}

.linx-card-icon.is-time::before {
  display: none;
}

.linx-card-icon.is-time::after {
  left: 7px;
  top: 9px;
  width: 84px;
  height: 76px;
  background: url("icon/linx_ico4.png") center/contain no-repeat;
}

.linx-visual-card h4 {
  margin: 0;
  font: 700 clamp(1rem, 1.45vw, 1.36rem) 'Noto Sans KR', sans-serif;
  letter-spacing: -0.03em;
  color: #1c1f26;
}

.linx-visual-card p {
  margin: 0;
  font: 400 0.95rem/1.45 'Noto Sans KR', sans-serif;
  color: #5d636d;
}

.service-atlas-visual.is-shuttle {
  --shuttle-accent: #32b154;
  min-height: 372px;
  padding: 20px;
  border-color: #d8d8d8;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-atlas-visual.is-hydro {
  --hydro-accent: #1b3479;
  min-height: 372px;
  padding: 20px;
  border-color: #d8d8d8;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-atlas-visual.is-hydro::before {
  display: none;
}

.service-atlas-visual.is-catchloc {
  --catchloc-accent: #e7437b;
  min-height: 372px;
  padding: 20px;
  border-color: #d8d8d8;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-atlas-visual.is-catchloc::before {
  display: none;
}

.catchloc-visual-cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px minmax(0, 1fr) 32px minmax(0, 1fr) 32px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: min(100%, 1100px);
  margin: 0 auto;
}

.catchloc-visual-arrow {
  display: inline-grid;
  place-items: center;
  color: #cfd5df;
  font: 400 2.2rem/1 'Noto Sans KR', sans-serif;
}

.catchloc-visual-card {
  border: 1px solid #dddddd;
  border-radius: 18px;
  background: #ffffff;
  min-height: 264px;
  padding: 16px 12px 14px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.hydro-visual-cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px minmax(0, 1fr) 32px minmax(0, 1fr) 32px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: min(100%, 1100px);
  margin: 0 auto;
}

.hydro-visual-arrow {
  display: inline-grid;
  place-items: center;
  color: #cfd5df;
  font: 400 2.2rem/1 'Noto Sans KR', sans-serif;
}

.hydro-visual-card {
  border: 1px solid #dddddd;
  border-radius: 18px;
  background: #ffffff;
  min-height: 264px;
  padding: 16px 12px 14px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.service-atlas-visual.is-shuttle::before {
  display: none;
}

.shuttle-visual-cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px minmax(0, 1fr) 32px minmax(0, 1fr) 32px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: min(100%, 1100px);
  margin: 0 auto;
}

.shuttle-visual-arrow {
  display: inline-grid;
  place-items: center;
  color: #cfd5df;
  font: 400 2.2rem/1 'Noto Sans KR', sans-serif;
}

.shuttle-visual-card {
  border: 1px solid #dddddd;
  border-radius: 18px;
  background: #ffffff;
  min-height: 264px;
  padding: 16px 12px 14px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.shuttle-visual-card,
.linx-visual-card,
.hydro-visual-card,
.catchloc-visual-card,
.fms-visual-card {
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1), border-color 260ms ease;
  will-change: transform;
}

.shuttle-visual-card:hover,
.shuttle-visual-card:focus-within,
.linx-visual-card:hover,
.linx-visual-card:focus-within,
.hydro-visual-card:hover,
.hydro-visual-card:focus-within,
.catchloc-visual-card:hover,
.catchloc-visual-card:focus-within,
.fms-visual-card:hover,
.fms-visual-card:focus-within {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--preview-accent, #111111) 28%, #dddddd);
  box-shadow: 0 12px 24px rgba(28, 36, 48, 0.12), 0 2px 0 rgba(28, 36, 48, 0.06);
}

.shuttle-card-icon {
  display: inline-block;
  width: 98px;
  height: 98px;
  border-radius: 999px;
  background: #f4efe5;
  position: relative;
}

.shuttle-card-icon::before,
.shuttle-card-icon::after {
  content: '';
  position: absolute;
}

.shuttle-card-icon.is-app::before {
  display: none;
}

.shuttle-card-icon.is-app::after {
  left: 6px;
  top: 7px;
  width: 86px;
  height: 84px;
  background: url("icon/shuttle_ico1.png") center/contain no-repeat;
}

.shuttle-card-icon.is-server::before {
  display: none;
}

.shuttle-card-icon.is-server::after {
  left: 9px;
  top: 11px;
  width: 80px;
  height: 74px;
  background: url("icon/shuttle_ico2.png") center/contain no-repeat;
}

.shuttle-card-icon.is-ticket::before {
  display: none;
}

.shuttle-card-icon.is-ticket::after {
  left: 8px;
  top: 8px;
  width: 82px;
  height: 82px;
  background: url("icon/shuttle_ico3.png") center/contain no-repeat;
}

.shuttle-card-icon.is-bus::before {
  display: none;
}

.shuttle-card-icon.is-bus::after {
  left: 8px;
  top: 10px;
  width: 82px;
  height: 76px;
  background: url("icon/shuttle_ico4.png") center/contain no-repeat;
}

.hydro-card-icon {
  display: inline-block;
  width: 98px;
  height: 98px;
  border-radius: 999px;
  background: #e9eef8;
  position: relative;
}

.catchloc-card-icon {
  display: inline-block;
  width: 98px;
  height: 98px;
  border-radius: 999px;
  background: #f7e8ee;
  position: relative;
}

.catchloc-card-icon::before,
.catchloc-card-icon::after {
  content: '';
  position: absolute;
}

.catchloc-card-icon.is-gps::before,
.catchloc-card-icon.is-boarding::before,
.catchloc-card-icon.is-admin::before,
.catchloc-card-icon.is-analytics::before {
  display: none;
}

.catchloc-card-icon.is-gps::after {
  left: 8px;
  top: 8px;
  width: 82px;
  height: 82px;
  background: url("icon/cat_ico1.png") center/contain no-repeat;
}

.catchloc-card-icon.is-boarding::after {
  left: 9px;
  top: 8px;
  width: 80px;
  height: 82px;
  background: url("icon/cat_ico2.png") center/contain no-repeat;
}

.catchloc-card-icon.is-admin::after {
  left: 8px;
  top: 8px;
  width: 82px;
  height: 82px;
  background: url("icon/cat_ico3.png") center/contain no-repeat;
}

.catchloc-card-icon.is-analytics::after {
  left: 8px;
  top: 8px;
  width: 82px;
  height: 82px;
  background: url("icon/cat_ico4.png") center/contain no-repeat;
}

.hydro-card-icon::before,
.hydro-card-icon::after {
  content: '';
  position: absolute;
}

.hydro-card-icon.is-register::before,
.hydro-card-icon.is-station::before,
.hydro-card-icon.is-usage::before,
.hydro-card-icon.is-dashboard::before {
  display: none;
}

.hydro-card-icon.is-register::after {
  left: 9px;
  top: 8px;
  width: 80px;
  height: 82px;
  background: url("icon/hyd_ico1.png") center/contain no-repeat;
}

.hydro-card-icon.is-station::after {
  left: 9px;
  top: 9px;
  width: 80px;
  height: 80px;
  background: url("icon/hyd_ico2.png") center/contain no-repeat;
}

.hydro-card-icon.is-usage::after {
  left: 8px;
  top: 7px;
  width: 82px;
  height: 84px;
  background: url("icon/hyd_ico3.png") center/contain no-repeat;
}

.hydro-card-icon.is-dashboard::after {
  left: 8px;
  top: 8px;
  width: 82px;
  height: 82px;
  background: url("icon/hyd_ico4.png") center/contain no-repeat;
}

.hydro-visual-card h4 {
  margin: 0;
  font: 700 clamp(1rem, 1.45vw, 1.36rem) 'Noto Sans KR', sans-serif;
  letter-spacing: -0.03em;
  color: #1c1f26;
}

.hydro-visual-card p {
  margin: 0;
  font: 400 0.95rem/1.45 'Noto Sans KR', sans-serif;
  color: #5d636d;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.catchloc-visual-card h4 {
  margin: 0;
  font: 700 clamp(1rem, 1.45vw, 1.36rem) 'Noto Sans KR', sans-serif;
  letter-spacing: -0.03em;
  color: #1c1f26;
}

.catchloc-visual-card p {
  margin: 0;
  font: 400 0.95rem/1.45 'Noto Sans KR', sans-serif;
  color: #5d636d;
  word-break: keep-all;
}

.shuttle-visual-card h4 {
  margin: 0;
  font: 700 clamp(1rem, 1.45vw, 1.36rem) 'Noto Sans KR', sans-serif;
  letter-spacing: -0.03em;
  color: #1c1f26;
}

.shuttle-visual-card p {
  margin: 0;
  font: 400 0.95rem/1.45 'Noto Sans KR', sans-serif;
  color: #5d636d;
}

.service-atlas-visual.is-fms {
  min-height: 352px;
  padding: 20px;
  border-color: #d8d8d8;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-atlas-visual.is-fms::before {
  display: none;
}

.fms-visual-cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px minmax(0, 1fr) 32px minmax(0, 1fr) 32px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  width: min(100%, 1100px);
  margin: 0 auto;
}

.fms-visual-arrow {
  display: inline-grid;
  place-items: center;
  color: #cfd5df;
  font: 400 2.2rem/1 'Noto Sans KR', sans-serif;
}

.fms-visual-card {
  border: 1px solid #dddddd;
  border-radius: 18px;
  background: #ffffff;
  min-height: 264px;
  padding: 16px 12px 14px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.fms-card-icon {
  display: inline-block;
  width: 98px;
  height: 98px;
  border-radius: 999px;
  background: #f4efe5;
  position: relative;
}

.fms-card-icon::before,
.fms-card-icon::after {
  content: '';
  position: absolute;
}

.fms-card-icon.is-ops::before,
.fms-card-icon.is-cost::before,
.fms-card-icon.is-profit::before,
.fms-card-icon.is-dashboard::before {
  display: none;
}

.fms-card-icon.is-ops::after {
  left: 8px;
  top: 8px;
  width: 82px;
  height: 82px;
  background: url("icon/fms_ico1.png") center/contain no-repeat;
}

.fms-card-icon.is-cost::after {
  left: 8px;
  top: 8px;
  width: 82px;
  height: 82px;
  background: url("icon/fms_ico2.png") center/contain no-repeat;
}

.fms-card-icon.is-profit::after {
  left: 8px;
  top: 8px;
  width: 82px;
  height: 82px;
  background: url("icon/fms_ico3.png") center/contain no-repeat;
}

.fms-card-icon.is-dashboard::after {
  left: 8px;
  top: 8px;
  width: 82px;
  height: 82px;
  background: url("icon/fms_ico4.png") center/contain no-repeat;
}

.fms-visual-card h4 {
  margin: 0;
  font: 700 clamp(1rem, 1.55vw, 1.34rem) 'Noto Sans KR', sans-serif;
  letter-spacing: -0.03em;
  color: #1c1f26;
}

.fms-visual-card p {
  margin: 0;
  font: 400 0.96rem/1.5 'Noto Sans KR', sans-serif;
  color: #575d66;
}

@media (max-width: 960px) {
  .service-atlas-visual.is-linx {
    min-height: 0;
    padding: 12px;
  }

  .linx-visual-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .linx-visual-arrow {
    display: none;
  }

  .linx-visual-card {
    min-height: 0;
    padding: 12px 10px 10px;
    border-radius: 12px;
    gap: 7px;
  }

  .linx-card-icon {
    width: 62px;
    height: 62px;
  }

  .linx-card-icon.is-route::before {
    display: none;
  }

  .linx-card-icon.is-route::after {
    left: 7px;
    top: 8px;
    width: 48px;
    height: 44px;
    background: url("icon/linx_ico1.png") center/contain no-repeat;
  }

  .linx-card-icon.is-merge::before {
    display: none;
  }

  .linx-card-icon.is-merge::after {
    left: 6px;
    top: 8px;
    width: 50px;
    height: 46px;
    background: url("icon/linx_ico2.png") center/contain no-repeat;
  }

  .linx-card-icon.is-path::before {
    display: none;
  }

  .linx-card-icon.is-path::after {
    left: 5px;
    top: 7px;
    width: 52px;
    height: 47px;
    background: url("icon/linx_ico3.png") center/contain no-repeat;
  }

  .linx-card-icon.is-time::before {
    display: none;
  }

  .linx-card-icon.is-time::after {
    left: 5px;
    top: 6px;
    width: 52px;
    height: 48px;
    background: url("icon/linx_ico4.png") center/contain no-repeat;
  }

  .linx-visual-card h4 {
    font-size: 0.98rem;
  }

  .linx-visual-card p {
    font-size: 0.84rem;
  }

  .service-atlas-visual.is-shuttle {
    min-height: 0;
    padding: 12px;
  }

  .service-atlas-visual.is-hydro {
    min-height: 0;
    padding: 12px;
  }

  .service-atlas-visual.is-catchloc {
    min-height: 0;
    padding: 12px;
  }

  .catchloc-visual-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .catchloc-visual-arrow {
    display: none;
  }

  .catchloc-visual-card {
    min-height: 0;
    padding: 12px 10px 10px;
    border-radius: 12px;
    gap: 7px;
  }

  .catchloc-card-icon {
    width: 62px;
    height: 62px;
  }

  .catchloc-card-icon.is-gps::after {
    left: 5px;
    top: 5px;
    width: 52px;
    height: 52px;
    background: url("icon/cat_ico1.png") center/contain no-repeat;
  }

  .catchloc-card-icon.is-boarding::after {
    left: 6px;
    top: 5px;
    width: 50px;
    height: 52px;
    background: url("icon/cat_ico2.png") center/contain no-repeat;
  }

  .catchloc-card-icon.is-admin::after {
    left: 5px;
    top: 5px;
    width: 52px;
    height: 52px;
    background: url("icon/cat_ico3.png") center/contain no-repeat;
  }

  .catchloc-card-icon.is-analytics::after {
    left: 5px;
    top: 5px;
    width: 52px;
    height: 52px;
    background: url("icon/cat_ico4.png") center/contain no-repeat;
  }

  .catchloc-visual-card h4 {
    font-size: 0.98rem;
  }

  .catchloc-visual-card p {
    font-size: 0.84rem;
  }

  .hydro-visual-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hydro-visual-arrow {
    display: none;
  }

  .hydro-visual-card {
    min-height: 0;
    padding: 12px 10px 10px;
    border-radius: 12px;
    gap: 7px;
  }

  .hydro-card-icon {
    width: 62px;
    height: 62px;
  }

  .hydro-card-icon.is-register::after {
    left: 6px;
    top: 5px;
    width: 50px;
    height: 52px;
    background: url("icon/hyd_ico1.png") center/contain no-repeat;
  }

  .hydro-card-icon.is-station::after {
    left: 6px;
    top: 6px;
    width: 50px;
    height: 50px;
    background: url("icon/hyd_ico2.png") center/contain no-repeat;
  }

  .hydro-card-icon.is-usage::after {
    left: 5px;
    top: 5px;
    width: 52px;
    height: 52px;
    background: url("icon/hyd_ico3.png") center/contain no-repeat;
  }

  .hydro-card-icon.is-dashboard::after {
    left: 5px;
    top: 5px;
    width: 52px;
    height: 52px;
    background: url("icon/hyd_ico4.png") center/contain no-repeat;
  }

  .hydro-visual-card h4 {
    font-size: 0.98rem;
  }

  .hydro-visual-card p {
    font-size: 0.84rem;
  }

  .shuttle-visual-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .shuttle-visual-arrow {
    display: none;
  }

  .shuttle-visual-card {
    min-height: 0;
    padding: 12px 10px 10px;
    border-radius: 12px;
    gap: 7px;
  }

  .shuttle-card-icon {
    width: 62px;
    height: 62px;
  }

  .shuttle-card-icon.is-app::before {
    display: none;
  }

  .shuttle-card-icon.is-app::after {
    left: 4px;
    top: 4px;
    width: 54px;
    height: 54px;
    background: url("icon/shuttle_ico1.png") center/contain no-repeat;
  }

  .shuttle-card-icon.is-server::before {
    display: none;
  }

  .shuttle-card-icon.is-server::after {
    left: 6px;
    top: 7px;
    width: 50px;
    height: 46px;
    background: url("icon/shuttle_ico2.png") center/contain no-repeat;
  }

  .shuttle-card-icon.is-ticket::before {
    display: none;
  }

  .shuttle-card-icon.is-ticket::after {
    left: 5px;
    top: 5px;
    width: 52px;
    height: 52px;
    background: url("icon/shuttle_ico3.png") center/contain no-repeat;
  }

  .shuttle-card-icon.is-bus::before {
    display: none;
  }

  .shuttle-card-icon.is-bus::after {
    left: 5px;
    top: 6px;
    width: 52px;
    height: 49px;
    background: url("icon/shuttle_ico4.png") center/contain no-repeat;
  }

  .shuttle-visual-card h4 {
    font-size: 0.98rem;
  }

  .shuttle-visual-card p {
    font-size: 0.84rem;
  }

  .service-atlas-visual.is-fms {
    min-height: 0;
    padding: 12px;
  }

  .fms-visual-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .fms-visual-arrow {
    display: none;
  }

  .fms-visual-card {
    min-height: 0;
    padding: 14px 10px;
    border-radius: 12px;
    gap: 8px;
  }

  .fms-card-icon {
    width: 62px;
    height: 62px;
  }

  .fms-card-icon.is-ops::after {
    left: 5px;
    top: 5px;
    width: 52px;
    height: 52px;
    background: url("icon/fms_ico1.png") center/contain no-repeat;
  }

  .fms-card-icon.is-cost::after {
    left: 5px;
    top: 5px;
    width: 52px;
    height: 52px;
    background: url("icon/fms_ico2.png") center/contain no-repeat;
  }

  .fms-card-icon.is-profit::after {
    left: 5px;
    top: 5px;
    width: 52px;
    height: 52px;
    background: url("icon/fms_ico3.png") center/contain no-repeat;
  }

  .fms-card-icon.is-dashboard::after {
    left: 5px;
    top: 5px;
    width: 52px;
    height: 52px;
    background: url("icon/fms_ico4.png") center/contain no-repeat;
  }

  .fms-visual-card h4 {
    font-size: 0.98rem;
  }

  .fms-visual-card p {
    font-size: 0.84rem;
    line-height: 1.5;
  }
}

.service-atlas-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-atlas-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: #111111;
  font: 700 12px 'Noto Sans KR', sans-serif;
}

.services-section h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
}

.services-section {
  padding: 60px 0 20px;
}

.service-atlas-preview.is-detail-open .service-atlas-preview-text,
.service-atlas-preview.is-detail-open .service-atlas-visual,
.service-atlas-preview.is-detail-open .service-atlas-pills {
  opacity: 0;
  transform: translateY(-8px);
  max-height: 0;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
}

.service-atlas-preview-text,
.service-atlas-visual,
.service-atlas-pills {
  transition: opacity 240ms ease, transform 260ms ease, max-height 260ms ease, margin 220ms ease;
}

.service-atlas-detail-view {
  --detail-accent: #111111;
  --detail-bg: #ffffff;
  background: var(--detail-bg);
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition: max-height 220ms ease, opacity 180ms ease, transform 180ms ease;
}

.service-atlas-preview.is-detail-open .service-atlas-detail-view {
  margin-top: 0;
  max-height: none;
  opacity: 1;
  transform: translateY(0);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
}

.service-atlas-preview.is-detail-open {
  background: var(--atlas-card-bg, #ffffff);
  transition: background-color 220ms ease;
  position: relative;
  padding-bottom: 56px;
}

.service-atlas.is-atlas-detail-open {
  position: relative;
  z-index: 0;
  min-height: calc(100vh - var(--header-offset, 0px) - var(--service-nav-height, 0px) - 4px);
  align-items: stretch;
}

.service-atlas.is-atlas-detail-open::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  background: var(--atlas-section-bg, transparent);
  transition: background-color 220ms ease;
  z-index: -1;
  pointer-events: none;
}

.service-atlas.is-atlas-detail-open .service-atlas-preview {
  min-height: 100%;
}

.service-atlas-detail-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 0;
}

.service-atlas-detail-nav .detail-nav-item {
  width: 20px;
  height: 20px;
}

.service-atlas-detail-nav .detail-nav-dot {
  width: 12px;
  height: 12px;
}

.service-atlas-detail-track {
  display: none;
  padding: 0;
}

.service-atlas-detail-track .detail-page {
  min-height: 0;
  border-top: 1px solid color-mix(in srgb, var(--detail-accent) 24%, white);
}

.service-atlas-detail-track .detail-page-copy {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 14px;
  margin: 0 auto;
}

.service-atlas-detail-track .detail-page-copy p {
  max-width: 56ch;
}

.service-atlas-detail-track .detail-page-copy ul {
  text-align: left;
  margin: 0;
}

.atlas-detail-page-icon {
  display: inline-block;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background-color: color-mix(in srgb, var(--detail-accent, #1b3479) 10%, #ffffff);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 74px 74px;
}

.atlas-detail-page-icon--hyd-1 {
  background-image: url("icon/hyd_ico1.png");
}

.atlas-detail-page-icon--hyd-2 {
  background-image: url("icon/hyd_ico2.png");
}

.atlas-detail-page-icon--hyd-3 {
  background-image: url("icon/hyd_ico3.png");
}

.atlas-detail-page-icon--hyd-4 {
  background-image: url("icon/hyd_ico4.png");
}

.service-atlas-detail-track.is-instant .detail-page {
  transition-duration: 0ms;
}

@media (max-width: 760px) {
  .service-atlas-preview.is-detail-open .service-atlas-detail-view {
    bottom: 8px;
  }

  .service-atlas-preview.is-detail-open {
    padding-bottom: 48px;
  }

  .service-atlas-detail-nav {
    gap: 8px;
    padding: 0;
  }

  .service-atlas-detail-nav .detail-nav-item {
    width: 18px;
    height: 18px;
  }

  .service-atlas-detail-nav .detail-nav-dot {
    width: 10px;
    height: 10px;
  }

  .atlas-detail-page-icon {
    width: 70px;
    height: 70px;
    background-size: 56px 56px;
  }
}

.client-marquee {
  margin: 22px 0 0;
  padding: 22px 0 26px;
  border-top: 1px solid var(--line);
}

.client-marquee-head {
  display: grid;
  gap: 8px;
  justify-items: start;
  margin-bottom: 16px;
}

.client-marquee-head h3 {
  margin: 0;
  font-size: clamp(1.1rem, 1.8vw, 1.8rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  text-transform: none;
}

.client-marquee-copy {
  display: grid;
  gap: 6px;
  justify-items: start;
}

.client-marquee-copy h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.client-marquee-copy p {
  margin: 0;
  font-size: clamp(0.92rem, 1.3vw, 1.02rem);
  color: var(--muted);
  line-height: 1.5;
}

.client-marquee-viewport {
  overflow: hidden;
  position: relative;
  padding: 4px 0;
}

.client-marquee-viewport::before,
.client-marquee-viewport::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 1;
  pointer-events: none;
}

.client-marquee-viewport::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.client-marquee-viewport::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.client-marquee-track {
  display: flex;
  align-items: stretch;
  width: max-content;
  gap: 14px;
  animation: client-marquee-scroll 28s linear infinite;
  will-change: transform;
}

.client-marquee:hover .client-marquee-track,
.client-marquee:focus-within .client-marquee-track {
  animation-play-state: paused;
}

.client-marquee-group {
  display: flex;
  align-items: stretch;
  gap: 14px;
}

.client-logo-slot {
  flex: 0 0 auto;
  width: clamp(128px, 14vw, 180px);
  height: clamp(72px, 8vw, 92px);
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.035);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  overflow: hidden;
}

.client-logo-slot img {
  display: block;
  width: auto;
  height: auto;
  max-width: 82%;
  max-height: 54px;
  object-fit: contain;
  object-position: center;
}

.client-logo-slot:hover {
  transform: scale(1.04);
  z-index: 2;
  border-color: rgba(0, 0, 0, 0.18);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

@keyframes client-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .services-flow-track {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 10px;
  }

  .services-flow-arrow {
    display: none;
  }

  .services-flow-step {
    min-height: 82px;
  }

  .solution-section,
  .solution-section.reverse {
    grid-template-columns: 1fr;
    grid-template-areas:
      'media'
      'copy';
    gap: 18px;
    padding: 36px 0;
    scroll-margin-top: 84px;
  }

  .solution-rule {
    width: 220px;
  }

  .client-marquee {
    padding-top: 18px;
  }

  .client-marquee-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .client-marquee-viewport::before,
  .client-marquee-viewport::after {
    width: 36px;
  }
}

@media (max-width: 760px) {
  .solution-section,
  .solution-section.reverse {
    gap: 14px;
    padding: 30px 0;
  }

  .ticker-row {
    padding: 6px;
  }

  .ticker-link {
    min-height: 50px;
    padding: 12px 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 8px;
  }

  .solution-copy h3 {
    font-size: 0.92rem;
  }

  .client-marquee-track,
  .client-marquee-group {
    gap: 10px;
  }

  .client-logo-slot {
    width: 124px;
    height: 70px;
  }

  .client-logo-slot img {
    max-height: 44px;
  }
}




.detail-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--detail-accent, #111111);
  padding: 0;
}

.detail-overlay[hidden] {
  display: none;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  background: transparent;
}

.detail-panel {
  position: relative;
  z-index: 1;
  width: min(1680px, calc(100% - 32px));
  height: 60vh;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.detail-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--line);
}

.detail-panel-head h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 0.96;
  text-transform: none;
}

.detail-close {
  appearance: none;
  border: 1px solid var(--line-strong);
  background: #ffffff;
  color: var(--text);
  min-height: 42px;
  padding: 0 16px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.detail-scroll {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.detail-pin {
  position: sticky;
  top: 0;
  height: 100%;
}

.detail-page-index {
  margin: 0;
  color: var(--detail-accent, var(--accent-strong));
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.detail-page-eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.detail-page h3 {
  margin: 0;
  font-size: clamp(1.7rem, 2.8vw, 2.8rem);
  line-height: 1.02;
  text-transform: none;
}

.detail-page p {
  margin: 0;
  max-width: 44ch;
  color: var(--muted);
  line-height: 1.8;
}

.detail-page ul {
  margin: 4px 0 0;
  padding-left: 18px;
}

.detail-page li + li {
  margin-top: 8px;
}

.detail-page.is-accent {
  border-top: 4px solid var(--detail-accent, var(--line));
}

@media (max-width: 1100px) {
  .detail-overlay {
    padding: 0;
  }

  .detail-panel {
    width: 100%;
    height: calc(100vh - 74px);
    border: 0;
    box-shadow: none;
  }

  .detail-track {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .solution-detail-btn {
    width: 100%;
  }

  .detail-panel-head {
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
  }

  .detail-page {
    padding: 20px;
  }
}


/* Full-screen detail overlay override */
.detail-overlay {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: block;
  top: 74px;
  background: #dbeeff;
}

.detail-overlay[hidden] {
  display: none;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  background: transparent;
}

.detail-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  height: calc(100vh - 74px);
  display: grid;
  grid-template-rows: auto auto 1fr;
  overflow: hidden;
  background: #dbeeff;
}

.detail-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 24px 8px;
  border-bottom: 0;
  color: var(--detail-accent, #111111);
}

.detail-panel-head h2 {
  margin-top: 8px;
  color: var(--detail-accent, #111111);
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 0.96;
  text-transform: none;
}

.detail-panel-head .section-kicker {
  color: var(--muted);
}

.detail-close {
  appearance: none;
  border: 0;
  background: #ffffff;
  color: #111111;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.detail-nav {
  display: flex;
  gap: 12px;
  align-items: stretch;
  overflow-x: auto;
  padding: 8px 24px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.detail-nav::-webkit-scrollbar {
  height: 0;
}

.detail-nav-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0 12px 8px;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: transparent;
  color: #111111;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  transition: color 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

.detail-nav-item span {
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.55;
}

.detail-nav-item strong {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.detail-nav-item[aria-current='true'] {
  color: var(--detail-accent, #111111);
  border-bottom-color: var(--detail-accent, #111111);
  opacity: 1;
}

.detail-scroll {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.detail-stage {
  position: sticky;
  top: 0;
  height: 100%;
  overflow: hidden;
}

.detail-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  width: 100%;
  height: 100%;
  will-change: transform;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.detail-page {
  width: 100%;
  height: 100%;
  padding: clamp(20px, 3vw, 40px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(18px, 3vw, 40px);
  align-items: center;
  color: #111111;
}

.detail-page-copy {
  max-width: 560px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #111111;
  box-shadow: none;
}

.detail-page-index {
  margin: 0;
  color: var(--detail-accent, #111111);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.detail-page-eyebrow {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.detail-page-copy h3 {
  margin: 14px 0 12px;
  font-size: clamp(1.9rem, 2.8vw, 3.2rem);
  line-height: 1.02;
  text-transform: none;
}

.detail-page-copy p {
  margin: 0;
  max-width: 44ch;
  color: var(--muted);
  line-height: 1.8;
}

.detail-page-copy ul {
  margin: 20px 0 0;
  padding-left: 18px;
}

.detail-page-copy li + li {
  margin-top: 8px;
}

.detail-page-art {
  min-height: 420px;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.72);
  display: grid;
  place-items: center;
}

.detail-page-art-inner {
  width: min(520px, 100%);
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  background: #ffffff;
  color: #111111;
  padding: 24px;
  display: grid;
  align-content: space-between;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.14);
}

.detail-page-art-inner p,
.detail-page-art-inner span {
  margin: 0;
  color: var(--detail-accent, #111111);
}

.detail-page-art-inner p {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-page-art-inner strong {
  font-size: clamp(3rem, 8vw, 5.6rem);
  line-height: 0.9;
}

.solution-detail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-top: 18px;
  margin-inline: auto;
  padding: 0 18px;
  min-height: 46px;
  border: 1px solid var(--line-strong);
  background: var(--solution-accent);
  color: #ffffff;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: transform 160ms ease, filter 160ms ease, opacity 160ms ease;
}

.solution-detail-btn:hover,
.solution-detail-btn:focus-visible {
  filter: brightness(1.05);
}

.detail-lock {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .detail-panel {
    grid-template-rows: auto auto 1fr;
  }

  .detail-page {
    grid-template-columns: 1fr;
  }

  .detail-page-art {
    min-height: 240px;
  }
}

@media (max-width: 760px) {
  .detail-panel-head,
  .detail-nav {
    padding-left: 16px;
    padding-right: 16px;
  }

  .detail-page {
    padding: 16px;
  }

  .detail-page-copy {
    padding: 18px;
  }

  .detail-page-art {
    min-height: 200px;
  }

  .detail-nav-item {
    min-height: 42px;
    padding: 0 14px;
  }
}


/* Detail overlay final override */
.detail-overlay {
  top: 74px;
  background: var(--detail-bg, rgb(255, 255, 255));
}

.detail-panel {
  height: calc(100vh - 74px);
  grid-template-rows: auto auto 1fr;
  background: transparent;
}

.detail-panel-head {
  padding: 12px 24px 0;
  width: min(100%, 1080px);
  margin: 0 auto;
  border-bottom: 0;
}

.detail-panel-head h2 {
  color: var(--detail-accent, #111111);
}

.detail-panel-head .section-kicker {
  color: rgba(0, 0, 0, 0.55);
}

.detail-close {
  background: #ffffff;
  color: #111111;
}

.detail-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: 12px 24px 0;
  border-bottom: 0;
  flex-wrap: nowrap;
}

.detail-nav-item {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(0, 0, 0, 0.52);
  cursor: pointer;
}

.detail-nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.18));
  border: 1px solid rgba(0, 0, 0, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.detail-nav-item:hover .detail-nav-dot,
.detail-nav-item:focus-visible .detail-nav-dot {
  transform: scale(1.12);
}

.detail-nav-item[aria-current='true'] .detail-nav-dot {
  background: var(--detail-accent, #111111);
  border-color: rgba(0, 0, 0, 0.24);
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.04);
  transform: scale(1.22);
}

.detail-nav-item[aria-current='true'] {
  color: #111111;
  transform: none;
}

.detail-scroll {
  padding: 0 24px 24px;
  overflow: hidden;
}

.detail-stage {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.detail-page {
  color: #111111;
}

.detail-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.detail-track.is-instant .detail-page {
  transition: none;
}

.detail-page {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(18px, 3vw, 40px);
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 320ms ease, visibility 0s linear 320ms;
}

.detail-page.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 320ms ease, visibility 0s linear 0s;
}

.detail-page-copy {
  box-shadow: none;
}

.detail-page-copy p,
.detail-page-art-inner span {
  color: rgba(0, 0, 0, 0.58);
}

.detail-page-art-inner strong {
  color: var(--detail-accent, #111111);
}

.detail-page-copy p {
  color: rgba(0, 0, 0, 0.64);
  font-size: clamp(1.12rem, 1.6vw, 1.32rem);
  line-height: 1.72;
  max-width: 34ch;
}

.detail-page-copy ul {
  margin: 18px 0 0;
}

.detail-page-art {
  background: transparent;
  border: 0;
}

.detail-page-art-inner {
  position: relative;
  min-height: 420px;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: grid;
  align-content: space-between;
  overflow: hidden;
  box-shadow: none;
}

.detail-page-art-top {
  display: flex;
  gap: 6px;
  align-items: center;
}

.detail-page-art-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.24);
}

.detail-page-art-inner strong {
  justify-self: end;
  font-size: clamp(3rem, 8vw, 5.6rem);
  line-height: 0.9;
  color: var(--detail-accent, #111111);
}

.detail-page-art-panel {
  display: grid;
  gap: 10px;
  align-content: end;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.detail-page-art-strip {
  width: 38%;
  height: 8px;
  border-radius: 999px;
  background: var(--detail-accent, #111111);
}

.detail-page-art-line {
  display: block;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
}

.detail-page-art-line.short {
  width: 68%;
}

.detail-page-art-box {
  width: 54%;
  height: 46px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.06);
}

.solution-detail-btn {
  background: var(--solution-accent);
  color: #ffffff;
  border: 0;
}

.solution-detail-btn:hover,
.solution-detail-btn:focus-visible {
  filter: brightness(1.05);
}
@media (max-width: 1100px) {
  .detail-panel {
    height: calc(100vh - 74px);
  }
}

@media (max-width: 760px) {
  .detail-panel-head,
  .detail-nav,
  .detail-scroll {
    padding-left: 16px;
    padding-right: 16px;
  }

  .detail-page {
    grid-template-columns: 1fr;
    align-content: start;
    padding-top: 12px;
  }

  .detail-page-art {
    min-height: 220px;
  }

  .detail-page-art-inner {
    min-height: 220px;
    padding: 16px;
  }

  .detail-page-copy p {
    font-size: 1.02rem;
  }
}

@media (max-width: 1100px) {
  .hero-visuals {
    height: auto;
    aspect-ratio: 16 / 11;
    min-height: 360px;
    background: linear-gradient(180deg, #eef6fb 0%, #ffffff 100%);
  }

  .hero-visual {
    object-fit: contain;
    object-position: center center;
  }

  .hero-overlay {
    position: absolute;
    inset: auto 16px 16px;
    width: auto;
    max-width: 640px;
    gap: 12px;
  }

  .hero-message {
    max-width: none;
  }

  .hero-message h1 {
    max-width: 13ch;
    font-size: clamp(1.55rem, 5.9vw, 2.55rem);
    line-height: 1.04;
  }

  .hero-note {
    max-width: 100%;
    margin-top: 0;
    padding: 14px 15px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  }

  .hero-note p {
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .hero-cta {
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.9rem;
  }

  .ticker-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px 12px 10px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .ticker-row::-webkit-scrollbar {
    display: none;
  }

  .ticker-link {
    flex: 0 0 clamp(128px, 34vw, 176px);
    min-width: 128px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    scroll-snap-align: start;
  }

  .ticker-link:last-child {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .hero-stage {
    padding-top: 8px;
  }

  .hero-visuals {
    height: auto;
    aspect-ratio: 1 / 1;
    min-height: 320px;
  }

  .hero-overlay {
    inset: auto 12px 12px;
    gap: 10px;
  }

  .section-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .hero-message h1 {
    font-size: clamp(1.38rem, 6.8vw, 2.05rem);
  }

  .hero-note {
    padding: 12px 13px;
  }

  .hero-note span {
    margin-bottom: 8px;
    font-size: 0.7rem;
  }

  .hero-note p {
    font-size: 0.89rem;
    line-height: 1.5;
  }

  .hero-cta {
    min-height: 46px;
    padding: 0 16px;
    font-size: 0.88rem;
  }

  .ticker-row {
    padding: 6px 10px 8px;
    gap: 7px;
  }

  .ticker-link {
    min-height: 48px;
    padding: 11px 12px;
    font-size: 0.76rem;
  }
}

@media (max-width: 760px) {
  .services-section .solution-stack {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    margin-top: 10px;
    counter-reset: service-card;
  }

  .services-section .solution-section,
  .services-section .solution-section.reverse {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    min-height: 94px;
    padding: 11px 10px 10px 10px;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.94);
    scroll-margin-top: 72px;
  }

  .services-section .solution-section::before,
  .services-section .solution-section.reverse::before {
    content: counter(service-card, decimal-leading-zero);
    counter-increment: service-card;
    position: absolute;
    top: 9px;
    left: 10px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--solution-accent);
    opacity: 0.82;
  }

  .services-section .solution-media,
  .services-section .solution-rule,
  .services-section .solution-copy ul,
  .services-section .solution-subtitle {
    display: none;
  }

  .services-section .solution-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding-inline: 0;
    flex: 1;
    width: auto;
    padding-top: 18px;
  }

  .services-section .solution-label {
    margin: 0;
    font-size: 0.6rem;
    line-height: 1;
    letter-spacing: 0.12em;
  }

  .services-section .solution-copy h3 {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.12;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .services-section .solution-detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    flex: 0 0 auto;
    width: auto;
    min-width: 56px;
    min-height: 28px;
    margin-top: 0;
    margin-left: auto;
    padding: 0 10px;
    border: 1px solid var(--solution-accent);
    border-radius: 999px;
    background: color-mix(in srgb, var(--solution-accent) 12%, white);
    color: var(--solution-accent);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.01em;
  }

  .services-section .solution-detail-btn:hover,
  .services-section .solution-detail-btn:focus-visible {
    filter: brightness(1.03);
  }

  .client-marquee-track {
    animation-duration: 18s;
  }

  .client-marquee:hover .client-marquee-track,
  .client-marquee:focus-within .client-marquee-track {
    animation-play-state: running;
  }
}

@media (max-width: 760px) {
  .services-flow {
    padding-top: 10px;
    padding-bottom: 4px;
  }

  .services-flow-track {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .services-flow-track::-webkit-scrollbar {
    display: none;
  }

  .services-flow-arrow {
    display: block;
    flex: 0 0 14px;
    height: 1px;
    background: var(--line);
    position: relative;
  }

  .services-flow-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 5px;
    height: 5px;
    border-top: 1px solid var(--line-strong);
    border-right: 1px solid var(--line-strong);
    transform: translateY(-50%) rotate(45deg);
  }

  .services-flow-step {
    flex: 0 0 auto;
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .services-flow-index {
    display: inline-block;
    margin: 0 3px 0 0;
    font-size: 0.58rem;
    line-height: 1;
    letter-spacing: 0.08em;
    opacity: 0.72;
  }

  .services-flow-step strong {
    font-size: 0.7rem;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }

  .services-flow-step p {
    display: none;
  }

  .services-section .section-summary,
  .services-section .section-kicker {
    display: none;
  }

  .services-section .solution-stack {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    margin-top: 8px;
    counter-reset: service-card;
  }

  .services-section .solution-section,
  .services-section .solution-section.reverse {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    min-height: 72px;
    padding: 9px 10px 9px 8px;
    column-gap: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    scroll-margin-top: 72px;
  }

  .services-section .solution-section::before,
  .services-section .solution-section.reverse::before {
    content: counter(service-card, decimal-leading-zero) '.';
    counter-increment: service-card;
    flex: 0 0 auto;
    margin-right: 0;
    color: var(--solution-accent);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
  }

  .services-section .solution-media,
  .services-section .solution-rule,
  .services-section .solution-copy ul {
    display: none;
  }

  .services-section .solution-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    flex: 1 1 auto;
    min-width: 0;
    padding: 0;
    overflow: hidden;
  }

  .services-section .solution-label {
    display: block;
    margin: 0;
    font-size: 0.58rem;
    line-height: 1;
    letter-spacing: 0.1em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .services-section .solution-copy h3 {
    margin: 0;
    font-size: 0.72rem;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.02em;
  }

  .services-section .solution-subtitle {
    display: block;
    margin: 0;
    font-size: 0.62rem;
    line-height: 1.28;
    color: var(--muted);
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .services-section .solution-detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    justify-self: end;
    flex: 0 0 auto;
    min-width: 60px;
    min-height: 36px;
    margin: 0;
    padding: 0 12px;
    border: 1px solid var(--line-strong);
    border-radius: 0;
    background: #ffffff;
    color: var(--text);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }

  .services-section .solution-detail-btn:hover,
  .services-section .solution-detail-btn:focus-visible {
    filter: brightness(1.03);
  }

  .services-section .solution-section:nth-child(5) {
    grid-column: auto;
  }
}

@media (hover: none) and (pointer: coarse) {
  .client-marquee-track {
    animation-duration: 18s;
  }

  .client-marquee:hover .client-marquee-track,
  .client-marquee:focus-within .client-marquee-track {
    animation-play-state: running;
  }
}

@media (max-width: 960px) {
  .service-intro-shell {
    border-radius: 0;
  }

  .services-section .section-head-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 20px 14px;
  }

  .services-section .section-head-copy {
    padding-top: 12px;
  }

  .services-section .section-head-copy::before {
    width: 56px;
  }

  .services-section .section-head-rail {
    min-height: 22px;
    gap: 12px;
    padding: 0 2px;
  }

  .services-section .section-head-rail-line {
    left: 2px;
    right: 2px;
  }

  .services-section .section-head-rail-dot {
    width: 8px;
    height: 8px;
  }

  .service-atlas {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-atlas-preview {
    padding: 18px 20px 20px;
  }

  .service-atlas-preview-title {
    font-size: clamp(1.7rem, 4.6vw, 2.4rem);
  }

  .service-atlas-visual {
    min-height: 240px;
  }

  .service-atlas-visual-node {
    left: 76px;
  }

  .service-atlas-visual-node.mid {
    left: 198px;
  }

  .service-atlas-visual-node.end {
    left: 316px;
  }

  .service-atlas-pills {
    gap: 6px;
  }
}

@media (max-width: 640px) {
  .services-section {
    padding-top: 16px;
  }

  .service-atlas-preview-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-atlas-preview-btn {
    width: 100%;
    min-height: 40px;
  }

  .service-atlas-preview-text {
    font-size: 14px;
    line-height: 1.7;
  }

  .service-atlas-visual {
    min-height: 200px;
  }

  .service-atlas-visual-node {
    left: 68px;
  }

  .service-atlas-visual-node.mid {
    left: 168px;
  }

  .service-atlas-visual-node.end {
    left: 266px;
  }
}

.services-section .service-intro-shell .section-kicker,
.services-section .service-intro-shell .section-summary {
  display: block;
}

@media (max-width: 1180px) {
  .affiliate-hero {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .affiliate-copy {
    text-align: center;
  }

  .affiliate-summary {
    max-width: 42ch;
    margin-inline: auto;
  }

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

@media (max-width: 820px) {
  .affiliate-section {
    padding: 20px 0 12px;
  }

  .affiliate-shell {
    padding: 22px 16px 18px;
    border-radius: 22px;
  }

  .affiliate-copy h2 {
    font-size: clamp(1.9rem, 8vw, 2.9rem);
  }

  .affiliate-summary {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .affiliate-orbit {
    min-height: 250px;
  }

  .affiliate-orbit-node.node-top { top: calc(50% - 88px); }
  .affiliate-orbit-node.node-right { right: calc(50% - 88px); }
  .affiliate-orbit-node.node-bottom { bottom: calc(50% - 88px); }
  .affiliate-orbit-node.node-left { left: calc(50% - 88px); }

  .affiliate-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .affiliate-card {
    min-height: 0;
    padding: 18px 14px 16px;
    border-radius: 16px;
  }

  .affiliate-card h3 {
    font-size: 1rem;
  }

  .affiliate-name,
  .affiliate-desc {
    font-size: 0.84rem;
  }

}

@media (max-width: 540px) {
  .affiliate-grid {
    grid-template-columns: 1fr;
  }

  .affiliate-orbit {
    min-height: 220px;
  }

  .affiliate-core {
    padding: 18px 14px;
  }

  .affiliate-core strong {
    font-size: 1.14rem;
  }

  .affiliate-logo-wrap {
    height: 54px;
    margin-bottom: 10px;
  }

  .affiliate-logo-wrap img {
    max-height: 48px;
  }
}











