/* 홈페이지형 로그인 전 화면 — 반응형 · 그루핑류 B2B 랜딩 느낌
   참고: https://www.grouping.ai/contents.php?pageId=TCG7LY94WT1B1XP1QS72 */

:root {
  --hp-bg: #f6f7fb;
  --hp-ink: #0f172a;
  --hp-muted: #64748b;
  --hp-line: #e2e8f0;
  --hp-accent: #ff6b35;
  --hp-accent2: #feca57;
  --hp-card: #ffffff;
  --hp-dark: #0b1220;
  --hp-radius: 16px;
  --hp-radius-lg: 22px;
  --hp-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  --hp-font: 'Segoe UI', system-ui, -apple-system, 'Malgun Gothic', sans-serif;
  --hp-header-h: 64px;
}

html {
  scroll-behavior: smooth;
}

body.hp-portal-page {
  padding: 0 !important;
  scroll-padding-top: calc(var(--hp-header-h) + 8px);
}

.login-section.hp-site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family: var(--hp-font);
  background: var(--hp-bg);
  color: var(--hp-ink);
  align-items: stretch;
  justify-content: flex-start;
  position: relative;
  overflow-x: clip;
}

/* 고정 헤더 높이만큼 본문 시작 위치 보정 */
.login-section.hp-site > .hp-main {
  margin-top: var(--hp-header-h);
}

.login-section.hp-site::before {
  display: none;
}

.hp-container-wide {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 28px);
  padding-right: clamp(16px, 4vw, 28px);
}

/* ----- 헤더 (스크롤 시 화면 상단 고정) ----- */
.hp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 300;
  min-height: var(--hp-header-h);
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--hp-line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
}

.hp-header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 64px;
}

.hp-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--hp-ink);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.hp-brand-logo {
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
  background: #fff;
}

.hp-brand-text {
  white-space: nowrap;
}

.hp-desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
}

.hp-nav-item {
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--hp-muted);
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s, background 0.2s;
}

.hp-nav-item:hover {
  color: var(--hp-ink);
  background: #f1f5f9;
}

.hp-nav-cta {
  color: var(--hp-accent) !important;
  background: rgba(255, 107, 53, 0.08);
}

.hp-nav-cta:hover {
  background: rgba(255, 107, 53, 0.15) !important;
}

.hp-header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

.hp-btn-login {
  padding: 10px 22px;
  border-radius: 999px;
  border: 2px solid var(--hp-ink);
  background: transparent;
  color: var(--hp-ink);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.hp-btn-login:hover {
  background: var(--hp-ink);
  color: #fff;
  border-color: var(--hp-ink);
}

/* 로그인 버튼 옆 안내 (화살표 + 문구) */
.hp-login-hint {
  display: none;
  align-items: center;
  gap: 6px;
  max-width: min(260px, 32vw);
  padding: 7px 12px 7px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(254, 202, 87, 0.12) 100%);
  border: 1px solid rgba(255, 107, 53, 0.22);
  box-shadow: 0 2px 10px rgba(255, 107, 53, 0.08);
}

.hp-login-hint-arrows {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0;
  line-height: 1;
}

.hp-login-hint-arr {
  display: inline-block;
  font-size: 15px;
  font-weight: 800;
  color: var(--hp-accent);
  line-height: 1;
  animation: hpLoginHintNudge 1.35s ease-in-out infinite;
}

.hp-login-hint-arr:nth-child(2) {
  animation-delay: 0.1s;
}

.hp-login-hint-arr:nth-child(3) {
  animation-delay: 0.2s;
}

.hp-login-hint-label {
  font-size: 12px;
  font-weight: 700;
  color: #9a3412;
  letter-spacing: -0.03em;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 960px) {
  .hp-login-hint {
    display: inline-flex;
  }
}

.hp-mobile-login-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 4px 0 0;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 107, 53, 0.06);
  border: 1px dashed rgba(255, 107, 53, 0.28);
  font-size: 11px;
  font-weight: 700;
  color: #c2410c;
  text-align: center;
  line-height: 1.35;
}

.hp-login-hint-arrows--sm .hp-login-hint-arr {
  font-size: 13px;
}

