:root {
    --brand: #00d1b2;
    --ink: #0b1220;
    --ink2: #111827;
    --muted: #64748b;
    --line: #e6edf5;
    --soft: #f5f8fb;
    --dark: #0b1324;
    --dark2: #070d1a;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Pretendard Variable", Pretendard, Inter, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink);
    background: #fff;
    word-break: keep-all;
    overflow-x: hidden;
}

body.has-menu-open {
    overflow: hidden;
}

button,
a {
    font: inherit;
    color: inherit;
    border: 0;
    background: none;
    text-decoration: none;
    cursor: pointer;
}

.wrap {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.topbar {
    background: #080f1e;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.topbar-inner {
    min-height: 39px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar b,
.section-kicker,
.text-link,
.footer .admin {
    color: var(--brand);
}

.topbar span {
    margin-left: 14px;
}

.topbar-links,
.topbar-links button {
    display: flex;
    align-items: center;
    gap: 14px;
}

.topbar-links i {
    width: 1px;
    height: 10px;
    background: #334155;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid #eef2f7;
    transition: transform .3s ease, background .2s ease, box-shadow .2s ease;
}

.site-header.is-hidden {
    transform: translateY(-100%);
}

.header-inner {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 950;
    letter-spacing: -.04em;
    text-align: left;
}

.brand-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--ink);
    color: #fff;
    font-size: 15px;
}

.brand-icon i {
    font-size: 16px;
    line-height: 1;
}

.brand-text span {
    margin-left: 4px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.2vw, 36px);
    margin-right: auto;
    margin-left: 36px;
    color: #64748b;
    font-size: 15px;
    font-weight: 900;
}

