/* ============================================
   MAIN CSS — Bobstr Homepage
   ============================================ */

/* ── Base ───────────────────────────────────── */

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--color-dark);
  background: var(--color-page-bg, var(--color-white));
  overflow-x: hidden;
  transition: background-color 0.4s var(--ease-standard);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: var(--section-py) 0;
}

.section--gray {
  background: var(--color-bg-section, var(--color-bg));
}

.section--dark {
  background: var(--color-bg-dark, var(--color-dark));
  color: var(--color-white);
}

.section--green {
  background: var(--color-bg-brand);
  color: var(--color-white);
}

.section--light-green {
  background: var(--color-bg-soft, #dff0e8);
}

/* section--green 내부 텍스트 자동 흰색 */
.section--green .section-title  { color: var(--color-white); }
.section--green .section-label  { color: rgba(255,255,255,.65); }
.section--green .section-label::before { background: rgba(255,255,255,.65); }
.section--green .section-desc   { color: rgba(255,255,255,.75); }
.section--green .highlight      { color: var(--color-white); }

/* ── Section Header ─────────────────────────── */

.section-header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-header--center {
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-lg);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: var(--sp-4);
}

.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-bg-brand);
  border-radius: var(--radius-full);
}

.section-label--light {
  color: var(--color-yellow);
}

.section-label--light::before {
  background: var(--color-yellow);
}

.section-title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: var(--fw-extrabold);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-dark);
}

.section-title--light {
  color: var(--color-white);
}

.section-desc {
  margin-top: var(--sp-5);
  font-size: var(--text-lg);
  color: var(--color-gray-2);
  line-height: 1.75;
  max-width: 560px;
}

.section-desc--center {
  margin-left: auto;
  margin-right: auto;
}

.section-desc--light {
  color: rgba(255,255,255,0.7);
}

/* ── Buttons ────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.875rem 1.75rem;
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-sm);
  transition: all var(--duration-normal) var(--ease-standard);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--duration-fast) var(--ease-standard);
}

.btn:hover::after {
  background: rgba(255,255,255,0.08);
}

.btn--primary {
  background: var(--color-bg-brand);
  color: var(--color-white);
  box-shadow: var(--shadow-green);
}

.btn--primary:hover {
  background: var(--color-bg-brand-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(50, 144, 94, 0.35);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--outline {
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--color-white);
  background: transparent;
}

.btn--outline:hover {
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.08);
}

.btn--outline-dark {
  border: 1.5px solid var(--color-gray-4);
  color: var(--color-dark);
}

.btn--outline-dark:hover {
  border-color: var(--color-green);
  color: var(--color-green);
}

.btn--lg {
  padding: 1.125rem 2.25rem;
  font-size: var(--text-lg);
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: var(--text-sm);
}

/* ── GNB ────────────────────────────────────── */

.gnb {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--gnb-height);
  transition: background var(--duration-slow) var(--ease-standard),
              box-shadow var(--duration-slow) var(--ease-standard);
}

.gnb--transparent {
  background: transparent;
}

.gnb--solid {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.gnb__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}

.gnb__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  flex-shrink: 0;
}

/* 회사 로고 이미지 (밥상 그릇 + 밥스토랑 텍스트, 검정) */
.gnb__logo-img {
  display: block;
  height: 36px;
  width: auto;
  transition: filter var(--duration-fast);
}

/* 다크 배경(transparent hero) 위에서는 흰색으로 반전 */
.gnb--transparent .gnb__logo-img {
  filter: brightness(0) invert(1);
}
.gnb--solid .gnb__logo-img {
  filter: none;
}

.gnb__nav {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  flex: 1;
  justify-content: center;
}

.gnb__nav-link {
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-base);
  font-weight: var(--fw-medium);
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast) var(--ease-standard);
  white-space: nowrap;
}

.gnb--transparent .gnb__nav-link {
  color: rgba(255,255,255,0.85);
}

.gnb--transparent .gnb__nav-link:hover {
  color: var(--color-white);
  background: rgba(255,255,255,0.12);
}

.gnb--solid .gnb__nav-link {
  color: var(--color-gray-1);
}

.gnb--solid .gnb__nav-link:hover {
  color: var(--color-dark);
  background: var(--color-bg);
}

.gnb__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.gnb__cta {
  padding: 0.625rem 1.375rem;
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-sm);
  background: var(--color-bg-brand);
  color: var(--color-white);
  transition: all var(--duration-normal) var(--ease-standard);
  box-shadow: var(--shadow-green);
}

.gnb__cta:hover {
  background: var(--color-bg-brand-dark);
  transform: translateY(-2px);
}

/* Hamburger */
.gnb__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 8px 6px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--duration-fast);
}

.gnb__hamburger:hover {
  background: rgba(255,255,255,0.12);
}

.gnb__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: var(--radius-full);
  transition: all var(--duration-normal) var(--ease-standard);
}

.gnb--transparent .gnb__hamburger span {
  background: var(--color-white);
}

.gnb--solid .gnb__hamburger span {
  background: var(--color-dark);
}

.gnb__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.gnb__hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.gnb__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.gnb__mobile-menu {
  display: none;
  position: fixed;
  inset: var(--gnb-height) 0 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--sp-8) var(--container-pad);
  flex-direction: column;
  gap: var(--sp-2);
  /* 닫힘: 화면 위로 완전히 퇴장. 메뉴 높이=100vh-gnb 라서 translateY(-100%)만으론
     하단이 0~gnb 영역(GNB 자리)을 흰색으로 덮어 흰 로고/햄버거가 묻힌다(2026-06-05 수정).
     gnb 높이만큼 추가로 올려 GNB 영역을 비운다. */
  transform: translateY(calc(-100% - var(--gnb-height)));
  transition: transform var(--duration-slow) var(--ease-out);
  z-index: 999;
}

.gnb__mobile-menu.is-open {
  transform: translateY(0);
}

.gnb__mobile-link {
  padding: var(--sp-4) var(--sp-4);
  font-size: var(--text-xl);
  font-weight: var(--fw-semibold);
  color: var(--color-dark);
  border-radius: var(--radius-md);
  transition: all var(--duration-fast);
}

.gnb__mobile-link:hover {
  background: var(--color-bg);
  color: var(--color-green);
}

.gnb__mobile-cta {
  margin-top: var(--sp-4);
  display: inline-flex;
  padding: 1rem 1.5rem;
  background: var(--color-bg-brand);
  color: var(--color-white);
  font-size: var(--text-lg);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-sm);
  align-self: flex-start;
}

/* ── Hero ───────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg-dark, var(--color-dark));
}

/* ── 히어로 카루셀 (2026-06-02) ──────────
   슬라이드1=헤드라인+배경(텍스트 오버레이) / 슬라이드2·3=배너 이미지. 자동 회전.
   상단 GNB(메뉴바) 높이만큼 비워, 회전은 그 아래 영역에서만 — GNB 가 밝은 배너에 묻히지 않도록
   메뉴바 자리(어두운 히어로 배경)를 확보 (2026-06-02 사용자 요청). */
