/* apphelpers.kr 공개 사이트 스타일 */
:root {
  --tnd-brand: #1e3a5f;
  --tnd-header-hover: rgb(253, 124, 71);
  --tnd-point: #234c7a;
  --tnd-hero-bg: linear-gradient(165deg, #f8fafc 0%, #f1f5f9 42%, #eef2f6 100%);
  --tnd-hero-text: rgb(17, 21, 24);
  --tnd-hero-accent-glow: rgba(30, 58, 95, 0.08);
  --font-sans: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}
body.tnd-body {
  font-family: var(--font-sans);
}
.tnd-point { color: var(--tnd-point); font-weight: 700; }
.tnd-hero {
  color: var(--tnd-hero-text);
  background:
    radial-gradient(ellipse 90% 55% at 50% -18%, var(--tnd-hero-accent-glow), transparent 55%),
    var(--tnd-hero-bg);
}
.tnd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at center, rgba(30, 58, 95, 0.045) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.2) 45%, rgba(0, 0, 0, 0.35));
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.2) 45%, rgba(0, 0, 0, 0.35));
}
.tnd-hero-bg-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.tnd-hero-bg-ico {
  position: absolute;
  color: var(--tnd-brand);
  opacity: 0.1;
  width: clamp(5.5rem, 18vw, 10rem);
  height: clamp(5.5rem, 18vw, 10rem);
  stroke-width: 1.15;
}
.tnd-hero-bg-ico--1 { top: 6%; left: 2%; transform: rotate(-14deg); }
.tnd-hero-bg-ico--2 { top: 12%; right: 0%; transform: rotate(10deg); opacity: 0.08; }
.tnd-hero-bg-ico--3 { bottom: 6%; left: 8%; transform: rotate(6deg); opacity: 0.07; width: clamp(4.5rem, 14vw, 7.5rem); height: clamp(4.5rem, 14vw, 7.5rem); }
.tnd-hero-bg-ico--4 { bottom: 10%; right: 4%; transform: rotate(-8deg); opacity: 0.09; }
.tnd-hero-content { z-index: 1; }
@media (max-width: 575.98px) {
  .tnd-hero-bg-ico--2,
  .tnd-hero-bg-ico--4 {
    opacity: 0.05;
  }
}
.tnd-hero-title { font-size: clamp(1.25rem, 2.5vw, 1.85rem); line-height: 1.35; color: var(--tnd-hero-text); }
.tnd-hero-subtitle { max-width: 42rem; color: var(--tnd-hero-text); font-size: 0.95rem; }
.tnd-hero .tnd-point { color: var(--tnd-hero-text); }
.tnd-header { position: sticky; top: 0; z-index: 1030; }
.tnd-header-inner { max-width: 1440px; margin: 0 auto; padding-left: 1rem; padding-right: 1rem; }
.tnd-brand { color: inherit; }
.tnd-header-logo { height: 20px; width: auto; }
.tnd-header-text-link {
  color: #64748b !important;
  transition: color 0.15s ease;
}
.tnd-header-text-link:hover,
.tnd-header-text-link:focus-visible {
  color: var(--tnd-header-hover) !important;
}
.tnd-header-text-link.tnd-header-text-link--current {
  color: var(--tnd-header-hover) !important;
}
.tnd-header-icon {
  color: var(--tnd-brand);
  padding: 0.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease;
}
.tnd-header-icon:hover,
.tnd-header-icon:focus-visible {
  color: var(--tnd-header-hover);
}
.tnd-header-icon.tnd-header-icon--current {
  color: var(--tnd-header-hover);
}
.tnd-header-icon svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.tnd-footer { color: #64748b; font-size: 0.875rem; }
.btn-tnd-primary { background: var(--tnd-brand); border-color: var(--tnd-brand); color: #fff; }
.btn-tnd-primary:hover { background: #2d4a73; border-color: #2d4a73; color: #fff; }
.btn-tnd-outline { border-color: var(--tnd-brand); color: var(--tnd-brand); }
.btn-tnd-outline:hover { background: rgba(30, 58, 95, 0.08); color: var(--tnd-brand); }
.tnd-cta-block { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 0.75rem; padding: 1.5rem; }
.tnd-services-row > li,
.tnd-service-grid-cell {
  display: flex;
  min-width: 0;
}
.tnd-service-card-outer {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
}
.tnd-service-card.tnd-service-card--with-pick {
  padding-right: 2.65rem;
}
.tnd-service-pick-btn {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  z-index: 2;
  width: 2.125rem;
  height: 2.125rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cbd5e1;
  border-radius: 0.45rem;
  background: #fff;
  color: var(--tnd-brand);
  cursor: pointer;
  transition: background-color 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.tnd-service-pick-btn:hover,
.tnd-service-pick-btn:focus-visible {
  background: #f8fafc;
  border-color: var(--tnd-point);
  color: var(--tnd-header-hover);
  outline: none;
  box-shadow: 0 0 0 2px rgba(30, 58, 95, 0.15);
}
.tnd-service-pick-btn--on {
  background: var(--tnd-header-hover);
  border-color: var(--tnd-header-hover);
  color: #fff;
}
.tnd-service-pick-btn--on:hover,
.tnd-service-pick-btn--on:focus-visible {
  filter: brightness(0.92);
  outline: none;
  box-shadow: 0 0 0 2px rgba(253, 124, 71, 0.28);
}
.tnd-service-pick-icon {
  width: 1.1rem;
  height: 1.1rem;
}
.tnd-service-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.tnd-service-card {
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  background-color: #fff;
  transition: box-shadow 0.2s, background-color 0.2s;
}
.tnd-service-card:hover { background-color: #f1f5f9; box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08); }
.tnd-service-card-check { color: var(--tnd-brand); font-weight: 700; margin-right: 0.125rem; }
.tnd-service-card-bullets {
  list-style: disc;
  padding-left: 1.125rem;
  margin: 0;
  flex: 1;
}
.tnd-service-card-bullets li { margin-bottom: 0.15rem; }
.tnd-service-card-bullets li:last-child { margin-bottom: 0; }
.tnd-services-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
@media (min-width: 576px) { .tnd-services-row { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px) { .tnd-services-row { grid-template-columns: repeat(5, 1fr); } }
.tnd-service-detail { padding: 1.5rem 0; }
.tnd-service-detail--alt { background: #f8fafc; }
.tnd-service-detail-icon { background: rgba(30, 58, 95, 0.08); padding: 0.75rem; }
.tnd-service-detail-svg { width: 2rem; height: 2rem; color: var(--tnd-brand); }
.tnd-service-detail-check { color: var(--tnd-brand); font-weight: 700; margin-right: 0.25rem; }
.tnd-service-detail-bullets { list-style: disc; padding-left: 1.25rem; margin: 0; }
.tnd-lucide-fs4 { width: 1.5rem; height: 1.5rem; }
.tnd-lucide-btn { width: 1.125rem; height: 1.125rem; vertical-align: -0.15em; }
.floating-contact .btn svg { width: 1.35rem; height: 1.35rem; }
.tnd-site-page-narrow { max-width: 40rem; }
.tnd-section-text { line-height: 1.7; }
.tnd-ref-card { border: 1px solid #e2e8f0; }
.tnd-quote-interest-panel { position: absolute; z-index: 20; left: 0; right: 0; max-height: 16rem; overflow: auto; }
.tnd-quote-interest-combo { position: relative; }
#embed-chatbot-panel { position: fixed; z-index: 9998; }
.floating-contact { position: fixed; right: 1rem; bottom: 1rem; z-index: 9990; display: flex; flex-direction: column; gap: 0.5rem; }
.floating-contact .btn { width: 3rem; height: 3rem; border-radius: 50%; padding: 0; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(0,0,0,0.15); }
/* 담김 상태 서비스 카드 장바구니(.tnd-service-pick-btn--on)와 동일 톤 */
.floating-contact .btn.tnd-floating-pick-clear {
  background: var(--tnd-header-hover);
  border: 1px solid var(--tnd-header-hover);
  color: #fff;
}
.floating-contact .btn.tnd-floating-pick-clear:hover,
.floating-contact .btn.tnd-floating-pick-clear:focus-visible {
  filter: brightness(0.92);
  outline: none;
  color: #fff;
  box-shadow: 0 0 0 2px rgba(253, 124, 71, 0.28), 0 4px 14px rgba(0, 0, 0, 0.15);
}