.hp-mobile-login-hint-text {
  letter-spacing: -0.02em;
}

@keyframes hpLoginHintNudge {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.55;
  }

  50% {
    transform: translateX(-3px);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hp-login-hint-arr {
    animation: none;
    opacity: 0.9;
  }
}

/* 모바일 햄버거 */
.hp-mobile-nav {
  display: none;
  position: relative;
}

.hp-burger {
  list-style: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--hp-line);
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.hp-burger::-webkit-details-marker {
  display: none;
}

.hp-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--hp-ink);
  border-radius: 1px;
}

.hp-mobile-sheet {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 220px;
  padding: 12px;
  background: #fff;
  border-radius: var(--hp-radius);
  box-shadow: var(--hp-shadow);
  border: 1px solid var(--hp-line);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 400;
}

.hp-mobile-sheet-link {
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--hp-ink);
  font-weight: 600;
}

.hp-mobile-sheet-link:hover {
  background: #f8fafc;
}

.hp-mobile-sheet-login {
  margin-top: 8px;
  padding: 12px;
  border-radius: 10px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(135deg, var(--hp-accent) 0%, var(--hp-accent2) 100%);
  color: #fff;
}

@media (max-width: 880px) {
  .hp-desktop-nav {
    display: none;
  }
  .hp-mobile-nav {
    display: block;
    margin-left: auto;
  }
}

@media (min-width: 881px) {
  .hp-mobile-nav {
    display: none !important;
  }
}

/* ----- 공지 ----- */
.hp-notice-banner {
  max-width: 1140px;
  margin: 14px auto 0;
  padding: 12px 18px;
  border-radius: 12px;
  background: linear-gradient(90deg, #fff7ed, #fffbeb);
  border: 1px solid #fed7aa;
  color: #9a3412;
  font-size: 14px;
}

/* ----- 히어로 ----- */
.hp-main {
  flex: 1;
}

.hp-skip-anchor {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.hp-hero {
  position: relative;
  scroll-margin-top: calc(var(--hp-header-h) + 12px);
  min-height: calc(100vh - var(--hp-header-h));
  padding: clamp(72px, 11vh, 130px) 0 clamp(82px, 12vh, 150px);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hp-hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(255, 107, 53, 0.12), transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(254, 202, 87, 0.18), transparent 45%),
    linear-gradient(180deg, #fff 0%, var(--hp-bg) 100%);
  pointer-events: none;
}

.hp-hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr min(38%, 360px);
  gap: clamp(24px, 5vw, 48px);
  align-items: center;
}

@media (max-width: 900px) {
  .hp-hero {
    min-height: calc(100vh - var(--hp-header-h));
    padding: clamp(56px, 9vh, 98px) 0 clamp(66px, 10vh, 112px);
  }

  .hp-hero-layout {
    grid-template-columns: 1fr;
  }
}

.hp-hero-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hp-accent);
  margin: 0 0 12px;
  animation: hpHeroFloatSoft 5.6s ease-in-out infinite;
}

.hp-hero-title {
  margin: 0 0 16px;
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--hp-ink);
  animation: hpHeroSlidePulse 6.8s ease-in-out infinite;
}

.hp-hero-desc {
  margin: 0 0 28px;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.65;
  color: var(--hp-muted);
  max-width: 34em;
  animation: hpHeroFloatSoft 7.4s ease-in-out infinite;
  animation-delay: 0.28s;
}

.hp-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: hpHeroFloatSoft 6.2s ease-in-out infinite;
  animation-delay: 0.4s;
}

@keyframes hpHeroFloatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes hpHeroSlidePulse {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    text-shadow: none;
  }
  50% {
    transform: translate3d(0, -4px, 0);
    text-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
  }
}

.hp-btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--hp-accent) 0%, var(--hp-accent2) 100%);
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(255, 107, 53, 0.35);
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.hp-btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.42);
}

.hp-btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid var(--hp-line);
  background: #fff;
  color: var(--hp-ink) !important;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.hp-btn-line:hover {
  border-color: var(--hp-accent);
  background: #fffaf5;
}

.hp-btn-lg {
  font-size: 15px;
}

.hp-hero-art {
  position: relative;
  min-height: 220px;
}