.hero-swiper {
  position: absolute;
  top: var(--gnb-height);
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
  height: 100%;
}
.hero-slide {
  position: relative;
  overflow: hidden;
}
/* 텍스트 슬라이드 — 수직 중앙 정렬 (GNB 공간은 카루셀 바깥에서 이미 확보됨) */
.hero-slide--text {
  display: flex;
  align-items: center;
}
.hero-slide--text .hero__content {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
/* 이미지 슬라이드 — 잘림 없이 전체 표시(contain). 비율 불일치 시 남는 여백은
   슬라이드별 배경색(banner 가장자리 색, inline style)이 메워 자연스럽게 보임. */
.hero-slide--img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
/* 페이지네이션 점 — 하단 중앙 */
.hero-swiper .swiper-pagination {
  bottom: 2rem;
  z-index: 5;
}
.hero-swiper .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background: rgba(255,255,255,0.5);
  opacity: 1;
  transition: width .3s, background .3s, border-radius .3s;
}
.hero-swiper .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 6px;
  background: var(--color-yellow, #FFE500);
}
/* 카루셀 사용 시 스크롤 인디케이터 숨김 (페이지네이션 점과 위치 충돌 방지) */
.hero__scroll { display: none; }

/* 배경: CSS 기하 패턴 */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* 배경 이미지 (2026-06-01 적용 — 매장 + 키오스크) */
.hero__bg-image {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/ir/hero-bg.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

/* 좌측 어둠 스크림 — 헤드라인 텍스트 가독성 확보 (배경 이미지 위 오버레이) */
.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 10, 0.88) 0%,
    rgba(10, 10, 10, 0.62) 32%,
    rgba(10, 10, 10, 0.18) 60%,
    transparent 80%
  );
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero__bg-accent {
  position: absolute;
  width: 600px;
  height: 600px;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-green-glow-12) 0%, transparent 70%);
  pointer-events: none;
}

/* 추상적 골프장 데코 */
.hero__deco {
  position: absolute;
  right: clamp(2rem, 8vw, 8rem);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 40vw, 500px);
  aspect-ratio: 1;
  opacity: 0.15;
}

.hero__deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--color-green-light);
}

.hero__deco-circle:nth-child(1) {
  inset: 0;
  animation: rotate-slow 30s linear infinite;
}

.hero__deco-circle:nth-child(2) {
  inset: 15%;
  border-style: dashed;
  animation: rotate-slow 20s linear infinite reverse;
}

.hero__deco-circle:nth-child(3) {
  inset: 30%;
  border-color: var(--color-yellow);
  animation: rotate-slow 15s linear infinite;
}

.hero__deco-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--color-green-light);
  border-radius: 50%;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: calc(var(--gnb-height) + 4rem) var(--container-pad) 4rem;
  width: 100%;
  display: grid;
  /* 단일 열 (2026-06-01) — 우측 hero__visual 숨김 + 배경 이미지가 우측 비주얼 역할.
     텍스트가 좌측 영역을 충분히 사용하도록 단일 열로 변경. */
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero__text { min-width: 0; }

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.hero__symbol {
  width: 100%;
  max-width: 380px;
  height: auto;
  color: var(--color-green-light);
  filter: drop-shadow(0 16px 36px rgba(50,144,94,0.35));
  transform-origin: 50% 100%;
  animation: heroShake 5.6s ease-in-out infinite;
}

/* Rocking around bottom-center pivot — metaphor: 밥솥에 밥이 다 되어 자연스럽게 진동.
   ~43% still (2.4s) → ~57% damped oscillation peaking at ±10° → settle.
   Wait phase halved from 4.8s → 2.4s; shake duration unchanged (~3.2s). */
@keyframes heroShake {
  0%, 43%    { transform: rotate(0deg); }
  49%        { transform: rotate(-10deg); }
  54%        { transform: rotate(10deg); }
  60%        { transform: rotate(-9deg); }
  66%        { transform: rotate(8deg); }
  72%        { transform: rotate(-6deg); }
  77%        { transform: rotate(5deg); }
  83%        { transform: rotate(-3deg); }
  89%        { transform: rotate(2deg); }
  94%, 100%  { transform: rotate(0deg); }
}

/* Lid bounce — synced to heroShake's oscillation phase (43-94%). Short translateY only,
   so transform-origin doesn't matter. Stacks on top of the parent rotation cleanly. */
.hero__symbol-lid {
  animation: lidBounce 5.6s ease-in-out infinite;
}

@keyframes lidBounce {
  0%, 43%, 100% { transform: translateY(0); }
  46%           { transform: translateY(-3px); }
  52%           { transform: translateY(0); }
  57%           { transform: translateY(-3px); }
  63%           { transform: translateY(0); }
  69%           { transform: translateY(-2px); }
  74%           { transform: translateY(0); }
  80%           { transform: translateY(-1.5px); }
  86%           { transform: translateY(0); }
  91%           { transform: translateY(-1px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__symbol,
  .hero__symbol-lid { animation: none; }
}

@media (max-width: 1023px) {
  .hero__content { grid-template-columns: 1fr; }
  .hero__visual  { display: none; }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: rgba(50, 144, 94, 0.15);
  border: 1px solid rgba(50, 144, 94, 0.3);
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-8);
  animation: fadeUp 0.8s var(--ease-out) 0.2s both;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-green-light);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero__badge-text {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-green-light);
  letter-spacing: 0.04em;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}

.hero__headline {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: var(--fw-extrabold);
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 760px;
  animation: fadeUp 0.8s var(--ease-out) 0.4s both;
}

.hero__headline em {
  font-style: normal;
  color: var(--color-green-light);
  display: block;
}

.hero__subtext {
  margin-top: var(--sp-6);
  font-size: clamp(var(--text-base), 2vw, var(--text-xl));
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 520px;
  animation: fadeUp 0.8s var(--ease-out) 0.6s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-top: var(--sp-10);
  animation: fadeUp 0.8s var(--ease-out) 0.8s both;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,0.35);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1s var(--ease-out) 1.2s both;
  z-index: 1;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scroll-line 1.5s ease-in-out infinite;
}

@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Values Section ─────────────────────────── */

.values {
  padding: var(--section-py) 0;
  background: var(--color-page-bg, var(--color-white));
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: clamp(3rem, 6vw, 5rem);
}

.value-card {
  padding: var(--sp-8) var(--sp-6);
  background: var(--color-white);
  border: 1px solid var(--color-gray-5);
  border-radius: var(--radius-lg);
  transition: all var(--duration-slow) var(--ease-standard);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-bg-brand);
  transform: scaleX(0);
  transition: transform var(--duration-slow) var(--ease-spring);
  transform-origin: left;
}

.value-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-9px);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card__icon {
  width: 52px;
  height: 52px;
  background: var(--color-green-dim);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  transition: background var(--duration-normal);
}

.value-card:hover .value-card__icon {
  background: var(--color-bg-brand);
}

.value-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-green);
  transition: color var(--duration-normal);
}

.value-card:hover .value-card__icon svg {
  color: var(--color-white);
}

