/* 캘린더뷰 랜딩 스타일 — WordPress 이전 시 테마으로 복사 후 URL만 맞추면 됩니다. */

:root {
     --bg-page: #fafcfe;
     --bg-page-mid: #f0f7ff;
     --bg-band: #f3f8fc;
     --bg-card: #ffffff;
     --pill-bg: #eef6f3;
     --border: rgba(15, 23, 42, 0.08);
     --border-card: rgba(14, 165, 233, 0.12);
     --text: #0c1222;
     --muted: #64748b;
     --mint: #2dd4a3;
     --mint-deep: #0d9f78;
     --teal: #0ea5e9;
     --teal-deep: #0284c7;
     --accent: var(--mint-deep);
     --accent-hover: #0b7d5f;
     --accent-dim: rgba(45, 212, 163, 0.16);
     --accent-soft: rgba(45, 212, 163, 0.12);
     --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05);
     --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.08);
     --shadow-card-hover: 0 24px 50px -12px rgba(15, 23, 42, 0.14);
     --shadow-float: 0 14px 40px rgba(14, 165, 233, 0.12), 0 4px 12px rgba(15, 23, 42, 0.06);
     --img-placeholder: #e8f0fe;
     --radius: 1.25rem;
     --radius-lg: 1.75rem;
     /* 히어로·네비 주요 CTA 공통: 둥근 사각형(왼쪽 다운로드 버튼 기준) */
     --radius-btn-cta: clamp(14px, 1.4vw, 20px);
     --section-pad: clamp(72px, 10vw, 112px);
     --block-gap: clamp(28px, 4vw, 44px);
     --font: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans KR", sans-serif;
     --maxw: 1400px;
     --page-gutter: clamp(20px, 5vw, 36px);
}

html {
     scrollbar-gutter: stable;
}

* {
     box-sizing: border-box;
}

body {
     margin: 0;
     font-family: var(--font);
     background:
          radial-gradient(ellipse 120% 80% at 0% -10%, rgba(224, 242, 254, 0.7) 0%, transparent 50%),
          radial-gradient(ellipse 90% 60% at 100% 0%, rgba(209, 250, 229, 0.45) 0%, transparent 45%),
          linear-gradient(180deg, #ffffff 0%, var(--bg-page) 28%, #f8fbff 100%);
     color: var(--text);
     line-height: 1.65;
     -webkit-font-smoothing: antialiased;
}

a {
     color: var(--teal-deep);
     text-decoration: none;
}

a:hover {
     text-decoration: underline;
}

.wrap {
     max-width: var(--maxw);
     margin-inline: auto;
     padding-inline: var(--page-gutter);
     padding-block: 0;
}

/* 섹션마다 이미 padding-block이 있으므로 main 하단을 또 주면 풋터 직전 공간이 과해짐 */
main {
     padding-bottom: 0;
}

/* raster 이미지: 가로 맞춤 시 세로는 원본 비율 유지 */
main img {
     max-width: 100%;
     height: auto;
     vertical-align: middle;
}

.eyebrow {
     font-size: 0.75rem;
     font-weight: 700;
     letter-spacing: 0.14em;
     text-transform: uppercase;
     color: var(--mint-deep);
     margin: 0 0 12px;
}

.section-head {
     margin-bottom: var(--block-gap);
     max-width: 40rem;
}

.section-head h2 {
     margin-bottom: 0;
}

.section-head .section-lead {
     margin: 16px 0 0;
     color: var(--muted);
     font-size: 1.05rem;
     line-height: 1.65;
     /* 제목(h2)만 가운데일 때 소개문이 상속·레이아웃으로 가운데로 보이지 않도록 고정 */
     text-align: start;
}

/* 핵심 기능·전체 기능·실행 환경: 큰 제목(h2)만 가운데 */
#features > .section-head h2,
.features-all-section > .section-head h2,
#requirements > .section-head h2 {
     text-align: center;
}

/* 핵심/전체 기능: 머리말 블록을 아래 83.333% 그리드·리스트와 같은 폭·가운데 배치 (소개문은 좌측 정렬) */
#features > .section-head,
.features-all-section > .section-head {
     width: 83.333%;
     max-width: none;
     margin-left: auto;
     margin-right: auto;
}

/* 실행 환경: 좁은 머리말 블록을 섹션 안에서 가운데 두고, 소개문만 좌측 */
#requirements > .section-head {
     margin-left: auto;
     margin-right: auto;
     margin-top: clamp(24px, 3.5vw, 44px);
}

#features > .section-head .section-lead,
.features-all-section > .section-head .section-lead {
     text-align: center;
}

#requirements > .section-head .section-lead {
     text-align: center;
}

/* 실행 환경: 시스템 카드(1개)를 가운데 배치 */
#requirements .grid-2 {
     grid-template-columns: 1fr;
     justify-items: center;
}

/* 실행 환경: 시스템 카드 내부 텍스트 가운데 정렬 */
#requirements .card h3,
#requirements .card p {
     text-align: center;
}

/* 랜딩 마지막 블록: 풋터 직전만 타이트하게 */
section#requirements {
     padding-bottom: clamp(28px, 4vw, 48px);
}

.section-band {
     background: linear-gradient(180deg, var(--bg-band) 0%, transparent 100%);
     border-top: 1px solid var(--border);
     border-bottom: 1px solid var(--border);
     max-width: none;
     width: 100%;
     margin: 0;
     padding-left: 0;
     padding-right: 0;
}

.section-band > .wrap {
     max-width: var(--maxw);
     margin-inline: auto;
     padding-inline: var(--page-gutter);
     padding-block: 0;
}