.desktop-nav button:hover {
    color: var(--brand);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dark-cta {
    border-radius: 18px;
    background: var(--ink);
    color: #fff;
    font-size: 14px;
    font-weight: 950;
    padding: 13px 24px;
    box-shadow: 0 14px 28px rgba(15, 23, 42, .12);
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    border-radius: 18px;
    background: var(--ink);
    color: #fff;
    font-size: 15px;
    line-height: 1;
    font-weight: 950;
    padding: 13px 24px;
    box-shadow: 0 14px 28px rgba(15, 23, 42, .12);
}

.primary-btn i {
    font-size: 15px;
    line-height: 1;
    flex: 0 0 auto;
}

.hamburger {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #f3f6fa;
    color: #64748b;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: .35s ease;
}

.mobile-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-head {
    height: 68px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #edf2f7;
}

.menu-close {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: #f2f5f8;
    color: #64748b;
}

.hamburger i,
.menu-close i {
    font-size: 17px;
    line-height: 1;
}

.mobile-nav {
    padding: 28px 24px 10px;
}

.mobile-nav button {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid #edf2f7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transform: translateX(28px);
    transition: .35s ease;
}

.mobile-menu.is-open .mobile-nav button {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav span {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 18px;
    font-weight: 950;
}

.mobile-nav span i {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: inline-grid;
    place-items: center;
    background: #f7f9fc;
    color: #94a3b8;
    font-size: 17px;
    line-height: 1;
}

.mobile-nav em {
    font-size: 10px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: .14em;
    color: #cbd5e1;
}

.mobile-actions {
    padding: 18px 24px 28px;
}

.mobile-actions div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.mobile-actions div button,
.mobile-primary {
    min-height: 48px;
    border-radius: 16px;
    font-weight: 950;
}

.mobile-actions div button:first-child {
    background: #f1f5f9;
}

.mobile-actions div button:last-child,
.mobile-primary {
    background: var(--ink);
    color: #fff;
}

.mobile-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.mobile-primary i {
    font-size: 15px;
    line-height: 1;
    flex: 0 0 auto;
}

.mobile-actions p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 800;
}

.hero {
    background: #fff;
    text-align: center;
    padding: 58px 0 60px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--brand);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.eyebrow {
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(0, 209, 178, .1);
    border: 1px solid rgba(0, 209, 178, .18);
    margin-bottom: 24px;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

.hero h1 {
    margin-bottom: 18px;
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1.12;
    letter-spacing: -.055em;
    font-weight: 950;
}

.hero h1 strong,
.center h2 strong,
.reviews h2 strong,
.why h2 strong {
    color: var(--brand);
}

.lead,
.sub {
    color: var(--muted);
    line-height: 1.75;
    font-size: 16px;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 28px 0 36px;
}

.hero-main-btn {
    min-width: 200px;
    min-height: 58px;
    font-size: 16px;
    padding: 16px 36px;
}

.primary-btn:hover,
.dark-cta:hover {
    background: var(--brand);
    color: var(--ink);
}

.soft-btn {
    display: inline-flex;
    align-items: center;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 18px;
    background: #f1f5f9;
    color: #475569;
    font-size: 14px;
    font-weight: 950;
}

.hero-cards {
    max-width: 860px;
    margin: 0 auto 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    text-align: left;
}

.hero-cards article {
    padding: 22px;
    min-height: 136px;
    background: #f4f7fb;
    border: 1px solid #e8eef6;
    border-radius: 16px;
}

.hero-cards i,
.process-grid i {
    width: 40px;
    height: 40px;
    border-radius: 13px;
    display: inline-grid;
    place-items: center;
    background: rgba(0, 209, 178, .12);
    color: var(--brand);
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1;
}

.hero-cards h3 {
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 950;
}

.hero-cards p,
.benefit-grid p,
.process-grid p,
.portfolio p,
.templates p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
    margin-bottom: 0;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.chips span {
    padding: 8px 12px;
    border: 1px solid #e8eef5;
    border-radius: 999px;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 800;
    background: #fff;
}

.stats,
.dark {
    background: var(--dark);
    color: #fff;
}

.stats-grid {
    min-height: 204px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

.stats-grid div {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.stats-grid div:last-child {
    border-right: 0;
}

.stats-grid strong {
    display: block;
    color: var(--brand);
    font-size: clamp(24px, 3.2vw, 36px);
    font-weight: 950;
    letter-spacing: -.04em;
}

.stats-grid span {
    color: #94a3b8;
    font-size: clamp(10px, 1.2vw, 12px);
    font-weight: 800;
}

.pricing,
.why,
.process,
.portfolio,
.templates,
.reviews,
.faq {
    padding: 86px 0;
}

.center {
    text-align: center;
}

.center h2,
.why h2,
.portfolio h2,
.templates h2,
.faq h2 {
    margin: 9px 0 10px;
    font-size: clamp(28px, 2.9vw, 46px);
    line-height: 1.2;
    letter-spacing: -.05em;
    font-weight: 950;
}

.price-card {
    position: relative;
    width: min(440px, 100%);
    margin: 38px auto 20px;
    padding: 36px 44px 36px;
    border-radius: 20px;
    background: var(--dark);
    color: #fff;
    text-align: center;
    box-shadow: 0 32px 80px rgba(11, 18, 36, .28);
}

.best {
    position: absolute;
    right: 0;
    top: 0;
    padding: 9px 16px;
    border-radius: 0 18px 0 14px;
    background: var(--brand);
    color: var(--ink);
    font-size: 10px;
    font-weight: 950;
}

.price-card p {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 900;
    text-align: center;
}

.price-card small {
    display: block;
    color: #64748b;
    font-size: 13px;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.price {
    display: inline-flex;
    align-items: flex-end;
    gap: 10px;
    margin: 12px 0 24px;
}

.price b {
    font-size: 62px;
    line-height: .85;
    font-weight: 950;
}

.price span {
    font-size: 17px;
    font-weight: 900;
    line-height: 1.25;
}

.price-card ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
    padding: 0;
    margin: 0 0 28px;
    list-style: none;
    text-align: left;
}

.price-card li {
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-card li i {
    font-size: 15px;
    line-height: 1;
    flex: 0 0 auto;
    color: var(--brand);
}


.price-card button {
    width: 100%;
    display: block;
    padding: 18px;
    border-radius: 10px;
    background: var(--brand);
    color: var(--ink);
    text-align: center;
    font-size: 15px;
    font-weight: 950;
    letter-spacing: -.01em;
}

.price-card button:hover {
    filter: brightness(1.06);
}

.note {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 18px;
    color: #64748b;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
}

.why,
.templates {
    background: #f7fafc;
}

.compare {
    width: min(760px, 100%);
    margin: 34px auto 8px;
    border: 1px solid #dff7f3;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
}

.compare div {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.2fr;
    min-height: 52px;
    align-items: center;
    border-bottom: 1px solid #eef5f7;
    text-align: center;
    font-size: 13px;
    font-weight: 900;
}

.compare div:first-child {
    color: #94a3b8;
}

.compare div:last-child {
    border-bottom: 0;
}

.compare b {
    height: 100%;
    display: grid;
    place-items: center;
    background: rgba(0, 209, 178, .08);
    color: var(--brand);
}

.compare span:nth-child(2) {
    color: #94a3b8;
}

.compare-caption {
    color: #cbd5e1;
    text-align: center;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 34px;
}

.benefit-grid {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.benefit-grid article {
    min-height: 154px;
    padding: 23px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #edf2f7;
}

.benefit-grid em {
    color: #dbe3ec;
    font-style: normal;
    font-size: 20px;
    font-weight: 950;
}

.benefit-grid h3 {
    font-size: 14px;
    font-weight: 950;
}

.process {
    padding-top: 72px;
    padding-bottom: 80px;
}

.dark .sub {
    color: #64748b;
}

.process-grid {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.process-grid article {
    min-height: 176px;
    padding: 28px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
}

.process-grid small {
    display: block;
    color: #64748b;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .12em;
}

.process-grid h3 {
    margin: 8px 0;
    font-size: 15px;
    font-weight: 950;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.section-head h2 {
    margin-bottom: 5px;
    font-size: 26px;
}

.text-link {
    font-size: 14px;
    font-weight: 950;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.portfolio-grid article,
.template-grid article {
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
}

.thumb {
    position: relative;
    height: 214px;
    background-size: cover;
    background-position: center;
}

.thumb::after,
.tpl::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 13, 26, .02), rgba(7, 13, 26, .54));
}

.curtain { background-image: linear-gradient(120deg, #d7d5d0, #6f746f 46%, #d5d7d9); }
.sound { background-image: linear-gradient(135deg, #f6f6f2 0 30%, #111827 30% 42%, #d9d1c2 42% 70%, #f7f7f7 70%); }
.floor { background-image: linear-gradient(135deg, #87613f, #20160f 45%, #b8895c); }

.thumb span {
    position: absolute;
    left: 16px;
    bottom: 15px;
    z-index: 1;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.portfolio-grid small,
.portfolio-grid h3,
.template-grid h3,
.template-grid p {
    display: block;
    padding: 0 16px;
}

.portfolio-grid small {
    color: var(--brand);
    margin-top: 14px;
    font-size: 11px;
    font-weight: 950;
}

.portfolio-grid h3,
.template-grid h3 {
    margin: 7px 0 18px;
    font-size: 15px;
    font-weight: 950;
}

.template-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.tpl {
    position: relative;
    height: 116px;
    background-size: cover;
    background-position: center;
}

.tpl b {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 1;
    padding: 4px 7px;
    border-radius: 4px;
    background: var(--brand);
    color: #05221f;
    font-size: 9px;
    font-weight: 950;
}

.beauty { background-image: linear-gradient(135deg, #19110e, #6c4b37, #d8c1ae); }
.contest { background-image: linear-gradient(135deg, #111827 20%, #f8fafc 20% 52%, #1e293b 52%); }
.phone { background-image: linear-gradient(135deg, #0f172a, #3b82f6, #0f172a); }
.resort { background-image: linear-gradient(135deg, #5f4434, #101623, #d2b48c); }
.wash { background-image: linear-gradient(135deg, #0f172a, #334155, #0ea5e9); }
.living { background-image: linear-gradient(135deg, #12302d, #5b7a68, #111827); }

.template-grid p {
    padding-bottom: 14px;
    font-weight: 900;
}

.reviews {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 20%, rgba(37, 99, 235, .14), transparent 38%),
        var(--dark);
}

.rating {
    color: #facc15;
    font-size: 17px;
    font-weight: 950;
    margin-top: 12px;
}

.rating b {
    color: #fff;
    margin-left: 6px;
}

.review-track {
    width: min(1080px, 100%);
    margin: 36px auto 26px;
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.review-track::-webkit-scrollbar {
    display: none;
}

.review-track article {
    flex: 0 0 340px;
    min-height: 220px;
    padding: 26px;
    border-radius: 14px;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .09);
}

.review-track span {
    color: #facc15;
    font-size: 13px;
}

.review-track time {
    float: right;
    color: #64748b;
    font-size: 10px;
    font-weight: 900;
}

.review-track h3 {
    margin: 16px 0 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 950;
}

.review-track p {
    color: #94a3b8;
    min-height: 72px;
    font-size: 12px;
    line-height: 1.75;
}

.review-track b {
    display: block;
    color: #fff;
    font-size: 12px;
}

.review-track small {
    color: #64748b;
    font-size: 10px;
    font-weight: 800;
}

.review-arrow {
    position: absolute;
    top: 54%;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .15);
    display: inline-grid;
    place-items: center;
    transition: background .2s;
}

.review-arrow:hover {
    background: rgba(255, 255, 255, .2);
}

.review-arrow i {
    font-size: 16px;
    line-height: 1;
}

.review-arrow.prev { left: clamp(8px, calc(50% - 620px), 40px); }
.review-arrow.next { right: clamp(8px, calc(50% - 620px), 40px); }

.ghost-btn {
    padding: 13px 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 13px;
    font-weight: 950;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 28px;
}

.section-head.compact {
    align-items: center;
    margin-bottom: 18px;
}

.section-head.compact h2 {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 22px;
}

.section-head.compact i {
    color: var(--brand);
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list article {
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    overflow: hidden;
}

.faq-list button {
    width: 100%;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-weight: 950;
}

.faq-list p {
    max-height: 0;
    margin: 0;
    overflow: hidden;
    padding: 0 24px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
    transition: .25s ease;
}

.faq-list article.is-open {
    background: #fff;
    border-color: var(--brand);
}

.faq-list article.is-open p {
    max-height: 160px;
    padding-bottom: 22px;
}

.faq-list button i {
    transition: transform .25s ease;
    flex: 0 0 auto;
}

.faq-list article.is-open button i {
    transform: rotate(180deg);
}

.faq-cta {
    padding: 34px;
    border-radius: 34px;
    background: var(--dark);
    color: #fff;
}

.faq-cta h3 {
    font-size: 23px;
    font-weight: 950;
    letter-spacing: -.04em;
}

.faq-cta p {
    color: #94a3b8;
    line-height: 1.75;
    margin-bottom: 30px;
}

.faq-cta-primary {
    width: 100%;
    display: block;
    padding: 18px;
    border-radius: 10px;
    background: var(--brand);
    color: var(--ink);
    text-align: center;
    font-size: 15px;
    font-weight: 950;
    margin-bottom: 12px;
}

.faq-cta-primary:hover {
    filter: brightness(1.06);
}

.faq-cta-kakao {
    width: 100%;
    display: block;
    padding: 18px;
    border-radius: 10px;
    background: rgba(255,255,255,.1);
    color: #fff;
    text-align: center;
    font-size: 15px;
    font-weight: 950;
    border: 1px solid rgba(255,255,255,.1);
}

.faq-cta-kakao:hover {
    background: rgba(255,255,255,.16);
}

.footer {
    background: #070d1a;
    color: #fff;
    padding: 82px 0 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .8fr .8fr 1.2fr;
    gap: 72px;
}

.footer h2,
.footer h3 {
    font-weight: 950;
}

.footer h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    letter-spacing: -.04em;
}

.footer h2 i {
    color: var(--brand);
}

.footer-brand > div {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-brand > div i {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-grid;
    place-items: center;
    background: rgba(255, 255, 255, .06);
    color: #94a3b8;
    font-size: 16px;
    line-height: 1;
    transition: color .2s, background .2s;
}

.footer-brand > div i:hover {
    color: var(--brand);
    background: rgba(0, 209, 178, .12);
}

.footer p,
.footer button,
.footer span,
.footer small {
    color: #64748b;
    font-size: 13px;
    line-height: 1.8;
    font-weight: 800;
}

.footer h3 {
    margin-bottom: 28px;
    font-size: 12px;
    letter-spacing: .2em;
}

.footer button {
    display: block;
    margin-bottom: 15px;
    text-align: left;
}

.contact strong {
    display: block;
    font-size: 30px;
    letter-spacing: -.04em;
}

.contact-tel {
    font-size: 28px !important;
    letter-spacing: -.04em;
    color: #fff !important;
    font-weight: 950;
}

.contact p {
    padding: 22px;
    border-radius: 26px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    margin-top: 64px;
    padding-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-bottom div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
}

.footer-bottom p {
    color: #475569;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-bottom small {
    color: #334155;
    font-size: 12px;
}

.kakao {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 17px;
    border-radius: 999px;
    background: #fee500;
    color: #391b1b;
    box-shadow: 0 12px 24px rgba(15, 23, 42, .16);
    font-size: 14px;
    font-weight: 950;
}

/* WEBIS breakpoint policy
   ws-sm: 768px / ws-md: 1024px / ws-lg: 1280px */
@media (max-width: 1023.98px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: inline-grid;
        place-items: center;
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 42px;
    }

    .review-arrow {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .wrap {
        width: min(100% - 28px, 640px);
    }

    .topbar {
        display: none;
    }

    .header-inner {
        min-height: 55px;
    }

    .brand-icon {
        width: 27px;
        height: 27px;
        border-radius: 8px;
        font-size: 12px;
    }

    .brand-icon i {
        font-size: 13px;
    }

    .brand-text {
        font-size: 11px;
    }

    .brand-text span {
        display: block;
        margin-left: 0;
        margin-top: -3px;
    }

    .dark-cta {
        padding: 9px 12px;
        border-radius: 9px;
        font-size: 10px;
    }

    .hero {
        padding: 42px 0 40px;
    }

    .hero h1 {
        font-size: clamp(24px, 7vw, 30px);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .primary-btn,
    .soft-btn {
        width: 100%;
        max-width: 220px;
        justify-content: center;
    }

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

    .hero-cards article {
        min-height: 122px;
    }

    .stats-grid {
        min-height: 120px;
    }

    .stats-grid strong {
        font-size: clamp(20px, 6vw, 28px);
    }

    .stats-grid div {
        padding: 16px 4px;
    }

    .pricing,
    .why,
    .process,
    .portfolio,
    .templates,
    .reviews,
    .faq {
        padding: 56px 0;
    }

    .price-card {
        padding: 30px 26px;
    }

    .portfolio-grid,
    .faq-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .process-grid,
    .benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .compare div {
        grid-template-columns: .8fr 1fr 1fr;
        font-size: 11px;
    }

    .section-head {
        align-items: flex-start;
        margin-bottom: 20px;
    }

    .portfolio-grid {
        gap: 14px;
    }

    .thumb {
        height: 190px;
    }

    .tpl {
        height: 96px;
    }

    .review-arrow {
        display: none;
    }

    .review-track {
        width: 100%;
    }

    .review-track article {
        flex-basis: 290px;
    }

    .faq-cta {
        border-radius: 18px;
        padding: 24px;
    }

    .footer {
        padding-top: 52px;
    }

    .footer-grid {
        gap: 28px;
    }

    .footer-bottom p {
        text-align: left;
    }

    .kakao {
        right: 12px;
        bottom: 12px;
        padding: 10px 12px;
        font-size: 0;
    }

    .kakao i {
        font-size: 16px;
        line-height: 1;
    }
}

.top-button {
    position: fixed;
    right: 22px;
    bottom: 84px;
    z-index: 90;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: var(--dark);
    color: #fff;
    box-shadow: 0 18px 35px rgba(11, 18, 32, .22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.top-button.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.top-button i {
    font-size: 16px;
    line-height: 1;
}

@media (min-width: 768px) and (max-width: 1279.98px) {
    .hero-cards {
        max-width: 740px;
    }

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

/* ── 280px 전용: stats 숫자 축소 ── */
@media (max-width: 299.98px) {
    .stats-grid strong {
        font-size: 22px;
    }
    .stats-grid span {
        font-size: 10px;
    }
}

/* ── 후기 카드 아바타 ── */
.review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--brand);
    color: var(--ink);
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 950;
    flex: 0 0 auto;
}

.review-track article {
    display: flex;
    flex-direction: column;
}

.review-track h3 {
    margin: 14px 0 8px;
}

.review-author b {
    display: block;
    color: #fff;
    font-size: 13px;
}

.review-author small {
    color: #64748b;
    font-size: 11px;
    font-weight: 800;
}

/* ── 후기 전체보기 버튼 ── */
.reviews-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-size: 14px;
    font-weight: 950;
    border: 1px solid rgba(255,255,255,.15);
    margin-top: 10px;
    transition: background .2s;
}

.reviews-all-btn:hover {
    background: rgba(255,255,255,.18);
}

.reviews-all-btn i {
    font-size: 14px;
    line-height: 1;
    flex: 0 0 auto;
}

/* ── 가격카드 내부 약정 노트 ── */
.card-note {
    text-align: center;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
    margin-top: 10px;
    margin-bottom: 0;
}

/* ── 가격카드 note 아이콘 ── */
.note i {
    font-size: 13px;
    line-height: 1;
    color: var(--brand);
    flex: 0 0 auto;
}

/* ── 헤더 scrolled 상태 ── */
.site-header.is-scrolled {
    background: rgba(255,255,255,.97);
    box-shadow: 0 2px 16px rgba(15,23,42,.08);
}

/* ── soft-btn hover ── */
.soft-btn:hover {
    background: #e2e8f0;
}


/* ── pricing note (하단) ── */
.pricing .note {
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
}

/* ── 카카오 버튼 hover ── */
.kakao:hover {
    filter: brightness(.94);
}

/* ── 모바일 메뉴 delay 적용 ── */
.mobile-menu.is-open .mobile-nav button:nth-child(1) { transition-delay: .04s; }
.mobile-menu.is-open .mobile-nav button:nth-child(2) { transition-delay: .08s; }
.mobile-menu.is-open .mobile-nav button:nth-child(3) { transition-delay: .12s; }
.mobile-menu.is-open .mobile-nav button:nth-child(4) { transition-delay: .16s; }
.mobile-menu.is-open .mobile-nav button:nth-child(5) { transition-delay: .20s; }
.mobile-menu.is-open .mobile-nav button:nth-child(6) { transition-delay: .24s; }
.mobile-menu.is-open .mobile-nav button:nth-child(7) { transition-delay: .28s; }

/* ── 푸터 패밀리/관련사이트 셀렉트박스 (실동작) ── */
.footer-family {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.foot-select {
    appearance: none;
    -webkit-appearance: none;
    min-width: 180px;
    padding: 12px 38px 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    background-color: rgba(255, 255, 255, .03);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: border-color .2s, color .2s, background-color .2s;
}

.foot-select:hover {
    border-color: rgba(0, 209, 178, .5);
    color: #fff;
    background-color: rgba(255, 255, 255, .06);
}

.foot-select:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}

.foot-select option {
    color: #1f2937;
    background: #fff;
}

/* ── 진입 레이어 팝업 (PC/모바일 공용 반응형) ── */
.popup-layer {
    position: fixed;
    inset: 0;
    z-index: 150;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.popup-layer[hidden] {
    display: none;
}

.popup-dim {
    position: absolute;
    inset: 0;
    background: rgba(8, 15, 30, .58);
    opacity: 0;
    transition: opacity .26s ease;
}

.popup-layer.is-open .popup-dim {
    opacity: 1;
}

.popup-box {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 380px;
    max-height: calc(100dvh - 32px);
    overflow-y: auto;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 30px 70px -22px rgba(8, 15, 30, .6);
    transform: translateY(18px) scale(.98);
    opacity: 0;
    transition: transform .28s ease, opacity .28s ease;
}

.popup-layer.is-open .popup-box {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.popup-x {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 2;
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .85);
    color: #0b1220;
    font-size: 17px;
    box-shadow: 0 6px 16px -8px rgba(0, 0, 0, .4);
    transition: background .15s, color .15s;
}

.popup-x:hover {
    background: #fff;
    color: var(--brand);
}

.popup-visual {
    position: relative;
    padding: 30px 26px 26px;
    border-radius: 22px 22px 0 0;
    background: linear-gradient(135deg, var(--dark) 0%, #0f2a3a 100%);
    color: #fff;
}

.popup-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    padding: 6px 13px;
    border-radius: 999px;
    background: rgba(0, 209, 178, .16);
    color: var(--brand);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .02em;
}

.popup-kicker {
    margin: 0;
    color: var(--brand);
    font-size: 14px;
    font-weight: 900;
}

.popup-title {
    margin: 4px 0 0;
    font-size: 26px;
    line-height: 1.28;
    letter-spacing: -.04em;
    font-weight: 950;
}

.popup-body {
    padding: 22px 26px 8px;
}

.popup-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
}

.popup-meta {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.popup-meta li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 800;
    color: var(--ink2);
}

.popup-meta li i {
    color: var(--brand);
    font-size: 15px;
    flex: 0 0 auto;
}

.popup-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    width: 100%;
    min-height: 50px;
    border-radius: 14px;
    background: var(--ink);
    color: #fff;
    font-size: 15px;
    font-weight: 950;
    box-shadow: 0 14px 30px -14px rgba(11, 18, 36, .6);
    transition: background .15s, transform .15s;
}

.popup-cta:hover {
    background: var(--brand);
    color: var(--ink);
    transform: translateY(-2px);
}

.popup-cta i {
    font-size: 14px;
}

.popup-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 26px 22px;
}

.popup-check {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    cursor: pointer;
}

.popup-check input {
    width: 15px;
    height: 15px;
    accent-color: var(--brand);
    cursor: pointer;
}

.popup-close-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    font-size: 12px;
    font-weight: 900;
    flex: 0 0 auto;
}

.popup-close-btn:hover {
    background: #e2e8f0;
}

.popup-close-btn i {
    font-size: 11px;
}

@media (max-width: 479.98px) {
    .foot-select {
        width: 100%;
        min-width: 0;
    }

    .popup-title {
        font-size: 22px;
    }

    .popup-visual {
        padding: 26px 22px 22px;
    }

    .popup-body {
        padding: 20px 22px 6px;
    }

    .popup-foot {
        padding: 14px 22px 20px;
    }
}