.value-card__title {
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.02em;
}

.value-card__desc {
  font-size: var(--text-sm);
  color: var(--color-gray-2);
  line-height: 1.7;
}

/* ── Service Section ────────────────────────── */

.services {
  padding: var(--section-py) 0;
  background: var(--color-bg-section, var(--color-bg));
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

.service-row + .service-row {
  margin-top: clamp(5rem, 8vw, 7rem);
}

.service-row--reverse {
  direction: rtl;
}

.service-row--reverse > * {
  direction: ltr;
}

/* CSS placeholder 이미지 */
.service-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.service-visual__inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-visual--1 {
  background: linear-gradient(135deg, #0d1f16 0%, #1a3a28 40%, #0f2a1c 100%);
}

.service-visual--2 {
  background: linear-gradient(135deg, #1a1f1c 0%, #243328 40%, #1a2820 100%);
}

/* 스크린 골프 UI 모형 */
.service-mockup {
  width: 85%;
  max-width: 340px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  backdrop-filter: blur(10px);
}

.service-mockup__bar {
  display: flex;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.service-mockup__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.service-mockup__dot:nth-child(1) { background: #ff5f57; }
.service-mockup__dot:nth-child(2) { background: #febc2e; }
.service-mockup__dot:nth-child(3) { background: #28c840; }

.service-mockup__row {
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.08);
  margin-bottom: var(--sp-3);
}

.service-mockup__row:nth-child(odd) {
  width: 85%;
}

.service-mockup__row:nth-child(even) {
  width: 65%;
}

.service-mockup__highlight {
  background: rgba(50, 144, 94, 0.4) !important;
  width: 55% !important;
}

.service-mockup__card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

.service-mockup__card {
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(50, 144, 94, 0.15);
  border: 1px solid rgba(50, 144, 94, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-mockup__card-icon {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: var(--color-bg-brand);
  opacity: 0.7;
}

.service-content__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-1) var(--sp-3);
  background: var(--color-green-dim);
  color: var(--color-green);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-5);
}

.service-content__title {
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  font-weight: var(--fw-extrabold);
  color: var(--color-dark);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-5);
}

.service-content__desc {
  font-size: var(--text-base);
  color: var(--color-gray-2);
  line-height: 1.75;
  margin-bottom: var(--sp-6);
}

.service-content__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}

.service-content__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-base);
  color: var(--color-gray-1);
}

.service-content__item::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--color-bg-brand);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.704 4.153a.75.75 0 01.143 1.052l-8 10.5a.75.75 0 01-1.127.075l-4.5-4.5a.75.75 0 011.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 011.05-.143z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.75rem 1.5rem;
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-green);
  color: var(--color-green);
  background: transparent;
  transition: all var(--duration-normal) var(--ease-standard);
  white-space: nowrap;
}

.link-arrow:hover {
  background: var(--color-bg-brand);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-green);
}

.link-arrow::after {
  content: '→';
  font-size: 1.1em;
}

.link-arrow-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
}

/* ── Stats Section ──────────────────────────── */

.stats {
  padding: var(--section-py) 0;
  background: var(--color-bg-dark, var(--color-dark));
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 70% 70% at 15% 50%, rgba(50,144,94,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 85% 50%, rgba(50,144,94,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.stats.section--green { background: var(--color-bg-brand); }
.stats.section--green::before { display: none; }

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.stat-item {
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
  background: var(--color-bg-dark, var(--color-dark));
  text-align: center;
  position: relative;
  transition: background var(--duration-slow);
}

.stat-item:hover {
  background: var(--color-dark-2);
}

.stat-item__number {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: var(--fw-extrabold);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--color-white);
  margin-bottom: var(--sp-2);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat-item__suffix {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--color-green-light);
}

.stat-item__plus {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--color-yellow);
  font-weight: var(--fw-extrabold);
}

.stat-item__label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  font-weight: var(--fw-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}

.stat-item__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
}

/* ── Testimonials ───────────────────────────── */

.testimonials {
  padding: var(--section-py) 0;
  background: var(--color-page-bg, var(--color-white));
  overflow: hidden;
}

.testimonials .section-header {
  margin-bottom: var(--sp-12);
}

.swiper-testimonial {
  overflow: visible;
  padding-bottom: 3rem !important;
}

.swiper-testimonial .swiper-wrapper {
  align-items: stretch;
}

.swiper-testimonial .swiper-slide {
  height: auto;
}

.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-5);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--duration-slow) var(--ease-standard);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 6rem;
  font-weight: var(--fw-extrabold);
  color: var(--color-gray-5);
  line-height: 1;
  pointer-events: none;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  border-color: rgba(50,144,94,0.2);
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--sp-5);
}

.star {
  width: 18px;
  height: 18px;
  color: var(--color-yellow-dark);
}

.star svg {
  fill: currentColor;
  width: 100%;
  height: 100%;
}

.testimonial-card__text {
  font-size: var(--text-base);
  color: var(--color-gray-1);
  line-height: 1.75;
  flex: 1;
  margin-bottom: var(--sp-6);
  position: relative;
  z-index: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--color-gray-5);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--color-white);
}

.avatar-1 { background: linear-gradient(135deg, #32905E, #4aab78); }
.avatar-2 { background: linear-gradient(135deg, #1a6e45, #32905E); }
.avatar-3 { background: linear-gradient(135deg, #0f4a2e, #1a6e45); }
.avatar-4 { background: linear-gradient(135deg, #32905E, #2d7a52); }

.testimonial-card__info {}

.testimonial-card__name {
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  color: var(--color-dark);
}

.testimonial-card__location {
  font-size: var(--text-xs);
  color: var(--color-gray-3);
  margin-top: 2px;
}

/* Swiper Pagination */
.swiper-pagination-testimonial {
  bottom: 0 !important;
}

.swiper-pagination-testimonial .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--color-gray-4);
  opacity: 1;
  transition: all var(--duration-normal);
}

.swiper-pagination-testimonial .swiper-pagination-bullet-active {
  background: var(--color-bg-brand);
  width: 24px;
  border-radius: var(--radius-full);
}

/* Swiper Navigation */
.swiper-nav {
  display: flex;
  gap: var(--sp-3);
  justify-content: center;
  margin-top: var(--sp-8);
}

.swiper-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gray-4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-standard);
  color: var(--color-gray-2);
}

.swiper-nav-btn:hover {
  border-color: var(--color-green);
  color: var(--color-green);
  background: var(--color-green-dim);
}

.swiper-nav-btn svg {
  width: 20px;
  height: 20px;
}

/* ── CTA Section ────────────────────────────── */

.cta-section {
  padding: var(--section-py) 0;
  background: var(--color-bg-section, var(--color-bg));
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}

/* -- 왼쪽 텍스트 -- */

.cta-tagline {
  font-size: clamp(var(--text-xl), 2.2vw, var(--text-2xl));
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  line-height: 1.45;
  margin-bottom: var(--sp-3);
}

.cta-headline {
  font-size: clamp(var(--text-2xl), 2.8vw, var(--text-4xl));
  font-weight: var(--fw-extrabold);
  color: var(--color-green);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-10);
}

.cta-benefit-heading {
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: var(--color-dark);
  margin-bottom: var(--sp-5);
}

.cta-benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-bottom: var(--sp-10);
}

.cta-benefit-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.cta-benefit-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--color-green-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green);
}