.hp-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
}

.hp-hero-blob-a {
  width: 180px;
  height: 180px;
  background: #ff6b35;
  top: 10%;
  right: 10%;
}

.hp-hero-blob-b {
  width: 140px;
  height: 140px;
  background: #38bdf8;
  bottom: 5%;
  left: 5%;
  opacity: 0.35;
}

.hp-hero-mock {
  position: relative;
  margin: 0 auto;
  max-width: 280px;
  padding: 28px 22px;
  border-radius: var(--hp-radius-lg);
  background: var(--hp-card);
  box-shadow: var(--hp-shadow);
  border: 1px solid var(--hp-line);
}

.hp-mock-line {
  display: block;
  height: 10px;
  border-radius: 6px;
  background: linear-gradient(90deg, #f1f5f9, #e2e8f0);
  margin-bottom: 12px;
}

.hp-mock-short {
  width: 65%;
}

/* ----- 이미지 배너 (무한 스크롤) ----- */
.hp-marquee-wrap {
  position: relative;
  background: linear-gradient(180deg, #0b1220 0%, #0f172a 50%, #0b1220 100%);
}

.hp-marquee-root {
  position: relative;
}

.hp-marquee-viewport {
  overflow: hidden;
  width: 100%;
}

.hp-marquee-edge {
  display: none;
}

@media (min-width: 960px) {
  .hp-marquee-root {
    display: flex;
    align-items: stretch;
  }

  .hp-marquee-edge {
    display: block;
    width: 64px;
    flex-shrink: 0;
    z-index: 2;
    pointer-events: none;
  }

  .hp-marquee-edge-l {
    background: linear-gradient(90deg, #0b1220, transparent);
  }

  .hp-marquee-edge-r {
    background: linear-gradient(270deg, #0b1220, transparent);
  }

  .hp-marquee-viewport {
    flex: 1;
    min-width: 0;
  }
}

.hp-marquee-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 26px 0;
  animation: hpMarqueeX 50s linear infinite;
}

.hp-marquee-track:hover {
  animation-play-state: paused;
}

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

@media (prefers-reduced-motion: reduce) {
  .hp-marquee-track {
    animation: none;
  }
}

.hp-marquee-slide {
  flex: 0 0 auto;
  width: clamp(260px, 32vw, 400px);
  height: clamp(150px, 22vw, 210px);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hp-marquee-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ----- 비교견적 활동 티커 (구 파트너 영역) ----- */
.hp-partners-block {
  padding: clamp(44px, 7vw, 88px) 0;
  background:
    radial-gradient(ellipse 80% 55% at 90% 0%, rgba(99, 102, 241, 0.08), transparent 52%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 58%, #eef2ff 100%);
}

.hp-sec-head-split {
  margin-bottom: 28px;
}

.hp-align-left {
  text-align: left;
  max-width: 42rem;
}

.hp-quote-ticker-shell {
  position: relative;
}

.hp-quote-ticker-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--hp-line);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.07);
}

.hp-quote-ticker-viewport::before,
.hp-quote-ticker-viewport::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}

.hp-quote-ticker-viewport::before {
  left: 0;
  background: linear-gradient(90deg, #fff 30%, transparent);
}

.hp-quote-ticker-viewport::after {
  right: 0;
  background: linear-gradient(270deg, #fff 30%, transparent);
}

.hp-quote-ticker-track {
  display: flex;
  width: max-content;
  animation: hpQuoteTickerX 560s linear infinite;
}

.hp-quote-ticker-track:hover {
  animation-play-state: paused;
}

.hp-ticker-run {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0;
  padding: 22px 0;
}

.hp-ticker-item {
  flex: 0 0 auto;
  box-sizing: border-box;
  margin-right: 20px;
  padding: 0;
  min-height: 118px;
  width: clamp(232px, 28vw, 340px);
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.07);
  border-left: 3px solid var(--hp-accent);
  overflow: hidden;
}

.hp-ticker-card-inner {
  padding: 14px 16px 16px 15px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hp-ticker-field {
  display: grid;
  grid-template-columns: 4.25rem min-content 1fr;
  column-gap: 6px;
  align-items: start;
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: -0.02em;
  padding: 7px 0;
}

.hp-ticker-field:not(:last-child) {
  border-bottom: 1px solid #f1f5f9;
}

.hp-ticker-field-label {
  font-weight: 700;
  font-size: 11px;
  color: #64748b;
  text-align: right;
  padding-top: 1px;
}

.hp-ticker-field-sep {
  font-weight: 600;
  color: #cbd5e1;
  flex-shrink: 0;
}

.hp-ticker-field-value {
  font-weight: 600;
  font-size: 12.5px;
  color: #0f172a;
  word-break: keep-all;
  overflow-wrap: break-word;
  min-width: 0;
}

.hp-ticker-field--message .hp-ticker-field-value {
  font-weight: 500;
  font-size: 12px;
  color: #475569;
  line-height: 1.55;
}

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

@media (prefers-reduced-motion: reduce) {
  .hp-quote-ticker-track {
    animation: none;
    transform: translateX(0);
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    justify-content: flex-start;
    row-gap: 8px;
  }

  .hp-quote-ticker-track .hp-ticker-run + .hp-ticker-run {
    display: none;
  }

  .hp-quote-ticker-viewport {
    max-height: 320px;
    overflow-y: auto;
  }

  .hp-ticker-run {
    flex-wrap: wrap;
    width: 100%;
    padding: 14px 0;
    align-items: stretch;
  }

  .hp-ticker-item {
    margin-right: 8px;
    margin-bottom: 8px;
    width: 100%;
    max-width: 100%;
    min-height: 0;
  }
}

/* ----- 유튜브 ----- */
.hp-youtube-block {
  padding: clamp(48px, 8vw, 96px) 0;
  background:
    radial-gradient(ellipse 65% 50% at 10% 8%, rgba(255, 107, 53, 0.08), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #fff7ed 40%, #ffffff 100%);
  border-top: 1px solid var(--hp-line);
}

.hp-youtube-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 28px;
}

.hp-yt-card {
  border-radius: 22px;
  overflow: hidden;
  background: var(--hp-dark);
  border: 1px solid #1e293b;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12);
}

.hp-yt-caption {
  margin: 0;
  padding: 14px 18px 10px;
  font-size: 15px;
  font-weight: 800;
  color: #f1f5f9;
  letter-spacing: -0.02em;
}

.hp-yt-frame-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.hp-yt-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ----- 서비스 카드 ----- */
.hp-services {
  scroll-margin-top: calc(var(--hp-header-h) + 12px);
  padding: clamp(40px, 7vw, 72px) 0 clamp(56px, 9vw, 96px);
  background:
    radial-gradient(ellipse 70% 55% at 50% -10%, rgba(255, 107, 53, 0.09), transparent 55%),
    radial-gradient(ellipse 64% 48% at 0% 100%, rgba(59, 130, 246, 0.08), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* ----- 스크롤 리빌 모션 ----- */
.hp-reveal {
  --hp-reveal-delay: 0s;
  opacity: 0;
  will-change: transform, opacity, filter;
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--hp-reveal-delay),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) var(--hp-reveal-delay),
    filter 0.85s cubic-bezier(0.22, 1, 0.36, 1) var(--hp-reveal-delay);
  filter: blur(7px);
}

.hp-reveal--up {
  transform: translate3d(0, 38px, 0) scale(0.98);
}

.hp-reveal--right {
  transform: translate3d(40px, 0, 0) scale(0.98);
}

.hp-reveal--left {
  transform: translate3d(-40px, 0, 0) scale(0.98);
}

.hp-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

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

.hp-sec-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.hp-sec-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hp-accent);
  margin-bottom: 10px;
}

.hp-sec-title {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--hp-ink);
}