.section-band-soft {
     background: linear-gradient(180deg, #f3f5fa 0%, rgba(255, 255, 255, 0.65) 55%, transparent 100%);
}

header.site {
     padding: 18px 0;
     border-bottom: 1px solid rgba(14, 165, 233, 0.08);
     position: sticky;
     top: 0;
     background: rgba(255, 255, 255, 0.92);
     backdrop-filter: blur(16px);
     box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
     z-index: 50;
}

header.site .inner {
     max-width: var(--maxw);
     margin-inline: auto;
     padding-inline: var(--page-gutter);
     padding-block: 0;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 16px;
     flex-wrap: wrap;
}

.brand {
     display: inline-flex;
     align-items: center;
     gap: 12px;
     text-decoration: none;
     color: inherit;
     flex-shrink: 0;
}

.brand:hover {
     text-decoration: none;
}

.brand:hover .logo-txt {
     color: var(--mint-deep);
}

.logo-copy {
     display: inline-flex;
     flex-direction: column;
     gap: 2px;
     line-height: 1.15;
}

.brand-mark {
     width: 42px;
     height: 42px;
     border-radius: 14px;
     object-fit: contain;
     flex-shrink: 0;
     box-shadow:
          var(--shadow-sm),
          0 0 0 1px rgba(45, 212, 163, 0.22);
     background: var(--bg-card);
}

/* 상단 로고는 원본 모서리 그대로 표시 */
header.site .brand-mark {
     border-radius: 0;
     box-shadow: none;
     background: transparent;
}

.logo-txt {
     font-weight: 700;
     font-size: 1.15rem;
     letter-spacing: -0.02em;
     color: var(--text);
     line-height: 1.2;
}

.logo-sub {
     font-size: 0.74rem;
     color: var(--muted);
     font-weight: 500;
}

.footer-left {
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     gap: clamp(14px, 2.2vw, 20px);
     flex: 0 1 auto;
     min-width: 0;
}

.footer-right {
     flex: 0 0 auto;
     text-align: right;
     align-self: flex-end;
}

.footer-company {
     margin: 0;
     padding-top: 2px;
     font-size: 0.875rem;
     line-height: 1.55;
     color: var(--muted);
     letter-spacing: -0.01em;
}

.footer-company p {
     margin: 0 0 0.28em;
}

.footer-company p:last-child {
     margin-bottom: 0;
}

.footer-email {
     margin: 0 0 0.5rem;
     font-size: 0.875rem;
     line-height: 1.55;
     color: var(--muted);
}

.footer-email a {
     color: var(--muted);
     text-decoration: none;
}

.footer-email a:hover {
     color: var(--teal-deep);
     text-decoration: underline;
}

.footer-copy {
     margin: 0;
     font-size: 0.875rem;
     line-height: 1.55;
     color: var(--muted);
}

.footer-brand {
     display: flex;
     align-items: center;
     gap: 12px;
}

.footer-brand .brand-mark {
     width: 38px;
     height: 38px;
     border-radius: 11px;
}

nav.nav-main {
     display: flex;
     gap: 20px;
     flex-wrap: wrap;
     font-size: 0.9rem;
}

nav.nav-main a {
     color: var(--muted);
}

nav.nav-main a:hover {
     color: var(--mint-deep);
}

/* 텍스트 링크: 가운데 정렬만 유지, 버튼형 테두리·배경 없음 */
nav.nav-main a.nav-main__pill {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     box-sizing: border-box;
     min-height: 40px;
     padding: 0 10px;
     font-weight: 600;
     font-size: 0.9rem;
     line-height: 1.2;
     text-align: center;
     color: var(--muted);
     text-decoration: none;
     background: transparent;
     border: none;
     box-shadow: none;
     transition: color 0.2s ease;
}

nav.nav-main a.nav-main__pill:hover {
     color: var(--mint-deep);
     text-decoration: none;
}

nav.nav-main a.nav-main__pill:focus-visible {
     outline: 2px solid #38bdf8;
     outline-offset: 2px;
}

nav.nav-main a.nav-main__pill[aria-current="page"] {
     color: var(--mint-deep);
     font-weight: 800;
}

/* 전체 기능 단독 페이지: 앵커 시 sticky 헤더 여유 */
main#top {
     scroll-margin-top: 88px;
}

/* 다운로드: 시안·블루 그라데이션(기존 primary) + 로고 + 2줄 타이포 */
.btn-win-download {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 14px;
     padding: 14px 22px;
     margin-left: 0;
     border-radius: var(--radius-btn-cta);
     font-weight: 600;
     color: #ffffff !important;
     text-decoration: none;
     background: linear-gradient(135deg, #22d3ee 0%, #0ea5e9 45%, #0284c7 100%);
     border: none;
     box-shadow: 0 10px 28px -6px rgba(14, 165, 233, 0.55), 0 4px 12px rgba(14, 165, 233, 0.25);
     transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-win-download:hover {
     color: #ffffff !important;
     filter: brightness(1.06);
     text-decoration: none;
     transform: translateY(-1px);
     box-shadow: 0 14px 32px -6px rgba(14, 165, 233, 0.58), 0 6px 14px rgba(14, 165, 233, 0.28);
}

.btn-win-download:focus-visible {
     outline: 2px solid #38bdf8;
     outline-offset: 3px;
}

.btn-win-download__logo {
     flex-shrink: 0;
     color: #ffffff;
}

.btn-win-download__text {
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     justify-content: center;
     gap: 1px;
     line-height: 1.05;
     text-align: left;
}

.btn-win-download__sub {
     font-size: 0.72rem;
     font-weight: 500;
     letter-spacing: 0.02em;
     opacity: 0.9;
}

.btn-win-download__title {
     font-size: 1.28rem;
     font-weight: 800;
     letter-spacing: -0.03em;
}

nav.nav-main a.nav-download.btn-win-download--nav {
     margin-left: 4px;
     gap: 10px;
     padding: 7px 14px 7px 12px;
     border-radius: var(--radius-btn-cta);
     box-shadow: 0 6px 18px -4px rgba(14, 165, 233, 0.55), 0 2px 8px rgba(14, 165, 233, 0.25);
}

nav.nav-main a.nav-download.btn-win-download--nav:hover {
     box-shadow: 0 8px 22px -4px rgba(14, 165, 233, 0.58), 0 3px 10px rgba(14, 165, 233, 0.28);
}

nav.nav-main a.nav-download.btn-win-download--nav .btn-win-download__sub {
     font-size: 0.62rem;
}

nav.nav-main a.nav-download.btn-win-download--nav .btn-win-download__title {
     font-size: 0.95rem;
     font-weight: 800;
}

.btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     padding: 14px 26px;
     border-radius: 999px;
     font-weight: 700;
     font-size: 0.95rem;
     border: none;
     cursor: pointer;
     transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
     background: linear-gradient(135deg, #22d3ee 0%, #0ea5e9 45%, #0284c7 100%);
     color: #ffffff;
     box-shadow: 0 10px 28px -6px rgba(14, 165, 233, 0.55), 0 4px 12px rgba(14, 165, 233, 0.25);
}

.btn-primary:hover {
     filter: brightness(1.05);
     transform: translateY(-1px);
     text-decoration: none;
}

.btn-ghost {
     background: #ffffff;
     color: var(--text);
     border: 1px solid rgba(15, 23, 42, 0.14);
     box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
     border-color: rgba(14, 165, 233, 0.35);
     color: var(--teal-deep);
     text-decoration: none;
}

.hero {
     position: relative;
     padding-top: clamp(64px, 11vw, 108px);
     padding-bottom: clamp(56px, 9vw, 96px);
     overflow: hidden;
}

.hero::before {
     content: "";
     position: absolute;
     top: -25%;
     right: -20%;
     width: min(78vw, 640px);
     height: min(78vw, 640px);
     background: radial-gradient(circle at 35% 35%, rgba(45, 212, 163, 0.2), transparent 58%);
     pointer-events: none;
     z-index: 0;
}

.hero.wrap {
     position: relative;
     z-index: 1;
}

.hero-badge {
     display: inline-block;
     margin: 0 0 clamp(18px, 3vw, 26px);
     padding: 8px 16px;
     border-radius: 999px;
     background: #f1f5f9;
     border: 1px solid rgba(15, 23, 42, 0.06);
     font-size: 0.8rem;
     font-weight: 600;
     color: var(--muted);
     letter-spacing: 0.02em;
}

.hero-grid {
     display: grid;
     grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
     gap: clamp(36px, 5.5vw, 72px);
     align-items: center;
}

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

     .hero-visual {
          order: 0;
     }
}

.hero h1 {
     font-size: clamp(2rem, 4.5vw, 2.85rem);
     line-height: 1.14;
     margin: 0 0 clamp(16px, 2.5vw, 22px);
     letter-spacing: -0.038em;
     font-weight: 800;
}

.hero h1 .hl {
     color: var(--mint-deep);
     font-weight: 800;
}

.hero-sub {
     margin: 0 0 clamp(26px, 3.5vw, 34px);
     font-size: 1.06rem;
     line-height: 1.65;
     color: var(--muted);
     max-width: 36rem;
}

.hero-cta {
     display: flex;
     flex-wrap: wrap;
     align-items: stretch;
     gap: 14px;
     margin-bottom: clamp(20px, 2.8vw, 28px);
}

.hero-cta .btn-win-download {
     padding: 16px 26px;
     gap: 16px;
}

.hero-cta .btn-win-download .btn-win-download__logo {
     width: 38px;
     height: 38px;
}

.hero-cta .btn-win-download .btn-win-download__sub {
     font-size: 0.78rem;
}

.hero-cta .btn-win-download .btn-win-download__title {
     font-size: 1.42rem;
}

.btn.btn-win-download {
     border-radius: var(--radius-btn-cta);
}

/* 히어로 보조 버튼: 다운로드와 동일한 둥근 사각형(높이는 .hero-cta stretch로 맞춤) */
.hero-cta .btn.btn-ghost {
     border-radius: var(--radius-btn-cta);
}

.hero-copy .pill-row {
     margin-top: 2px;
}

.hero-visual {
     position: relative;
     align-self: center;
     display: flex;
     flex-direction: column;
     align-items: flex-end;
     justify-content: center;
     min-height: clamp(300px, 42vw, 440px);
     padding-bottom: clamp(8px, 2vw, 24px);
}

.hero-float {
     position: absolute;
     z-index: 4;
     width: 52px;
     height: 52px;
     border-radius: 16px;
     background: #fff;
     box-shadow: var(--shadow-float);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--mint-deep);
}