.cta-benefit-icon svg {
  width: 20px;
  height: 20px;
}

.cta-benefit-item strong {
  display: block;
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: var(--color-dark);
  margin-bottom: 2px;
}

.cta-benefit-item p {
  font-size: var(--text-sm);
  color: var(--color-gray-2);
  line-height: 1.65;
}

.cta-contact-link {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.cta-contact-link > p {
  font-size: var(--text-sm);
  color: var(--color-gray-2);
}

/* -- 오른쪽 폼 카드 -- */

.cta-right {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-gray-5);
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.inquiry-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.inquiry-field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.inquiry-label {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-dark);
}

.req {
  color: var(--color-green);
}

.inquiry-input {
  padding: 0.625rem 0.875rem;
  border: 1.5px solid var(--color-gray-4);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-family: var(--font-primary);
  color: var(--color-dark);
  background: var(--color-white);
  outline: none;
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}

.inquiry-input::placeholder { color: var(--color-gray-3); }

.inquiry-input:focus {
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px rgba(50,144,94,0.12);
}

.inquiry-radio-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-top: var(--sp-1);
}

.inquiry-radio {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--color-dark);
}

.inquiry-radio input[type="radio"] {
  accent-color: var(--color-green);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.inquiry-radio--other { flex-wrap: wrap; }

.inquiry-other-input {
  flex: 1;
  min-width: 100px;
  padding: 0.28rem 0.6rem;
  border: 1px solid var(--color-gray-4);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-family: var(--font-primary);
  color: var(--color-dark);
  background: var(--color-bg);
  outline: none;
  transition: border-color var(--duration-fast);
}

.inquiry-other-input:disabled { opacity: 0.4; cursor: not-allowed; }

.inquiry-other-input:not(:disabled):focus {
  border-color: var(--color-green);
  background: var(--color-white);
}

.inquiry-agree {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.inquiry-agree-check {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  cursor: pointer;
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-dark);
}

.inquiry-agree-check input[type="checkbox"] {
  accent-color: var(--color-green);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.inquiry-policy {
  height: 100px;
  overflow-y: auto;
  padding: var(--sp-3);
  background: var(--color-bg);
  border: 1px solid var(--color-gray-4);
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  line-height: 1.75;
  color: var(--color-gray-2);
  white-space: pre-wrap;
}

.inquiry-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--color-bg-brand);
  color: var(--color-white);
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  font-family: var(--font-primary);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-standard);
  box-shadow: var(--shadow-green);
  margin-top: var(--sp-1);
}

.inquiry-submit:hover {
  background: var(--color-bg-brand-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(50,144,94,0.35);
}

.inquiry-submit:active {
  transform: translateY(0);
}

/* ── Footer ─────────────────────────────────── */

.footer {
  background: var(--color-bg-dark, var(--color-dark));
  color: rgba(255,255,255,0.5);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}

.footer__inner {
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand {}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  margin-bottom: var(--sp-5);
}

/* 푸터 로고 — 다크 배경이라 항상 흰색 반전 */
.footer__logo-img {
  display: block;
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer__tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-bottom: var(--sp-6);
}

.footer__social {
  display: flex;
  gap: var(--sp-3);
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: all var(--duration-normal);
}

.footer__social-link:hover {
  border-color: var(--color-green);
  color: var(--color-green);
  background: rgba(50,144,94,0.08);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

.footer__link-group {}

.footer__link-title {
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--sp-5);
}

.footer__link-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
  transition: color var(--duration-fast);
}

.footer__link:hover {
  color: rgba(255,255,255,0.8);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-top: var(--sp-6);
  flex-wrap: wrap;
}

.footer__company-info {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.25);
  line-height: 1.7;
}

.footer__copyright {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.25);
}

/* ── Value Card Sequential Zoom ─────────────── */

.value-card {
  transition: border-color 0.5s cubic-bezier(0.25,1,0.5,1),
              box-shadow 0.5s cubic-bezier(0.25,1,0.5,1),
              transform 0.5s cubic-bezier(0.25,1,0.5,1);
}

.value-card--active {
  border-color: var(--color-green);
  box-shadow: 0 20px 60px rgba(50,144,94,0.18), 0 0 0 2px rgba(50,144,94,0.12);
  transform: translateY(-15px) scale(1.06) !important;
  z-index: 2;
}

.value-card--active::before {
  transform: scaleX(1);
}

.value-card--active .value-card__icon {
  background: var(--color-bg-brand);
}

.value-card--active .value-card__icon svg {
  color: var(--color-white);
}

.value-card--active .value-card__title {
  color: var(--color-green);
}

/* ── Line-text Underline Draw Animation ─────── */

.line-text {
  position: relative;
  display: inline;
}

.line-text::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-bg-brand);
  transition: width 0.55s cubic-bezier(0.25, 1, 0.5, 1);
  border-radius: var(--radius-full);
}

.line-text.drawn::after {
  width: 100%;
}

.line-text--reset::after {
  transition: none;
}

/* ── Solutions Section — Row Layout ─────────── */

.solution-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

.solution-row + .solution-row {
  margin-top: clamp(5rem, 8vw, 7rem);
}

.solution-row--reverse {
  direction: rtl;
}

.solution-row--reverse > * {
  direction: ltr;
}

.solution-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.solution-visual--robot {
  background: linear-gradient(135deg, #091810 0%, #112b1d 50%, #0a1f14 100%);
}

.solution-visual--unattended {
  background: linear-gradient(135deg, #0d1a10 0%, #192814 50%, #0c1a0e 100%);
}

.solution-visual--access {
  background: linear-gradient(135deg, #0a1810 0%, #101e14 50%, #0f2418 100%);
}

.solution-visual__inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-row__content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.solution-row__title {
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  font-weight: var(--fw-extrabold);
  color: var(--color-white);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.solution-row__desc {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

/* ── Sol-Robot Visual ────────────────────────── */

.sol-robot {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}

.sol-robot__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(50,144,94,0.3) 0%, transparent 70%);
  animation: sol-pulse 2.8s ease-in-out infinite;
}

@keyframes sol-pulse {
  0%, 100% { transform: translate(-50%,-55%) scale(1); opacity: 0.7; }
  50%       { transform: translate(-50%,-55%) scale(1.38); opacity: 1; }
}

.sol-robot__orbit {
  position: absolute;
  border: 1px dashed rgba(50,144,94,0.25);
  border-radius: 50%;
  animation: sol-orbit-spin linear infinite;
}

.sol-robot__orbit--1 {
  width: 140px;
  height: 140px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-55%);
  animation-duration: 6s;
}

.sol-robot__orbit--2 {
  width: 190px;
  height: 190px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-55%);
  animation-duration: 10s;
  animation-direction: reverse;
}

@keyframes sol-orbit-spin {
  from { transform: translate(-50%,-55%) rotate(0deg); }
  to   { transform: translate(-50%,-55%) rotate(360deg); }
}

.sol-robot__orbit-dot {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-bg-brand);
  box-shadow: 0 0 8px rgba(50,144,94,0.8);
}