.hp-sec-lead {
  margin: 0;
  color: var(--hp-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* ----- 서비스 소개 (원형 궤도 캐러셀) ----- */
.hp-svc-carousel-root {
  position: relative;
  margin: 8px auto 0;
  max-width: 1080px;
  min-height: min(640px, 92vw);
  overflow-x: clip;
  overflow-y: visible;
  --hp-svc-rx: 38%;
  --hp-svc-ry: 26%;
}

.hp-svc-carousel-stage {
  position: relative;
  width: 100%;
  min-height: min(640px, 92vw);
  isolation: isolate;
  overflow: visible;
}

.hp-svc-carousel-track {
  position: absolute;
  inset: 0;
  perspective: 1100px;
}

.hp-svc-orbit-card {
  position: absolute;
  left: 50%;
  top: 44%;
  width: min(300px, 86vw);
  max-width: 100%;
  transform: translate(-50%, -50%);
  border-radius: 22px;
  overflow: hidden;
  background: var(--hp-card);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.04),
    0 18px 48px rgba(15, 23, 42, 0.1);
  will-change: transform, opacity, filter;
  transition: box-shadow 0.35s ease;
}

.hp-svc-orbit-card--front {
  box-shadow:
    0 8px 12px rgba(255, 107, 53, 0.12),
    0 28px 64px rgba(15, 23, 42, 0.16);
  border-color: rgba(255, 107, 53, 0.35);
}

.hp-svc-orbit-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #ff6b35 0%, #ea580c 45%, #312e81 100%);
}