.hero-float--cal {
     top: 18%;
     left: 4%;
     color: var(--mint-deep);
}

.hero-float--clock {
     top: 38%;
     right: 2%;
     color: var(--teal-deep);
}

.hero-float--gear {
     bottom: 18%;
     left: 8%;
     color: #6366f1;
}

.hero-shot {
     position: relative;
     z-index: 2;
     margin-top: 0;
     margin-right: 0;
     width: min(100%, clamp(300px, 44vw, 520px));
     flex-shrink: 0;
     transform: translateY(clamp(-6px, -0.8vw, -2px));
     border-radius: var(--radius-lg);
     overflow: hidden;
     border: 5px solid #d9f5ea;
     box-shadow: var(--shadow-md);
     background: var(--bg-card);
}

.hero-trio {
     margin-top: clamp(28px, 5vw, 44px);
}

.hero-trio__heading {
     margin: 0 0 16px;
     font-size: clamp(1.6rem, 3vw, 2rem);
     line-height: 1.25;
     letter-spacing: -0.02em;
     text-align: center;
}

.hero-trio__title {
     margin: 0 0 14px;
     font-size: 0.95rem;
     font-weight: 800;
     color: var(--text);
}

.hero-trio__grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: clamp(14px, 2vw, 20px);
}

.hero-trio__card {
     background: #ffffff;
     border: 1px solid rgba(15, 23, 42, 0.1);
     border-radius: 16px;
     padding: 18px 18px 20px;
     box-shadow: var(--shadow-sm);
}

.hero-trio__thumb {
     width: 100%;
     border-radius: 12px;
     overflow: hidden;
     border: 1px solid rgba(15, 23, 42, 0.08);
     background: #eaf2fb;
     margin-bottom: 14px;
}

.hero-trio__thumb img {
     display: block;
     width: 100%;
     height: auto;
     object-fit: cover;
     aspect-ratio: 16 / 9;
     margin: 0;
}

.hero-trio__card h3 {
     margin: 0 0 8px;
     font-size: 1.08rem;
     line-height: 1.35;
     letter-spacing: -0.02em;
}

.hero-trio__card p {
     margin: 0;
     color: #1f2937;
     font-size: 0.96rem;
     font-weight: 500;
     line-height: 1.5;
}