.sol-robot__body {
  position: relative;
  z-index: 1;
  width: 100px;
  height: 100px;
  background: rgba(50,144,94,0.08);
  border: 1.5px solid rgba(50,144,94,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sol-robot__tracks {
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.sol-robot__track-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-bg-brand);
  animation: sol-track 1.6s ease-in-out infinite;
  opacity: 0.85;
}

.sol-robot__track-dot:nth-child(1) { animation-delay: 0s;    opacity: 1; }
.sol-robot__track-dot:nth-child(2) { animation-delay: 0.2s;  opacity: 0.75; }
.sol-robot__track-dot:nth-child(3) { animation-delay: 0.4s;  opacity: 0.55; }
.sol-robot__track-dot:nth-child(4) { animation-delay: 0.6s;  opacity: 0.35; }
.sol-robot__track-dot:nth-child(5) { animation-delay: 0.8s;  opacity: 0.18; }

@keyframes sol-track {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.sol-robot__badge {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  color: rgba(255,255,255,0.75);
  background: rgba(50,144,94,0.12);
  border: 1px solid rgba(50,144,94,0.2);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  position: relative;
  z-index: 1;
}

.sol-robot__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-bg-brand);
  box-shadow: 0 0 6px rgba(50,144,94,0.9);
  animation: sol-blink 1.4s ease-in-out infinite;
}

@keyframes sol-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

/* ── Sol-Unattended Visual ───────────────────── */

.sol-unattended__monitor {
  width: min(280px, 80%);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: var(--sp-6) var(--sp-6) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.sol-unattended__monitor-bar {
  display: flex;
  gap: var(--sp-2);
  margin-bottom: var(--sp-1);
}

.sol-unattended__monitor-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.sol-unattended__monitor-dot:nth-child(1) { background: #ff5f57; }
.sol-unattended__monitor-dot:nth-child(2) { background: #febc2e; }
.sol-unattended__monitor-dot:nth-child(3) { background: #28c840; }

.sol-unattended__time {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: var(--fw-extrabold);
  color: var(--color-yellow);
  letter-spacing: -0.04em;
  line-height: 1;
}

.sol-unattended__indicator {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
  font-weight: var(--fw-medium);
}

.sol-unattended__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-bg-brand);
  animation: sol-blink 1.4s ease-in-out infinite;
}

.sol-unattended__stats {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.sol-unattended__stat {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.sol-unattended__stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
  width: 24px;
  flex-shrink: 0;
}

.sol-unattended__bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.sol-unattended__bar-fill {
  height: 100%;
  background: var(--color-bg-brand);
  border-radius: var(--radius-full);
}

.sol-unattended__bar-fill--yellow {
  background: var(--color-yellow);
}

.sol-unattended__stat-val {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  width: 28px;
  text-align: right;
  flex-shrink: 0;
}

/* ── Sol-Access Visual ───────────────────────── */

.sol-access {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}

.sol-access__frame {
  position: relative;
  padding: 0.25rem;
}

.sol-access__qr {
  position: relative;
  width: 160px;
  height: 160px;
  border: 1.5px solid rgba(50,144,94,0.3);
  border-radius: var(--radius-md);
  padding: var(--sp-3);
  overflow: hidden;
}

.sol-access__qr-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--color-green);
  border-style: solid;
}

.sol-access__qr-corner--tl { top: -1px; left: -1px; border-width: 3px 0 0 3px; border-radius: 4px 0 0 0; }
.sol-access__qr-corner--tr { top: -1px; right: -1px; border-width: 3px 3px 0 0; border-radius: 0 4px 0 0; }
.sol-access__qr-corner--bl { bottom: -1px; left: -1px; border-width: 0 0 3px 3px; border-radius: 0 0 0 4px; }

.sol-access__qr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  height: 100%;
}

.sol-access__qr-cell {
  border-radius: 2px;
  background: rgba(50,144,94,0.08);
}

.sol-access__qr-cell--dark {
  background: rgba(50,144,94,0.55);
}

.sol-access__scan-line {
  position: absolute;
  left: 4px;
  right: 4px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-bg-brand), transparent);
  box-shadow: 0 0 8px var(--color-green-glow-30);
  animation: sol-scan 2s ease-in-out infinite;
  top: 4px;
}

@keyframes sol-scan {
  0%   { top: 8px; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: calc(100% - 8px); opacity: 0; }
}

.sol-access__approved {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-green);
  background: rgba(50,144,94,0.1);
  border: 1px solid rgba(50,144,94,0.2);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-top: var(--sp-3);
}

.solution-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-bg-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
  border-radius: var(--radius-full) var(--radius-full) 0 0;
}

.solution-card:hover::before {
  transform: scaleX(1);
}

.solution-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.35), 0 0 0 1px rgba(50,144,94,0.25);
  border-color: rgba(50,144,94,0.3);
}

.solution-card--featured {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,229,0,0.18);
}

.solution-card--featured::before {
  background: var(--color-yellow);
}

.solution-card--featured:hover {
  box-shadow: 0 24px 48px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,229,0,0.3);
  border-color: rgba(255,229,0,0.35);
}

.solution-card__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-green);
  background: rgba(50,144,94,0.12);
  border: 1px solid rgba(50,144,94,0.2);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  width: fit-content;
}

.solution-card__tag--yellow {
  color: var(--color-yellow);
  background: rgba(255,229,0,0.1);
  border-color: rgba(255,229,0,0.2);
}

.solution-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(50,144,94,0.12);
  border: 1px solid rgba(50,144,94,0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green);
  flex-shrink: 0;
}

.solution-card__icon svg {
  width: 26px;
  height: 26px;
}

.solution-card__icon--yellow {
  background: rgba(255,229,0,0.1);
  border-color: rgba(255,229,0,0.2);
  color: var(--color-yellow);
}

.solution-card__title {
  font-size: clamp(var(--text-lg), 2vw, var(--text-xl));
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: 1.35;
}

.solution-card__desc {
  font-size: var(--text-sm);
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  flex: 1;
}

.solution-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.solution-card__item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
}

.solution-card__check {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: rgba(50,144,94,0.15);
  border: 1px solid rgba(50,144,94,0.35);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  position: relative;
}

.solution-card__check::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 4px;
  width: 6px;
  height: 9px;
  border-right: 2px solid var(--color-green);
  border-bottom: 2px solid var(--color-green);
  transform: rotate(40deg);
}

.solution-card__check--yellow {
  background: rgba(255,229,0,0.1);
  border-color: rgba(255,229,0,0.3);
}

.solution-card__check--yellow::after {
  border-color: var(--color-yellow);
}