.hp-svc-orbit-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hp-svc-orbit-card-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hp-svc-orbit-card-text {
  padding: 16px 18px 18px;
}

.hp-svc-orbit-card-title {
  margin: 0 0 8px;
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--hp-ink);
  line-height: 1.35;
}

.hp-svc-orbit-card-body {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--hp-muted);
  white-space: pre-line;
  word-break: keep-all;
}

.hp-svc-carousel-static {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  padding: 8px 0 0;
}

.hp-svc-carousel-static .hp-svc-orbit-card {
  position: relative;
  left: auto;
  top: auto;
  width: auto;
  transform: none !important;
  opacity: 1 !important;
  filter: none !important;
  pointer-events: auto !important;
}

.hp-service-cards-editor {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hp-svc-card-editor-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #ffe0c2;
  background: #fffef9;
}

@media (max-width: 720px) {
  .hp-svc-card-editor-row {
    grid-template-columns: 1fr;
  }
}

.hp-svc-card-editor-preview {
  width: 100px;
  height: 75px;
  border-radius: 8px;
  overflow: hidden;
  background: #e2e8f0;
  position: relative;
}

.hp-svc-card-editor-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hp-svc-card-editor-preview-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
}

.hp-svc-card-editor-fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.hp-svc-card-editor-remove {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #fecaca;
  background: #fff;
  color: #b91c1c;
  font-size: 16px;
  cursor: pointer;
}

.hp-svc-card-editor-remove:hover {
  background: #fef2f2;
}

.hp-card-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.hp-card-grid li {
  padding: 26px 22px;
  border-radius: var(--hp-radius-lg);
  background: var(--hp-card);
  border: 1px solid var(--hp-line);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.hp-card-grid li:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  border-color: rgba(255, 107, 53, 0.35);
}

.hp-card-grid .hp-feat-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(254, 202, 87, 0.2));
  margin-bottom: 14px;
}

.hp-card-grid .hp-feat-title {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--hp-ink);
  margin-bottom: 8px;
}

.hp-card-grid .hp-feat-desc {
  font-size: 14px;
  color: var(--hp-muted);
  line-height: 1.55;
}

/* ----- 견적 ----- */
.hp-quote {
  position: relative;
  scroll-margin-top: calc(var(--hp-header-h) + 12px);
  padding: clamp(48px, 8vw, 88px) 0;
  background: var(--hp-dark);
  color: #e2e8f0;
}

.hp-quote-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hp-quote-layout {
  position: relative;
}

/* 랜딩: 소개 카피 + 티저(포인트·CTA) / 견적 전용: 소개 + 폼 */
.login-section.hp-site:not(.hp-view-quote-only) #quote .hp-quote-layout {
  display: block;
}

.hp-quote-intro-wrap {
  position: relative;
  z-index: 1;
}

.login-section.hp-site:not(.hp-view-quote-only) #quote .hp-quote-intro-wrap {
  text-align: center;
  padding: clamp(8px, 2vw, 16px) 16px 0;
  max-width: 52rem;
  margin: 0 auto;
}

.login-section.hp-site:not(.hp-view-quote-only) #quote .hp-quote-intro-wrap::after {
  content: '';
  display: block;
  height: 1px;
  width: min(360px, 85%);
  margin: clamp(14px, 3vw, 22px) auto 0;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.55), transparent);
}