@media (max-width: 900px) {
     .hero-visual {
          align-items: center;
     }

     .hero-shot {
          width: min(100%, 440px);
          transform: none;
     }

     .hero-float {
          transform: scale(0.9);
     }

     .hero-float--cal {
          left: 2%;
          top: 10%;
     }

     .hero-float--clock {
          right: 2%;
     }

     .hero-float--gear {
          left: 4%;
          bottom: 14%;
     }

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

.hero-shot img {
     width: 100%;
     max-width: 100%;
     height: auto;
     vertical-align: middle;
     display: block;
     background: var(--img-placeholder);
     object-fit: contain;
}

.peek-board {
     padding: clamp(28px, 5vw, 44px);
     background: linear-gradient(145deg, #ffffff 0%, #f3faf7 45%, #eef6ff 100%);
     border: 1px solid rgba(13, 159, 120, 0.22);
     box-shadow: var(--shadow-md), 0 0 0 1px rgba(13, 159, 120, 0.06);
     position: relative;
     overflow: hidden;
}

.peek-board::before {
     content: "";
     position: absolute;
     top: -40%;
     right: -20%;
     width: 55%;
     height: 120%;
     background: radial-gradient(ellipse, rgba(13, 159, 120, 0.12), transparent 70%);
     pointer-events: none;
}

.peek-board > * {
     position: relative;
     z-index: 1;
}

.peek-board__head {
     text-align: center;
     max-width: min(46rem, 100%);
     margin: 0 auto clamp(28px, 4vw, 40px);
}

.peek-board__head .eyebrow {
     justify-content: center;
}

.peek-board__head h2 {
     font-size: clamp(1.35rem, 3vw, 1.75rem);
     margin: 0 0 14px;
     letter-spacing: -0.03em;
     line-height: 1.3;
     word-break: keep-all;
     overflow-wrap: break-word;
}

/* 한글에서 마지막 어미(예: 있어요)만 덩그러니 줄바꿈되는 것 방지 */
.nobr {
     white-space: nowrap;
}

.peek-board__lead {
     margin: 0;
     color: var(--muted);
     font-size: 1.02rem;
     line-height: 1.65;
}

.peek-diagram {
     display: grid;
     grid-template-columns: 1fr;
     gap: 10px;
     align-items: center;
     justify-items: center;
     margin-bottom: clamp(20px, 3vw, 28px);
}

.peek-flow-arrow {
     font-size: clamp(1.25rem, 3vw, 1.75rem);
     font-weight: 900;
     color: var(--mint-deep);
     line-height: 1;
     padding: 6px 0;
     transform: rotate(90deg);
     user-select: none;
}

.peek-col {
     max-width: 320px;
     width: 100%;
}

.peek-bridge {
     max-width: 280px;
     width: 100%;
}

.peek-col {
     background: var(--bg-card);
     border: 1px solid var(--border);
     border-radius: var(--radius);
     padding: 20px 18px;
     box-shadow: var(--shadow-sm);
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
}

.peek-label {
     font-size: 0.68rem;
     font-weight: 800;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     color: var(--mint-deep);
     margin-bottom: 12px;
}

.peek-col h3 {
     margin: 0 0 8px;
     font-size: 1rem;
}

.peek-col p {
     margin: 0;
     color: var(--muted);
     font-size: 0.92rem;
     line-height: 1.55;
}

.peek-mock {
     width: 100%;
     max-width: 200px;
     border-radius: 12px;
     margin-bottom: 14px;
     min-height: 112px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-direction: column;
     gap: 6px;
}

.peek-mock--busy {
     position: relative;
     background: linear-gradient(180deg, #cbd5e1 0%, #94a3b8 100%);
     padding: 14px 12px;
     box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.35);
}

.peek-mock--busy .win-stack {
     width: 100%;
     display: flex;
     flex-direction: column;
     gap: 5px;
}

.peek-mock--busy .win-bar {
     height: 10px;
     border-radius: 5px;
     background: rgba(255, 255, 255, 0.45);
}

.peek-mock--busy .win-bar:nth-child(1) {
     width: 100%;
}

.peek-mock--busy .win-bar:nth-child(2) {
     width: 88%;
     margin-left: auto;
     margin-right: auto;
}

.peek-mock--busy .win-bar:nth-child(3) {
     width: 72%;
     margin-left: auto;
     margin-right: auto;
     opacity: 0.85;
}

.peek-mock--busy .peek-cal-ghost {
     position: absolute;
     bottom: 18px;
     left: 50%;
     transform: translateX(-50%);
     width: 56px;
     height: 40px;
     border-radius: 6px;
     background: rgba(13, 159, 120, 0.35);
     border: 2px dashed rgba(13, 159, 120, 0.65);
}

.peek-mock-wrap {
     position: relative;
     width: 100%;
     max-width: 200px;
     margin-bottom: 14px;
}

.peek-mock--cal {
     background: linear-gradient(165deg, #ecfdf5 0%, #d1fae5 40%, #a7f3d0 100%);
     border: 2px solid rgba(13, 159, 120, 0.35);
     padding: 12px 10px;
     margin-bottom: 0;
}

.peek-cal-grid {
     display: grid;
     grid-template-columns: repeat(7, 1fr);
     gap: 3px;
     width: 100%;
     max-width: 168px;
}

.peek-cal-cell {
     aspect-ratio: 1;
     border-radius: 4px;
     background: rgba(255, 255, 255, 0.65);
     font-size: 0.55rem;
     font-weight: 700;
     color: var(--muted);
     display: flex;
     align-items: center;
     justify-content: center;
}

.peek-cal-cell--today {
     background: var(--mint-deep);
     color: #fff;
     box-shadow: 0 2px 6px rgba(13, 159, 120, 0.4);
}

.peek-bridge {
     display: flex;
     flex-direction: row;
     align-items: center;
     justify-content: center;
     gap: 14px;
     padding: 14px 12px;
     min-width: 0;
     align-self: stretch;
     background: rgba(255, 255, 255, 0.65);
     border-radius: var(--radius);
     border: 1px dashed rgba(13, 159, 120, 0.28);
     text-align: center;
     width: fit-content;
     max-width: 100%;
     margin-left: auto;
     margin-right: auto;
}

.peek-keys {
     display: flex;
     align-items: center;
     gap: 6px;
     flex-wrap: wrap;
     justify-content: center;
}

kbd.peek-kbd {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     min-width: 2.6em;
     padding: 8px 12px;
     font-family: inherit;
     font-size: 0.8rem;
     font-weight: 800;
     color: var(--text);
     background: linear-gradient(180deg, #ffffff 0%, #e8ecf4 100%);
     border-radius: 8px;
     border: 1px solid rgba(15, 23, 42, 0.18);
     box-shadow: 0 3px 0 rgba(15, 23, 42, 0.12), 0 4px 12px rgba(15, 23, 42, 0.08);
}

kbd.peek-kbd--sm {
     min-width: auto;
     padding: 4px 9px;
     font-size: 0.72rem;
     box-shadow: 0 2px 0 rgba(15, 23, 42, 0.1);
}

.peek-plus {
     font-weight: 800;
     color: var(--muted);
     font-size: 1rem;
}

.peek-or {
     margin: 0 2px;
     font-size: 0.72rem;
     font-weight: 700;
     letter-spacing: 0.08em;
     color: var(--muted);
     text-transform: uppercase;
}

.peek-tray {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 8px;
     padding: 10px 14px;
     border-radius: 10px;
     background: rgba(13, 159, 120, 0.08);
     border: 1px dashed rgba(13, 159, 120, 0.35);
     max-width: none;
}

.peek-tray-icon {
     width: 34px;
     height: 34px;
     border-radius: 8px;
     background: url("../../images/tray-icon.png") center / cover no-repeat;
     box-shadow: 0 2px 6px rgba(15, 23, 42, 0.2);
}

.peek-tray small {
     font-size: 0.78rem;
     font-weight: 600;
     color: var(--text);
     line-height: 1.35;
}

.peek-board.card:hover {
     transform: none;
     box-shadow: var(--shadow-md), 0 0 0 1px rgba(13, 159, 120, 0.06);
}

.peek-restore {
     display: flex;
     align-items: flex-start;
     gap: 16px;
     margin-top: 18px;
     padding: 18px 22px;
     border-radius: var(--radius);
     background: rgba(99, 102, 241, 0.06);
     border: 1px solid rgba(99, 102, 241, 0.2);
}

.peek-restore__icon {
     flex-shrink: 0;
     width: 44px;
     height: 44px;
     border-radius: 12px;
     background: linear-gradient(135deg, #6366f1, #818cf8);
     color: #fff;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.35rem;
     font-weight: 800;
     box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
}

.peek-restore p {
     margin: 0;
     font-size: 0.95rem;
     line-height: 1.6;
     color: var(--text);
}

.peek-restore strong {
     color: #4338ca;
}

.peek-caution {
     margin-top: clamp(16px, 3vw, 22px);
     padding: 16px 18px 17px 20px;
     border-radius: var(--radius);
     background: linear-gradient(145deg, rgba(251, 191, 36, 0.12), rgba(254, 249, 231, 0.65));
     border: 1px solid rgba(245, 158, 11, 0.3);
     box-shadow: 0 1px 4px rgba(180, 83, 9, 0.07);
}

.peek-caution__title {
     margin: 0 0 10px;
     font-size: 0.78rem;
     font-weight: 800;
     letter-spacing: 0.06em;
     color: #b45309;
     text-align: center;
}

.peek-caution__body {
     margin: 0;
     font-size: 0.92rem;
     line-height: 1.65;
     color: var(--muted);
     text-align: center;
}

.peek-caution__body strong {
     color: var(--text);
     font-weight: 700;
}

section {
     /* 가로 0을 주면 .wrap 과 충돌하므로 세로만 */
     padding-block: var(--section-pad);
}

section.quick-peek {
     padding-top: clamp(48px, 7vw, 80px);
     padding-bottom: clamp(40px, 6vw, 72px);
}

section h2 {
     font-size: clamp(1.4rem, 2.8vw, 1.65rem);
     margin: 0 0 14px;
     letter-spacing: -0.02em;
     line-height: 1.3;
}

.feature-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: clamp(20px, 3vw, 28px);
     margin-bottom: 0;
     align-items: stretch;
}

/* 히어로 직후 핵심 기능: section 공통 padding-block이 겹쳐 과도한 세로 공간이 생기는 것 완화 */
section.hero {
     padding-bottom: clamp(36px, 6vw, 64px);
}

section#features {
     padding-top: clamp(28px, 4vw, 48px);
}

/* 상단 sticky 헤더에 가리지 않도록 앵커 스크롤 보정 */
#features {
     scroll-margin-top: 88px;
}

/* 앵커(#features) 이동 시 섹션에 포커스가 가며 나오는 기본 테두리(아웃라인) 제거 */
#features:focus {
     outline: none;
}

/* 전체 기능: 바로가기 시 제목(h2) 기준으로 스크롤·포커스 (sticky 헤더 여유) */
#features-all {
     scroll-margin-top: clamp(88px, 5.5vw, 112px);
}