.solution-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-sm);
  background: var(--color-bg-brand);
  color: var(--color-white);
  text-decoration: none;
  margin-top: auto;
  align-self: flex-start;
  transition: all var(--duration-normal) var(--ease-standard);
  box-shadow: var(--shadow-green);
}

.solution-card__cta:hover {
  background: var(--color-bg-brand-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(50,144,94,0.35);
}

.solution-card__cta--yellow {
  background: var(--color-yellow);
  color: var(--color-dark);
  box-shadow: none;
}

.solution-card__cta--yellow:hover {
  background: #e6cf00;
  box-shadow: 0 8px 24px rgba(255,229,0,0.35);
}

/* ── Utility ────────────────────────────────── */

.highlight {
  color: var(--color-green);
}

.highlight--yellow {
  color: var(--color-yellow);
}

/* ── Responsive ─────────────────────────────── */

@media (max-width: 1023px) {
  .solution-row {
    grid-template-columns: 1fr;
  }

  .solution-row--reverse {
    direction: ltr;
  }

  .values__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .service-row--reverse {
    direction: ltr;
  }

  .stats__grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .inquiry-row {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

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

  .hero__deco {
    display: none;
  }
}

@media (max-width: 767px) {
  :root {
    --gnb-height: 64px;
  }

  .solution-row + .solution-row {
    margin-top: 3.5rem;
  }

  .solution-visual {
    aspect-ratio: 3/2;
  }

  .gnb__nav,
  .gnb__cta {
    display: none;
  }

  .gnb__hamburger {
    display: flex;
  }

  .gnb__mobile-menu {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .values__grid {
    grid-template-columns: 1fr;
  }

  .stats__grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .footer__links {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6);
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-visual {
    aspect-ratio: 16/9;
  }
}


/* ============================================
   IR PHOTO FRAME — IR 자료 이미지 톤 통일
   배경 그라데이션 + 모서리 + 미세 색조 보정으로
   사진별 배경 이질감을 상쇄한다.
   ============================================ */

.ir-photo {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(ellipse 75% 90% at 50% 110%, rgba(50,144,94,0.10) 0%, transparent 60%),
    linear-gradient(160deg, #f4f7f5 0%, #e9efeb 55%, #dde6e0 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 18px 48px -20px rgba(17,23,20,0.18),
    0 4px 12px -4px rgba(50,144,94,0.10);
  border: 1px solid rgba(50,144,94,0.10);
  aspect-ratio: 4/3;
  display: block;
}

.ir-photo--portrait {
  aspect-ratio: 3/4;
  background:
    radial-gradient(ellipse 90% 75% at 50% 100%, rgba(50,144,94,0.08) 0%, transparent 60%),
    linear-gradient(170deg, #eef2ef 0%, #e3eae5 100%);
}

.ir-photo--dark {
  background:
    radial-gradient(ellipse 80% 90% at 50% 110%, rgba(50,144,94,0.18) 0%, transparent 55%),
    linear-gradient(160deg, #1a2520 0%, #111714 100%);
  border-color: rgba(255,255,255,0.06);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 18px 48px -16px rgba(0,0,0,0.5);
}

.ir-photo__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  mix-blend-mode: multiply;
}

.ir-photo--dark .ir-photo__img {
  mix-blend-mode: screen;
  filter: saturate(0.88) brightness(1.05);
}

.ir-photo--object .ir-photo__img {
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: saturate(0.88) contrast(1.04);
  padding: 8%;
}

.ir-photo__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--sp-3) var(--sp-5);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  background: linear-gradient(0deg, rgba(17,23,20,0.65) 0%, rgba(17,23,20,0) 100%);
  letter-spacing: 0.04em;
  display: flex; align-items: center; gap: var(--sp-2);
  z-index: 1;
}
.ir-photo__caption-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-yellow);
  box-shadow: 0 0 0 3px rgba(255,229,0,0.18);
}


/* ============================================
   ROBOT LINEUP — 서비스 페이지 로봇 라인업
   ============================================ */

.robot-lineup {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1023px) { .robot-lineup { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .robot-lineup { grid-template-columns: 1fr; } }

.robot-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-5);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.25rem 1.75rem;
  display: flex; flex-direction: column;
  transition: transform var(--duration-normal) var(--ease-standard),
              box-shadow var(--duration-normal);
}
.robot-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.robot-card__photo { margin-bottom: 1.25rem; }

.robot-card__status {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: 0.2rem 0.625rem;
  font-size: var(--text-xs); font-weight: var(--fw-bold);
  border-radius: var(--radius-full);
  letter-spacing: 0.06em; margin-bottom: var(--sp-3);
  align-self: flex-start;
}
.robot-card__status--shipping {
  color: var(--color-green); background: var(--color-green-dim);
}
.robot-card__status--shipping::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-bg-brand);
}
.robot-card__status--planned {
  color: var(--color-gray-2); background: var(--color-gray-5);
}
.robot-card__status--planned::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-gray-3);
}

.robot-card__name {
  font-size: var(--text-xl); font-weight: var(--fw-extrabold);
  color: var(--color-dark); line-height: 1.2;
  margin-bottom: var(--sp-1);
}
.robot-card__role {
  font-size: var(--text-sm); color: var(--color-green);
  font-weight: var(--fw-semibold); margin-bottom: var(--sp-3);
}
.robot-card__desc {
  font-size: var(--text-sm); color: var(--color-gray-2);
  line-height: 1.6;
}


/* ============================================
   IR FACT STRIP — 매장 운영 사례 데이터 카드
   ============================================ */

.fact-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-gray-5);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 767px) { .fact-strip { grid-template-columns: 1fr; gap: 1rem; padding: 1.25rem; } }

.fact-strip__item { padding: 0 .25rem; }
.fact-strip__label {
  font-size: var(--text-xs); font-weight: var(--fw-semibold);
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-gray-2); margin-bottom: var(--sp-2);
}
.fact-strip__value {
  font-size: var(--text-2xl); font-weight: var(--fw-extrabold);
  color: var(--color-dark); line-height: 1.1;
  margin-bottom: var(--sp-1);
}
.fact-strip__value em {
  font-style: normal; color: var(--color-green); font-size: 0.65em;
  margin-left: 4px;
}
.fact-strip__sub {
  font-size: var(--text-xs); color: var(--color-gray-2);
}


/* ============================================
   DELIVERY BRAND CHIPS — 샵인샵 배달 브랜드
   ============================================ */

.brand-chips {
  display: flex; flex-wrap: wrap; gap: 0.625rem;
  justify-content: center;
}
.brand-chip {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: 0.55rem 1.05rem;
  background: var(--color-white);
  border: 1px solid var(--color-gray-5);
  border-radius: var(--radius-full);
  font-size: var(--text-sm); font-weight: var(--fw-semibold);
  color: var(--color-dark);
  box-shadow: var(--shadow-sm);
}
.brand-chip__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-yellow);
}


/* ============================================
   ROBOT TRIO — 솔루션 1번 좌측 비주얼
   세 로봇(MARO/ARO/DARO) 가로 정렬 카탈로그
   ============================================ */