.login-section.hp-site:not(.hp-view-quote-only) #quote .hp-quote-title {
  font-size: clamp(1.85rem, 4.2vw, 2.5rem);
}

.login-section.hp-site:not(.hp-view-quote-only) #quote .hp-quote-desc {
  margin-left: auto;
  margin-right: auto;
}

.login-section.hp-site:not(.hp-view-quote-only) #quote .hp-quote-teaser {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(20px, 4vw, 40px) 16px clamp(32px, 6vw, 56px);
  gap: 0;
}

.hp-quote-teaser-tagline {
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  font-weight: 600;
  color: #f1f5f9;
  line-height: 1.55;
  max-width: 28rem;
  margin: 0 0 1.1rem;
  word-break: keep-all;
}

.hp-quote-teaser-tagline strong {
  color: #fed7aa;
  font-weight: 800;
}

.hp-quote-teaser-points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  max-width: 26rem;
  width: 100%;
}

.hp-quote-teaser-points li {
  position: relative;
  padding: 10px 14px 10px 40px;
  font-size: 14px;
  font-weight: 600;
  color: #cbd5e1;
  line-height: 1.45;
  text-align: left;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  word-break: keep-all;
}

.hp-quote-teaser-points li strong {
  color: #fff;
  font-weight: 800;
}

.hp-quote-teaser-points li::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--hp-accent), #ea580c);
  box-shadow: 0 2px 10px rgba(255, 107, 53, 0.35);
}

.hp-quote-teaser-points li::after {
  content: '';
  position: absolute;
  left: 17px;
  top: 50%;
  width: 5px;
  height: 9px;
  margin-top: -6px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.hp-quote-teaser-note {
  margin: 1rem 0 0;
  max-width: 26rem;
  font-size: 12px;
  line-height: 1.55;
  color: #64748b;
  word-break: keep-all;
}

.login-section.hp-site:not(.hp-view-quote-only) #quote .hp-quote-full-only {
  display: none !important;
}

.login-section.hp-site.hp-view-quote-only #quote .hp-quote-landing-only {
  display: none !important;
}

.hp-quote-detail {
  display: block;
  width: 100%;
}

.hp-quote-impact-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.75rem;
  font-size: clamp(1.2rem, 2.8vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--hp-accent) 0%, #ea580c 55%, #f97316 100%);
  box-shadow:
    0 4px 0 rgba(185, 60, 20, 0.55),
    0 18px 44px rgba(255, 107, 53, 0.48);
  border: 2px solid rgba(255, 255, 255, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.hp-quote-impact-cta:hover {
  transform: translateY(-4px) scale(1.02);
  filter: brightness(1.05);
  box-shadow:
    0 6px 0 rgba(185, 60, 20, 0.5),
    0 24px 56px rgba(255, 107, 53, 0.55);
}

.hp-quote-impact-cta:focus-visible {
  outline: 3px solid #fbbf24;
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .hp-quote-impact-cta:hover {
    transform: none;
  }

  .hp-hero-kicker,
  .hp-hero-title,
  .hp-hero-desc,
  .hp-hero-btns {
    animation: none !important;
  }
}

.hp-quote-label {
  color: #94a3b8;
}

.hp-quote-title {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.hp-quote-desc {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #94a3b8;
  max-width: 36em;
}

.hp-quote-card {
  padding: clamp(22px, 4vw, 32px);
  border-radius: var(--hp-radius-lg);
  background: #fff;
  color: var(--hp-ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.hp-f-full {
  grid-column: 1 / -1;
}

.hp-f-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--hp-muted);
}

.hp-f-label span {
  margin-left: 2px;
}

.hp-f-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--hp-line);
  font-size: 15px;
  font-family: inherit;
  background: #f8fafc;
  transition: border-color 0.2s, background 0.2s;
}

.hp-f-input:focus {
  outline: none;
  border-color: var(--hp-accent);
  background: #fff;
}

.hp-f-textarea {
  resize: vertical;
  min-height: 100px;
}

.hp-f-req {
  color: #e11d48;
  font-weight: 800;
}