.features-all-section {
     padding-top: calc((var(--section-pad) + clamp(24px, 3.5vw, 44px)) * 0.5);
     padding-bottom: clamp(28px, 4vw, 48px);
}

/* 핵심 기능 섹션 소개문구 아래 영역을 2/3 크기로 축소 */
#features .feature-grid {
     width: 83.333%;
     margin-left: auto;
     margin-right: auto;
}

/* 전체 기능: 기능 : 내용 → ㄴ 이미지 리스트 (단일 카드 박스) */
.features-all-section .features-all-list {
     width: 83.333%;
     margin-left: auto;
     margin-right: auto;
     display: flex;
     flex-direction: column;
     gap: 0;
     background: var(--bg-card);
     border: 1px solid var(--border-card);
     border-radius: var(--radius-lg);
     box-shadow: var(--shadow-md);
     padding: clamp(10px, 1.8vw, 18px) clamp(22px, 3.5vw, 40px);
     box-sizing: border-box;
}

.features-all-item {
     display: flex;
     flex-wrap: wrap;
     align-items: baseline;
     gap: 6px 10px;
     row-gap: 4px;
     padding: clamp(18px, 2.6vw, 26px) 0;
     border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.features-all-item:last-child {
     border-bottom: none;
}

.features-all-item__label {
     flex: 0 0 auto;
     font-size: 1.02rem;
     font-weight: 800;
     letter-spacing: -0.025em;
     color: var(--text);
}

.features-all-item__colon {
     flex: 0 0 auto;
     color: var(--muted);
     opacity: 0.55;
     font-weight: 600;
}

.features-all-item__text {
     flex: 1 1 16rem;
     margin: 0;
     min-width: min(100%, 12rem);
     font-size: 0.96rem;
     line-height: 1.6;
     color: var(--muted);
}

.features-all-item__text a {
     color: var(--teal-deep);
     font-weight: 600;
     text-decoration: none;
     border-bottom: 1px solid rgba(14, 165, 233, 0.35);
}

.features-all-item__text a:hover {
     border-bottom-color: var(--teal-deep);
}

.features-all-item__shot {
     display: contents;
     border: none;
     background: transparent;
}

.features-all-item__shot-summary {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 6px;
     padding: 6px 10px;
     margin: 0;
     flex: 0 0 auto;
     border-radius: var(--radius-btn-cta);
     cursor: pointer;
     font-size: 0.82rem;
     font-weight: 700;
     color: var(--teal-deep);
     list-style: none;
     user-select: none;
     background: rgba(14, 165, 233, 0.08);
     border: 1px solid rgba(14, 165, 233, 0.2);
     transition: background 0.2s ease, border-color 0.2s ease;
     white-space: nowrap;
}

.features-all-item__shot-summary::-webkit-details-marker {
     display: none;
}

.features-all-item__shot-summary:hover {
     background: rgba(14, 165, 233, 0.13);
     border-color: rgba(14, 165, 233, 0.32);
}

.features-all-item__shot-chevron {
     flex-shrink: 0;
     font-size: 0.72rem;
     color: var(--teal-deep);
     transition: transform 0.25s ease;
}

.features-all-item__shot[open] .features-all-item__shot-chevron {
     transform: rotate(180deg);
}

.features-all-item__branch {
     display: grid;
     grid-template-columns: auto minmax(0, 1fr);
     gap: 10px 16px;
     align-items: start;
     flex: 1 1 100%;
     min-width: 100%;
     margin-top: clamp(10px, 1.8vw, 14px);
     padding-left: 2px;
     padding-bottom: 2px;
}

.features-all-item__twig {
     display: block;
     padding-top: 10px;
     font-size: 0.92rem;
     font-weight: 800;
     line-height: 1;
     color: var(--teal-deep);
     opacity: 0.5;
     user-select: none;
}

.features-all-item__figures {
     min-width: 0;
     display: flex;
     flex-direction: column;
     gap: clamp(12px, 2vw, 18px);
}

.features-all-item__triplet {
     min-width: 0;
     width: 100%;
     display: grid;
     grid-template-columns: repeat(3, minmax(0, 1fr));
     gap: clamp(10px, 2vw, 16px);
}

.features-all-item__triplet--triangle {
     grid-template-columns: repeat(2, minmax(0, 1fr));
}

.features-all-item__triplet--triangle .features-all-item__figure:nth-child(1) {
     grid-column: 1 / -1;
     justify-self: center;
     width: min(72%, 720px);
}

.features-all-item__figure {
     margin: 0;
     border-radius: 14px;
     overflow: hidden;
     border: 1px solid var(--border-card);
     background: var(--img-placeholder);
     box-shadow: 0 8px 28px rgba(15, 23, 42, 0.07), var(--shadow-sm);
}

.features-all-item__figure img {
     display: block;
     width: 100%;
     height: auto;
     vertical-align: middle;
}

.features-all-item__caption {
     padding: 8px 10px;
     font-size: 0.82rem;
     font-weight: 700;
     color: var(--text-sub);
     text-align: center;
     background: rgba(255, 255, 255, 0.72);
}

.features-all-item__pair {
     min-width: 0;
     width: 100%;
     display: grid;
     grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
     align-items: center;
     gap: clamp(8px, 1.6vw, 14px);
}

.features-all-item__pair-arrow {
     color: var(--teal-deep);
     font-size: clamp(1.1rem, 2.2vw, 1.5rem);
     font-weight: 800;
     opacity: 0.9;
}

/* 화면 꾸미기: 설정(배경 선택) → 메인 달력 3종 예시 */
.bg-decor-flow {
     width: 100%;
     min-width: 0;
}

.bg-decor-flow__row {
     display: flex;
     flex-wrap: wrap;
     align-items: stretch;
     justify-content: center;
     gap: clamp(14px, 2.5vw, 24px);
}

.bg-decor-flow__panel {
     flex: 1 1 min(100%, 17rem);
     max-width: 100%;
     display: flex;
     flex-direction: column;
     gap: 10px;
     min-width: 0;
}

.bg-decor-flow__panel--results {
     flex: 3 1 min(100%, 28rem);
}

.bg-decor-flow__label {
     margin: 0;
     font-size: 0.84rem;
     font-weight: 800;
     color: var(--text);
     letter-spacing: -0.02em;
     text-align: center;
     line-height: 1.35;
}

.bg-decor-flow__sub {
     margin: -4px 0 0;
     font-size: 0.78rem;
     font-weight: 600;
     color: var(--muted);
     text-align: center;
     line-height: 1.45;
}

.bg-decor-flow__figure {
     margin: 0;
     border-radius: 12px;
     overflow: hidden;
     border: 1px solid var(--border-card);
     box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08), var(--shadow-sm);
     background: var(--img-placeholder);
}