.robot-trio {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 90% at 50% 110%, rgba(50,144,94,0.20) 0%, transparent 55%),
    linear-gradient(160deg, #1a2520 0%, #111714 100%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 18px 48px -16px rgba(0,0,0,0.5);
  padding: 1.25rem 1rem 1.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
  align-items: end;
}

/* 바닥선 — 세 로봇이 같은 가상 floor에 서 있는 느낌 */
.robot-trio::after {
  content: '';
  position: absolute;
  left: 1.5rem; right: 1.5rem;
  bottom: 4rem;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(50,144,94,0.35) 20%,
    rgba(50,144,94,0.6) 50%,
    rgba(50,144,94,0.35) 80%,
    transparent 100%);
  z-index: 0;
}

.robot-trio__cell {
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  height: 100%;
  text-align: center;
  z-index: 1;
}

.robot-trio__img-box {
  width: 100%;
  flex: 1 1 0;
  position: relative;
  min-height: 0;
  margin-bottom: var(--sp-2);
}

.robot-trio__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 12px 16px rgba(0,0,0,0.45));
}

/* trim 이후 본체가 박스를 가득 채우므로 추가 scale 불필요. 클래스는 호환용으로만 유지. */
.robot-trio__cell--wide .robot-trio__img {
  transform: none;
}

.robot-trio__label {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.14em;
  color: var(--color-white);
  background: rgba(50,144,94,0.18);
  border: 1px solid rgba(50,144,94,0.35);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  margin-top: var(--sp-2);
}

.robot-trio__sub {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .robot-trio { aspect-ratio: 5/4; padding: 1rem 0.5rem 1.25rem; gap: 0.4rem; }
  .robot-trio__label { font-size: 0.65rem; padding: 0.2rem 0.5rem; }
  .robot-trio__sub { display: none; }
}


/* ============================================
   PHOTO STACK — 두 장 사진을 세로/대각 적층
   서비스-row 우측 비주얼에 사용
   ============================================ */

.photo-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  display: block;
}

.photo-stack__item {
  position: absolute;
  width: 78%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 90% at 50% 110%, rgba(50,144,94,0.10) 0%, transparent 60%),
    linear-gradient(160deg, #f4f7f5 0%, #e9efeb 55%, #dde6e0 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 22px 56px -22px rgba(17,23,20,0.32),
    0 4px 12px -4px rgba(50,144,94,0.10);
  border: 1px solid rgba(50,144,94,0.10);
}

.photo-stack__item--back {
  top: 0; right: 0;
  transform: rotate(3deg);
  z-index: 1;
}

.photo-stack__item--front {
  bottom: 0; left: 0;
  transform: rotate(-3deg);
  z-index: 2;
}

.photo-stack__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  mix-blend-mode: multiply;
}

.photo-stack__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  background: linear-gradient(0deg, rgba(17,23,20,0.7) 0%, rgba(17,23,20,0) 100%);
  letter-spacing: 0.04em;
  display: flex; align-items: center; gap: var(--sp-2);
  z-index: 1;
}
.photo-stack__caption-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-yellow);
  box-shadow: 0 0 0 3px rgba(255,229,0,0.18);
}

@media (max-width: 767px) {
  .photo-stack { aspect-ratio: 5/4; }
  .photo-stack__item { width: 72%; }
}


/* ============================================
   OPS BOARD — 슬라이드 19 스타일 매장 운영 다이어그램
   매장 케이스 2건 + 24h 운영 띠 + IOT 도입비 표
   ============================================ */

.ops-board {
  background: var(--color-white);
  border: 1px solid var(--color-gray-5);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  gap: 1.25rem;
}

.ops-board__title {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-green);
  display: flex; align-items: center; gap: var(--sp-2);
}
.ops-board__title::before {
  content: ''; width: 24px; height: 2px;
  background: var(--color-bg-brand); border-radius: var(--radius-full);
}

/* ── 매장 케이스 2-up ───────────────────── */
.ops-cases {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem;
}
@media (max-width: 600px) { .ops-cases { grid-template-columns: 1fr; } }

.ops-case {
  background: linear-gradient(170deg, rgba(50,144,94,0.06) 0%, transparent 90%);
  border: 1px solid var(--color-gray-5);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem 1.1rem;
}
.ops-case__head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 0.625rem;
}
.ops-case__name {
  font-size: var(--text-base);
  font-weight: var(--fw-extrabold);
  color: var(--color-dark);
}
.ops-case__date {
  font-size: 0.7rem;
  color: var(--color-gray-2);
  font-weight: var(--fw-semibold);
}
.ops-case__metric {
  display: flex; align-items: baseline; gap: 0.4rem;
  margin-bottom: 0.375rem;
}
.ops-case__amount {
  font-size: var(--text-xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-dark);
  line-height: 1;
}
.ops-case__amount em {
  font-style: normal;
  font-size: 0.6em;
  color: var(--color-green);
  margin-left: 2px;
}
.ops-case__per {
  font-size: 0.7rem;
  color: var(--color-gray-2);
}
.ops-case__meta {
  display: flex; flex-wrap: wrap; gap: 0.375rem;
  font-size: 0.7rem; color: var(--color-gray-1);
  margin-top: 0.5rem;
}
.ops-case__meta-pill {
  background: var(--color-gray-5);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  font-weight: var(--fw-semibold);
}

/* ── 24h 운영 띠 ───────────────────────── */
.ops-schedule {}
.ops-schedule__bar {
  position: relative;
  height: 28px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  background: var(--color-gray-5);
  border: 1px solid var(--color-gray-5);
}
.ops-schedule__seg {
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: var(--fw-bold);
  letter-spacing: 0.05em; color: var(--color-white);
  padding: 0 0.25rem;
  white-space: nowrap;
}
.ops-schedule__seg--day {
  /* 09~23 = 14h / 24h ≈ 58.3% */
  flex: 14;
  background: linear-gradient(180deg, var(--color-bg-brand) 0%, var(--color-bg-brand-dark) 100%);
}
.ops-schedule__seg--night {
  /* 23~09 = 10h / 24h ≈ 41.7% */
  flex: 10;
  background: linear-gradient(180deg, #1f2a24 0%, #111714 100%);
  color: var(--color-yellow);
}
.ops-schedule__ticks {
  display: flex;
  font-size: 0.65rem; color: var(--color-gray-3);
  margin-top: 0.375rem;
  font-weight: var(--fw-semibold);
}
.ops-schedule__tick { flex: 1; text-align: center; }
.ops-schedule__tick:first-child { text-align: left; }
.ops-schedule__tick:last-child { text-align: right; }

/* ── IOT 도입비 표 ─────────────────────── */
.ops-cost {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem 1rem;
}
.ops-cost__head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 0.5rem;
}
.ops-cost__title {
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  color: var(--color-dark);
}
.ops-cost__sub {
  font-size: 0.65rem;
  color: var(--color-gray-2);
}
.ops-cost__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem 1rem;
}
.ops-cost__item {
  display: flex; justify-content: space-between;
  font-size: 0.7rem;
  color: var(--color-gray-1);
  padding: 0.15rem 0;
  border-bottom: 1px dashed var(--color-gray-5);
}
.ops-cost__item-name { font-weight: var(--fw-medium); }
.ops-cost__item-val { font-weight: var(--fw-semibold); color: var(--color-dark); }
.ops-cost__total {
  margin-top: 0.625rem;
  padding-top: 0.625rem;
  border-top: 1px solid var(--color-gray-4);
  display: flex; justify-content: space-between; align-items: baseline;
}
.ops-cost__total-label {
  font-size: 0.7rem;
  font-weight: var(--fw-semibold);
  color: var(--color-gray-2);
}
.ops-cost__total-val {
  font-size: var(--text-lg);
  font-weight: var(--fw-extrabold);
  color: var(--color-green);
}
.ops-cost__total-val em {
  font-style: normal;
  font-size: 0.55em;
  color: var(--color-gray-2);
  margin-left: 4px;
}