.hp-f-check-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 4px 2px 2px;
}

.hp-f-check-row input[type='checkbox'] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--hp-accent);
  cursor: pointer;
}

.hp-f-check-label {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  line-height: 1.55;
  cursor: pointer;
}

.hp-quote-submit {
  grid-column: 1 / -1;
  padding: 16px;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, var(--hp-accent) 0%, #ea580c 100%);
  margin-top: 4px;
  transition: transform 0.15s, box-shadow 0.15s;
}

.hp-quote-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(255, 107, 53, 0.45);
}

.hp-quote-hint {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 12px;
  color: var(--hp-muted);
  line-height: 1.5;
}

/* 견적 전용 페이지 뷰 (#quote) — 상단 헤더·하단 푸터 유지, 본문에는 견적 블록만 */
html.hp-view-quote-only {
  scroll-behavior: auto;
}

.login-section.hp-site.hp-view-quote-only .hp-main {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.login-section.hp-site.hp-view-quote-only .hp-main > :not(#quote) {
  display: none !important;
}

.login-section.hp-site.hp-view-quote-only #quote.hp-quote {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: clamp(16px, 3vh, 28px) 0 clamp(28px, 5vw, 56px);
  scroll-margin-top: 0;
}

.login-section.hp-site.hp-view-quote-only #quote .hp-quote-layout {
  display: block;
  flex: 0 1 auto;
  max-width: min(720px, 100%);
  margin: 0 auto;
  width: 100%;
}

.login-section.hp-site.hp-view-quote-only #quote .hp-quote-intro-wrap {
  margin-bottom: clamp(12px, 2.5vw, 22px);
}

/* 견적 전용: 소개 문구는 상단·전체 너비, 폼은 그 아래 */
.login-section.hp-site.hp-view-quote-only #quote .hp-quote-detail {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(20px, 3vw, 28px);
  width: 100%;
  min-width: 0;
}

.login-section.hp-site.hp-view-quote-only #quote .hp-quote-intro {
  width: 100%;
  min-width: 0;
  text-align: left;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.login-section.hp-site.hp-view-quote-only #quote .hp-quote-card {
  width: 100%;
  min-width: 0;
}

.hp-nav-item.hp-nav-cta.hp-nav-quote-active {
  color: var(--hp-accent) !important;
  background: rgba(255, 107, 53, 0.14) !important;
  box-shadow: inset 0 0 0 2px rgba(255, 107, 53, 0.35);
}

@media (max-width: 520px) {
  .hp-quote-card {
    grid-template-columns: 1fr;
  }
}

/* ----- 푸터 ----- */
.hp-footer {
  background: #020617;
  color: #94a3b8;
  padding: 32px 0 40px;
  font-size: 13px;
}

.hp-footer-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hp-footer-seo-region {
  margin: 2px 0 0;
  font-size: 12px;
  line-height: 1.55;
  color: #cbd5e1;
  word-break: keep-all;
}

.hp-footer-jump {
  margin: 0 0 8px;
  font-size: 13px;
}

.hp-footer-jump a {
  color: #cbd5e1;
  font-weight: 600;
  text-decoration: none;
}

.hp-footer-jump a:hover {
  color: #fff;
  text-decoration: underline;
}

.hp-footer-company-line {
  margin: 0;
  color: #f1f5f9;
  font-size: 16px;
}

.hp-footer-muted {
  margin: 4px 0 0;
  color: #94a3b8;
}

.hp-footer-seo-block {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #1e293b;
  white-space: pre-wrap;
  word-break: keep-all;
  font-size: 12px;
  line-height: 1.75;
  color: #94a3b8;
}

.hp-footer-seo-block:empty {
  display: none;
}

.hp-footer-copyright {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid #1e293b;
  font-size: 12px;
  color: #64748b;
}

/* ----- 로그인 모달 ----- */
.hp-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hp-modal.hp-modal-hidden {
  display: none !important;
  pointer-events: none;
}

.hp-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  cursor: pointer;
}

.hp-modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  animation: hpPop 0.24s ease-out;
}

@keyframes hpPop {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hp-modal-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  z-index: 2;
}

.hp-modal-close:hover {
  background: #ffeaa7;
}