.bg-decor-flow__figure img {
     display: block;
     width: 100%;
     height: auto;
     vertical-align: middle;
}

.bg-decor-flow__connector {
     flex: 0 0 auto;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 8px;
     padding: 0 6px;
     align-self: center;
}

.bg-decor-flow__arrow {
     font-size: clamp(1.35rem, 3vw, 1.85rem);
     font-weight: 900;
     color: var(--mint-deep);
     line-height: 1;
     animation: bg-decor-flow-pulse 2.2s ease-in-out infinite;
}

.bg-decor-flow__apply {
     font-size: 0.72rem;
     font-weight: 800;
     color: var(--teal-deep);
     background: rgba(14, 165, 233, 0.1);
     border: 1px solid rgba(14, 165, 233, 0.28);
     padding: 6px 14px;
     border-radius: 999px;
     white-space: nowrap;
}

.bg-decor-flow__triplet {
     display: grid;
     grid-template-columns: repeat(3, minmax(0, 1fr));
     gap: clamp(8px, 1.5vw, 12px);
     min-width: 0;
}

@media (prefers-reduced-motion: reduce) {
     .bg-decor-flow__arrow {
          animation: none;
     }
}

@keyframes bg-decor-flow-pulse {
     0%,
     100% {
          opacity: 1;
     }

     50% {
          opacity: 0.45;
     }
}

@media (max-width: 720px) {
     .bg-decor-flow__connector {
          flex-basis: 100%;
          flex-direction: row;
          justify-content: center;
          padding: 4px 0 8px;
     }

     .bg-decor-flow__arrow {
          transform: rotate(90deg);
     }

     .bg-decor-flow__triplet {
          grid-template-columns: 1fr;
     }
}

@media (max-width: 960px) {
     #features > .section-head,
     .features-all-section > .section-head,
     #features .feature-grid,
     .features-all-section .features-all-list {
          width: 100%;
     }

     .features-all-item__branch {
          gap: 8px 12px;
     }
}

.feature-card {
     display: flex;
     flex-direction: column;
     padding: clamp(22px, 3vw, 28px);
     border-radius: var(--radius-lg);
     border: 1px solid var(--border-card);
     box-shadow: var(--shadow-md);
}

.feature-card h3 {
     margin: 0 0 14px;
     font-size: 1.05rem;
     font-weight: 800;
     letter-spacing: -0.02em;
     line-height: 1.35;
}

.feature-card__art {
     height: clamp(132px, 22vw, 160px);
     border-radius: 1.25rem;
     margin-bottom: 20px;
     position: relative;
     overflow: hidden;
}

/* 핵심 기능 카드의 실제 이미지 크기 축소 */
.feature-card > img {
     width: 33.333%;
     min-width: 120px;
     max-width: 180px;
     margin: 8px auto 0;
     display: block;
}

/* 나만의 맞춤 화면: 예시 이미지 한 장씩 세로 나열 */
.feature-style-images {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: clamp(10px, 2vw, 16px);
     margin-top: clamp(8px, 1.5vw, 14px);
}

.feature-style-images img {
     width: min(100%, 640px);
     max-width: 640px;
     height: auto;
     margin: 0;
     display: block;
}

/* 나만의 맞춤 화면: 이미지 + 캡션 */
.feature-style-item {
     margin: 0;
     padding: 0;
     width: min(100%, 640px);
     border-radius: 0;
     overflow: visible;
     border: 0;
     background: transparent;
     box-shadow: none;
}

.feature-style-item img {
     width: 100%;
     max-width: 100%;
     display: block;
     height: auto;
     background: var(--img-placeholder);
     object-fit: contain;
}

.feature-style-caption {
     padding: 12px 14px;
     font-size: 0.86rem;
     color: var(--muted);
     line-height: 1.45;
     text-align: center;
     background: transparent;
}