/* ============================================
   WORKFLOW — 스크린골프장 최적화 서비스 솔루션
   5 단계 카드(키오스크→접수→서빙→자동문→충전)
   순차 1.5x 줌 펄스 애니메이션
   ============================================ */

.workflow__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  align-items: stretch;
  /* 1.5x 줌이 위로 튀어 오를 공간 + 인접 카드와 겹쳐도 오버플로 안 잘리게 */
  padding: 3rem 0 1.5rem;
  overflow: visible;
}
@media (max-width: 1023px) {
  .workflow__grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
@media (max-width: 600px) {
  .workflow__grid { grid-template-columns: repeat(2, 1fr); }
}

.workflow-card {
  position: relative;
  background: transparent;
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center;
  z-index: 1;
  /* zoom + z-index lift 두 keyframe을 같은 카드에 동시에 적용 */
  animation:
    workflowPulse 5s cubic-bezier(0.4, 0, 0.2, 1) infinite both,
    workflowLift  5s linear infinite both;
  transform-origin: center center;
  will-change: transform;
}
.workflow-card:nth-child(1) { animation-delay: 0s, 0s; }
.workflow-card:nth-child(2) { animation-delay: 1s, 1s; }
.workflow-card:nth-child(3) { animation-delay: 2s, 2s; }
.workflow-card:nth-child(4) { animation-delay: 3s, 3s; }
.workflow-card:nth-child(5) { animation-delay: 4s, 4s; }

@keyframes workflowPulse {
  0%, 18%, 100% { transform: scale(1); }
  6%, 12%       { transform: scale(1.5); }
}
@keyframes workflowLift {
  0%, 18%, 100% { z-index: 1; }
  4%, 14%       { z-index: 5; }
}

/* 사용자가 모션 줄이기 설정한 경우 비활성 */
@media (prefers-reduced-motion: reduce) {
  .workflow-card { animation: none; }
}

/* 호버 시 일시 정지 (사용자가 한 카드 자세히 보고 싶을 때) */
.workflow__grid:hover .workflow-card {
  animation-play-state: paused;
}

/* 이미지에 이미 번호·라벨이 들어 있으므로 카드는 이미지만 노출 */
.workflow-card__img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 220px;
  margin: 0 auto;
  object-fit: contain;
}

/* 카드 사이 화살표 커넥터 (데스크톱 ≥1024px) */
.workflow-card + .workflow-card::before {
  content: '';
  position: absolute;
  left: -0.95rem;
  top: 38%;
  width: 14px; height: 14px;
  border-right: 2px solid var(--color-gray-4);
  border-top: 2px solid var(--color-gray-4);
  transform: translateY(-50%) rotate(45deg);
  opacity: 0.55;
  z-index: 0;
}
@media (max-width: 1023px) {
  .workflow-card + .workflow-card::before { display: none; }
}

/* ── 마로 도입 효과 그리드 ───────────────────── */
.maro-benefit {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid var(--color-gray-5);
}

.maro-video-frame {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-dark);
}
.maro-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.maro-benefit__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.maro-benefit__card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-5);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s var(--ease-standard), box-shadow .25s var(--ease-standard);
}
.maro-benefit__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.maro-benefit__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-dark);
}
.maro-benefit__media video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.maro-benefit__body {
  padding: 1.25rem 1.25rem 1.5rem;
}
.maro-benefit__title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: .6rem;
}
.maro-benefit__desc {
  font-size: .86rem;
  line-height: 1.65;
  color: var(--color-gray-2);
}

@media (max-width: 1023px) {
  .maro-benefit__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 599px) {
  .maro-benefit__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

/* ── section--white ─────────────────────────── */
.section--white {
  background: var(--color-white);
}

/* ── ops-result 카드 (ops-board 대체) ─────────── */
.ops-result {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: var(--sp-7);
  background: var(--color-dark);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.ops-result__title {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-green);
  margin: 0 0 .25rem;
}
.ops-result__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  padding: var(--sp-6) var(--sp-5);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
}
.ops-result__num {
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--color-yellow, #f5c842);
  line-height: 1;
}
.ops-result__num em {
  font-size: .5em;
  font-style: normal;
  color: rgba(255,255,255,0.65);
  margin-left: .15em;
}
.ops-result__label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.ops-result__source {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  margin: .5rem 0 0;
  padding-top: .75rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ── maro-benefit-section (독립 섹션) ──────────── */
.maro-benefit-section {
  /* section--dark 상속, 내부 텍스트 색상 보정 */
}
.maro-benefit-section .service-content__tag {
  color: var(--color-green);
}
.maro-benefit-section .service-content__title,
.maro-benefit-section .service-content__desc {
  color: var(--color-white);
}
.maro-benefit-section .maro-benefit {
  /* 독립 섹션 내에서는 경계선·상단 여백 제거 */
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}


/* ── Scroll Reveal (SR) ─────────────────────── */

.sr-hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.sr-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .sr-hidden { opacity: 1; transform: none; transition: none; }
}

/* ── Reveal Up — 자신의 글자 크기 4배 거리에서 올라오는 텍스트 애니메이션 ─── */

.reveal-up {
  /* em 단위 = 자신의 font-size 기준 → 자동으로 5배 거리 */
  transform: translate3d(0, 5em, 0);
  opacity: 0;
  transition:
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    opacity   0.6s  cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
  /* display 는 절대 강제하지 않음 — 요소 본래 display(inline-flex / block / flex 등) 유지 */
}

.reveal-up.is-in {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ── Swiper Prev/Next Buttons ────────────────── */

.swiper-btn-prev,
.swiper-btn-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gray-4);
  background: var(--color-white);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--color-gray-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-normal);
}

.swiper-btn-prev { left: -20px; }
.swiper-btn-next { right: -20px; }

.swiper-btn-prev:hover,
.swiper-btn-next:hover {
  border-color: var(--color-green);
  color: var(--color-green);
  background: var(--color-green-dim);
}

@media (max-width: 767px) {
  .swiper-btn-prev,
  .swiper-btn-next { display: none; }
}

/* reviews 섹션 swiper 상대 위치 */
#reviews .swiper {
  position: relative;
  padding-bottom: 3rem;
}