.hp-modal-login-form.login-form {
  margin: 0;
  max-width: none;
  width: 100%;
  padding: 38px 30px;
  border-radius: 22px;
  border: 1px solid var(--hp-line);
}

.hp-login-card-title {
  text-align: center;
  margin: 0 0 8px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--hp-ink);
}

body.hp-modal-open {
  overflow: hidden;
}

/* 관리자 설정 폼 */
.hp-admin-hint {
  font-size: 13px;
  color: #636e72;
  margin-bottom: 16px;
  line-height: 1.5;
}

.hp-admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.hp-admin-feature-block {
  border: 1px solid #ffeaa7;
  border-radius: 12px;
  padding: 14px;
  background: #fffef9;
}

.hp-admin-portal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  padding: 4px;
  border-radius: 12px;
  background: #fff8f0;
  border: 1px solid #ffe0c2;
}

.hp-admin-portal-tab {
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  font-weight: 600;
  font-size: 14px;
  color: #636e72;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.hp-admin-portal-tab:hover {
  background: rgba(255, 255, 255, 0.85);
  color: #2d3436;
}

.hp-admin-portal-tab--active {
  background: #fff;
  color: #ff6b35;
  border-color: #ffd4b8;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.12);
}

.hp-admin-portal-panel[hidden] {
  display: none !important;
}

.hp-admin-body-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
  padding: 6px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.hp-admin-body-tab {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  font-weight: 600;
  font-size: 12px;
  color: #64748b;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.hp-admin-body-tab:hover {
  background: #fff;
  color: #334155;
}

.hp-admin-body-tab--active {
  background: #fff;
  color: #ea580c;
  border-color: #fed7aa;
  box-shadow: 0 1px 4px rgba(234, 88, 12, 0.12);
}

.hp-admin-body-panel[hidden] {
  display: none !important;
}

.hp-hero-slides-editor {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hp-hero-slide-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #ffe0c2;
  background: #fffef9;
}

@media (max-width: 720px) {
  .hp-hero-slide-row {
    grid-template-columns: 1fr;
  }
}

.hp-hero-slide-preview {
  width: 120px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  background: #e2e8f0;
  position: relative;
  flex-shrink: 0;
}

.hp-hero-slide-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hp-hero-slide-preview-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #64748b;
}

.hp-hero-slide-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.hp-hero-slide-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #475569;
}

.hp-hero-slide-label span {
  font-size: 12px;
}

.hp-hero-slide-upload-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hp-hero-slide-upload-btn {
  font-size: 13px;
  padding: 8px 14px;
}

.hp-hero-slide-row-remove {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #fecaca;
  background: #fff;
  color: #b91c1c;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  justify-self: end;
}

.hp-hero-slide-row-remove:hover {
  background: #fef2f2;
}

/* 히어로 상단 슬라이더 (Integrated 3PL 키커 위) */
.hp-hero-slider {
  width: 100%;
  max-width: 100%;
  margin: 0 0 20px;
}

.hp-hero-slider-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--hp-line);
  background: #f1f5f9;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

.hp-hero-slider-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.hp-hero-slide {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 9;
  max-height: min(52vh, 420px);
}

.hp-hero-slide-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hp-hero-slide-cta {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 2;
  padding: 12px 22px;
  font-size: 14px;
  white-space: nowrap;
  max-width: calc(100% - 32px);
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.35);
}

.hp-hero-slide-cta.hp-btn-solid:not(a) {
  pointer-events: none;
  opacity: 0.92;
}

.hp-hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--hp-ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
  transition: background 0.15s, transform 0.15s;
}

.hp-hero-slider-arrow:hover:not(:disabled) {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}

.hp-hero-slider-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.hp-hero-slider-arrow--prev {
  left: 10px;
}

.hp-hero-slider-arrow--next {
  right: 10px;
}

.hp-hero-slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 72px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
  pointer-events: none;
}

.hp-hero-slider-dots .hp-hero-slider-dot {
  pointer-events: auto;
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: transform 0.15s, background 0.15s;
}

.hp-hero-slider-dots .hp-hero-slider-dot--active {
  background: #fff;
  transform: scale(1.25);
  box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.55);
}