.feature-card__art--sync {
     background: linear-gradient(145deg, #dbeafe 0%, #e0f2fe 40%, #ecfdf5 100%);
     box-shadow: inset 0 0 0 1px rgba(14, 165, 233, 0.12);
}

.feature-card__art--sync::before,
.feature-card__art--sync::after {
     content: "";
     position: absolute;
     border-radius: 14px;
     background: #fff;
     box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.feature-card__art--sync::before {
     width: 42%;
     height: 58%;
     left: 10%;
     bottom: 14%;
     background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
     border: 2px solid rgba(45, 212, 163, 0.35);
}

.feature-card__art--sync::after {
     width: 38%;
     height: 46%;
     right: 12%;
     top: 18%;
     background: linear-gradient(160deg, #cffafe 0%, #e0f2fe 100%);
     border: 2px solid rgba(14, 165, 233, 0.28);
}

.feature-card__art--flow {
     background: linear-gradient(155deg, #fef3c7 0%, #fde68a 30%, #ecfdf5 85%);
     box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.15);
}

.feature-card__art--flow::before {
     content: "";
     position: absolute;
     left: 18%;
     top: 22%;
     width: 64%;
     height: 36%;
     border-radius: 10px;
     background: rgba(255, 255, 255, 0.92);
     border: 1px solid rgba(15, 23, 42, 0.08);
     box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.feature-card__art--flow::after {
     content: "";
     position: absolute;
     right: 14%;
     bottom: 16%;
     width: 44%;
     height: 28%;
     border-radius: 10px;
     background: linear-gradient(135deg, rgba(45, 212, 163, 0.85), rgba(13, 159, 120, 0.9));
     opacity: 0.9;
}

.feature-card__art--style {
     background: linear-gradient(145deg, #ede9fe 0%, #e0e7ff 35%, #f0fdfa 100%);
     box-shadow: inset 0 0 0 1px rgba(99, 102, 241, 0.12);
}

.feature-card__art--style::before {
     content: "";
     position: absolute;
     left: 50%;
     top: 50%;
     transform: translate(-50%, -50%);
     width: 56%;
     height: 52%;
     border-radius: 16px;
     background: repeating-linear-gradient(
          90deg,
          rgba(255, 255, 255, 0.9) 0,
          rgba(255, 255, 255, 0.9) 14px,
          rgba(14, 165, 233, 0.12) 14px,
          rgba(14, 165, 233, 0.12) 28px
     );
     border: 1px solid rgba(15, 23, 42, 0.06);
     box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
}

.pill-row {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     margin-top: 4px;
}

.pill {
     font-size: 0.82rem;
     padding: 8px 14px;
     border-radius: 999px;
     background: var(--pill-bg);
     border: 1px solid var(--border);
     color: var(--muted);
     font-weight: 500;
}

.pill-row--tags {
     gap: 8px;
}

.pill-row--tags .pill {
     font-size: 0.78rem;
     padding: 6px 12px;
     font-weight: 600;
}

.grid-2 {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: var(--block-gap);
}

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

.card {
     background: var(--bg-card);
     border: 1px solid var(--border-card);
     border-radius: var(--radius-lg);
     padding: clamp(24px, 3vw, 30px) clamp(22px, 3vw, 28px);
     box-shadow: var(--shadow-md);
     transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.card:hover {
     box-shadow: var(--shadow-card-hover);
     transform: translateY(-3px);
}

.card.feature-card:hover {
     transform: translateY(-4px);
     box-shadow: var(--shadow-card-hover);
}

.card h3 {
     margin: 0 0 12px;
     font-size: 1.08rem;
     line-height: 1.35;
}

.card p {
     margin: 0;
     color: var(--muted);
     font-size: 0.97rem;
     line-height: 1.65;
}

.card img {
     width: 100%;
     max-width: 100%;
     height: auto;
     border-radius: 12px;
     margin-top: 20px;
     background: var(--img-placeholder);
     border: 1px solid var(--border);
     object-fit: contain;
}

.gallery {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: var(--block-gap);
}

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

.gallery figure {
     margin: 0;
     border-radius: var(--radius);
     overflow: hidden;
     border: 1px solid var(--border);
     background: var(--bg-card);
     box-shadow: var(--shadow-sm);
}

.gallery img {
     width: 100%;
     max-width: 100%;
     height: auto;
     display: block;
     vertical-align: middle;
     background: var(--img-placeholder);
     object-fit: contain;
}

.gallery figcaption {
     padding: 14px 18px;
     font-size: 0.86rem;
     color: var(--muted);
     border-top: 1px solid var(--border);
     background: var(--bg-card);
     line-height: 1.45;
}

/* DOCX 문서(이용 약관/개인정보처리방침) 뷰어 */
.docx-viewer {
     width: 100%;
     margin-top: clamp(18px, 2.4vw, 26px);
}

.docx-text {
     width: 100%;
     height: 100%;
     overflow: auto;
     padding: clamp(18px, 2.4vw, 26px);
     font-size: 0.98rem;
     line-height: 1.95;
     color: var(--text);
 }

.docx-text h3 {
     font-size: 1.06rem;
     font-weight: 800;
     letter-spacing: -0.02em;
     margin: 0 0 12px;
     padding-top: 1.15rem;
     margin-top: 1.35rem;
     line-height: 1.4;
     border-top: 1px solid var(--border);
}

.docx-text h3:first-child {
     margin-top: 0;
     padding-top: 0;
     border-top: none;
}

.docx-text p {
     margin: 0 0 1.05rem;
     line-height: 1.92;
}

.docx-text p:last-child {
     margin-bottom: 0;
}

.docx-text ul {
     margin: 0 0 1.15rem;
     padding-left: 1.35em;
}

.docx-text li {
     margin: 0.35rem 0;
     line-height: 1.88;
}

.docx-text li + li {
     margin-top: 0.5rem;
}

.docx-embed {
     position: relative;
     width: 100%;
     height: clamp(520px, 70vh, 820px);
     border: 1px solid var(--border);
     border-radius: var(--radius);
     overflow: hidden;
     background: #ffffff;
}

.docx-embed--txt {
     /* TXT 약관/개인정보는 내용 길이에 맞게 높이를 줄이되, 너무 길어지면 스크롤만 허용 */
     height: auto;
     max-height: clamp(520px, 80vh, 920px);
     overflow: auto;
}

.docx-embed--txt .docx-text {
     height: auto;
     overflow: visible;
}

.docx-embed iframe {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     border: 0;
}

.docx-download {
     margin: 14px 0 0;
     text-align: center;
     color: var(--muted);
     font-size: 0.95rem;
}

.list-check {
     margin: 0;
     padding-left: 1.25em;
     color: var(--muted);
     font-size: 0.97rem;
     line-height: 1.65;
}

.list-check li {
     margin: 14px 0;
}

.list-check li:first-child {
     margin-top: 0;
}

.list-check li:last-child {
     margin-bottom: 0;
}

.cta-band {
     margin: var(--block-gap) 0 0;
     padding: clamp(40px, 6vw, 56px) clamp(28px, 5vw, 48px);
     border-radius: var(--radius-lg);
     background: linear-gradient(155deg, rgba(224, 242, 254, 0.55) 0%, #ffffff 45%, #ecfdf5 100%);
     border: 1px solid var(--border-card);
     text-align: center;
     box-shadow: var(--shadow-md);
     position: relative;
     overflow: hidden;
}

.cta-band::after {
     content: "";
     position: absolute;
     top: -40%;
     left: 50%;
     transform: translateX(-50%);
     width: 80%;
     height: 80%;
     background: radial-gradient(ellipse, rgba(45, 212, 163, 0.12), transparent 65%);
     pointer-events: none;
}

.cta-band > * {
     position: relative;
     z-index: 1;
}

.cta-title {
     font-size: clamp(1.35rem, 3vw, 1.75rem);
     font-weight: 800;
     margin: 0 0 12px;
     letter-spacing: -0.03em;
     line-height: 1.25;
}

.cta-band .cta-lead {
     margin: 0 0 28px;
     color: var(--muted);
     font-size: 1.02rem;
     max-width: 28em;
     margin-left: auto;
     margin-right: auto;
}

.cta-band .btn-primary {
     padding: 16px 48px;
     font-size: 1rem;
}

.cta-foot {
     margin-top: 28px !important;
     margin-bottom: 0 !important;
     font-size: 0.88rem !important;
     line-height: 1.6;
}

footer.site {
     margin-bottom: 0;
     padding: clamp(14px, 2.2vw, 22px) 0 clamp(20px, 3.2vw, 32px);
     border-top: 1px solid var(--border);
     background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 38%, #fafcfe 100%);
     color: var(--muted);
     font-size: 0.875rem;
     line-height: 1.6;
}

footer.site .cols {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
     align-items: flex-end;
     column-gap: clamp(32px, 6vw, 72px);
     row-gap: 28px;
     width: 100%;
}

footer.site strong {
     font-size: 1.05rem;
     font-weight: 700;
     letter-spacing: -0.02em;
}

.footer-right .footer-legal {
     margin: 0 0 0.5rem;
     font-size: 0.875rem;
     line-height: 1.55;
     color: var(--muted);
}

.footer-legal a {
     color: var(--muted);
     text-decoration: none;
}

.footer-legal a:hover {
     color: var(--teal-deep);
     text-decoration: underline;
}

.footer-legal__sep {
     margin: 0 6px;
     color: var(--muted);
     opacity: 0.7;
}

@media (max-width: 680px) {
     footer.site .cols {
          flex-direction: column;
          align-items: flex-start;
     }

     .footer-right {
          text-align: left;
          width: 100%;
          align-self: stretch;
          margin-top: 0.25rem;
     }
}

.features-more {
     margin-top: var(--block-gap);
     border: 1px solid var(--border);
     border-radius: var(--radius);
     background: var(--bg-card);
     box-shadow: var(--shadow-sm);
     overflow: hidden;
}

/* 카드 내부 접기 버튼은 여백을 더 타이트하게 */
#features .feature-card .features-more {
     margin-top: 8px;
     width: 100%;
     margin-left: 0;
     margin-right: 0;
}

.feature-card .features-more summary {
     width: 100%;
}

/* 펼침 영역(연동 방법 보기) 이미지는 카드 폭에 맞춰 크게 표시 */
.feature-card .features-more-inner > img {
     width: 100%;
     max-width: none;
     min-width: 0;
     margin: 14px 0 0;
}

.features-more summary {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 12px;
     padding: 18px 22px;
     cursor: pointer;
     font-size: 1rem;
     font-weight: 700;
     color: var(--text);
     list-style: none;
     user-select: none;
     transition: background 0.2s ease;
}

.features-more summary::-webkit-details-marker {
     display: none;
}

.features-more summary:hover {
     background: rgba(45, 212, 163, 0.08);
}

.features-more .summary-chevron {
     flex-shrink: 0;
     font-size: 0.75rem;
     color: var(--mint-deep);
     transition: transform 0.25s ease;
}

.features-more[open] .summary-chevron {
     transform: rotate(180deg);
}

.features-more-inner {
     padding: var(--block-gap) 22px 22px;
     border-top: 1px solid var(--border);
}

.features-more-inner .card {
     margin-top: var(--block-gap);
}

.features-more-inner .card:first-of-type {
     margin-top: 0;
}

.features-more-inner .card:hover {
     transform: none;
     box-shadow: var(--shadow-sm);
}

.features-more .list-check {
     margin-top: var(--block-gap);
}

/* 이미지 촬영·제작용 플레이스홀더 ({가이드} 문구 표시) */
.media-guide {
     margin-top: 20px;
     min-height: clamp(160px, 26vw, 300px);
     border-radius: 1rem;
     border: 2px dashed rgba(45, 212, 163, 0.35);
     background: linear-gradient(145deg, rgba(224, 242, 254, 0.35), rgba(209, 250, 229, 0.25));
     display: flex;
     align-items: center;
     justify-content: center;
     padding: clamp(18px, 3.5vw, 28px);
     text-align: center;
     color: var(--muted);
     font-size: 0.94rem;
     line-height: 1.6;
}

.media-guide__text {
     margin: 0;
     max-width: 36rem;
     color: var(--text);
     font-weight: 600;
}

.hero-shot .media-guide {
     margin-top: 0;
     min-height: clamp(200px, 32vw, 380px);
}

.feature-table-wrap {
     overflow-x: auto;
     margin-top: var(--block-gap);
     border: 1px solid var(--border);
     border-radius: var(--radius);
     background: var(--bg-card);
     box-shadow: var(--shadow-sm);
}

.feature-table {
     width: 100%;
     border-collapse: collapse;
     font-size: 0.91rem;
}

.feature-table th,
.feature-table td {
     padding: 14px 16px;
     text-align: left;
     vertical-align: top;
     border-bottom: 1px solid var(--border);
}

.feature-table th {
     width: 26%;
     min-width: 7rem;
     background: rgba(45, 212, 163, 0.1);
     color: var(--text);
     font-weight: 700;
     white-space: nowrap;
}

.feature-table tr:last-child th,
.feature-table tr:last-child td {
     border-bottom: none;
}

.feature-table td {
     color: var(--muted);
}

.features-more-inner > .feature-table-wrap:first-child {
     margin-top: 0;
}

.gallery figure .media-guide {
     margin-top: 0;
     min-height: clamp(200px, 28vw, 300px);
     border-radius: 0;
     border-left: none;
     border-right: none;
     border-top: none;
}

/*
 * WordPress Neve: 캘린더뷰 풋터(footer.site) 아래로 남는 빈 하얀 영역 제거
 * (본문 래퍼·싱글 래퍼·테마 푸터 슬롯의 padding/margin 누적)
 */
#wrapper,
#wrapper .wrapper,
.neve-main {
     margin-bottom: 0;
     padding-bottom: 0;
}

.neve-main > .container:last-child,
.neve-main > .elementor:last-child {
     margin-bottom: 0;
     padding-bottom: 0;
}

.nv-single-post-wrap,
.nv-page-title-wrap,
article.post .entry-content,
.post .entry-content {
     margin-bottom: 0;
     padding-bottom: 0;
}

/* Neve Footer(HFG): 비어 있거나 여백만 있을 때 하단 공간 */
footer#site-footer.site-footer,
.site-footer.hfg_footer,
footer.site-footer,
footer.hfg_footer,
.hfg_footer {
     margin-bottom: 0;
     padding-bottom: 0;
}

/* 테마가 row에 주는 하단 간격(버전에 따라 .footer--row 등) */
.site-footer .footer--row:last-child,
.hfg_footer .footer--row:last-child {
     padding-bottom: 0;
     margin-bottom: 0;
}
