* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #4A90E2;
    --primary-dark: #2c6fc4;
    --primary-light: #e8f2fd;
    --dark: #1a1a2e;
    --gray: #666;
    --light-gray: #f5f7fa;
    --white: #fff;
}

body {
    font-family: 'Apple SD Gothic Neo', 'Malgun Gothic', 'Noto Sans KR', sans-serif;
    color: var(--dark);
    line-height: 1.6;
}

/* ── HEADER ── */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: transparent;
    transition: background .35s, box-shadow .35s;
}

header.scrolled {
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0,0,0,.08);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo { display: flex; align-items: center; text-decoration: none; }

.logo-sub { fill: #fff; transition: fill .35s; }
.logo-web { fill: rgba(173,216,255,.9); transition: fill .35s; }
.logo-dot { fill: rgba(255,255,255,.7); transition: fill .35s; }

header.scrolled .logo-sub { fill: #333333; }
header.scrolled .logo-web { fill: #4A90E2; }
header.scrolled .logo-dot { fill: #4A90E2; }

nav { display: flex; align-items: center; gap: 40px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,.85);
    font-size: 15px;
    font-weight: 500;
    transition: color .2s;
}

header.scrolled .nav-links a { color: var(--gray); }
.nav-links a:hover { color: #fff; }
header.scrolled .nav-links a:hover { color: var(--primary); }

.btn-consult {
    background: rgba(255,255,255,.18);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.5);
    padding: 11px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all .25s;
    backdrop-filter: blur(4px);
}

header.scrolled .btn-consult {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(74,144,226,.35);
}

.btn-consult:hover {
    background: rgba(255,255,255,.3);
    border-color: #fff;
    transform: translateY(-1px);
}

header.scrolled .btn-consult:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: background .35s; }
header.scrolled .hamburger span { background: var(--dark); }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: linear-gradient(150deg, #1a3a5c 0%, #1e5090 35%, #2d7dd2 70%, #4A90E2 100%);
    background-size: 250% 250%;
    animation: heroGradientShift 14s ease infinite;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Radial sunburst lines — white, slowly spinning */
.hero-burst {
    position: absolute;
    inset: 0;
    background: repeating-conic-gradient(
        from 0deg at 50% 46%,
        rgba(255,255,255,.045) 0deg 1.8deg,
        transparent 1.8deg 9deg
    );
    pointer-events: none;
    z-index: 0;
    animation: burstSpin 90s linear infinite;
    transform-origin: 50% 46%;
}

/* Main content — vertically centered in flex column */
.hero-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 140px 24px 60px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,.3);
    padding: 8px 22px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 36px;
    letter-spacing: .3px;
    backdrop-filter: blur(4px);
}

.badge-dot {
    width: 8px; height: 8px;
    background: #7ee8a2;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.3); }
}

/* Big headline */
.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 28px;
}

.title-top {
    font-size: 64px;
    font-weight: 300;
    color: rgba(255,255,255,.75);
    line-height: 1.15;
    letter-spacing: -2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.title-logo {
    height: 1.35em;
    width: auto;
    flex-shrink: 0;
    display: block;
}

.title-bottom {
    font-size: 96px;
    font-weight: 900;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -3px;
}

.title-bottom em {
    font-style: normal;
    color: #38bdf8;
    font-size: 1.15em;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,.8);
    line-height: 1.8;
    margin-bottom: 48px;
    max-width: 540px;
}

.hero-buttons { display: flex; gap: 14px; align-items: center; justify-content: center; flex-wrap: wrap; }

.btn-primary {
    background: #1a3a5c;
    color: #fff;
    padding: 18px 44px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(0,0,0,.35);
    transition: all .25s;
}

.btn-primary:hover {
    background: #142d48;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(0,0,0,.45);
}

.btn-ghost-dark {
    color: rgba(255,255,255,.85);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color .2s;
}

.btn-ghost-dark:hover { color: #fff; }

/* Bottom 3-column key point strip — dark glass */
.hero-strip {
    position: relative;
    z-index: 1;
    background: rgba(0,0,0,.18);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,.1);
}

.hero-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: stretch;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 40px;
    flex: 1;
}

.strip-icon { font-size: 26px; flex-shrink: 0; }

.strip-text { display: flex; flex-direction: column; gap: 3px; }

.strip-text strong { font-size: 14px; font-weight: 700; color: #fff; }

.strip-text span { font-size: 12px; color: rgba(255,255,255,.55); }

.strip-divider {
    width: 1px;
    background: rgba(255,255,255,.12);
    margin: 16px 0;
    flex-shrink: 0;
}

/* ── SECTION COMMON ── */
section { padding: 110px 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-title {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.section-desc {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.8;
}


/* ── PAIN POINT ── */
.pain-point { background: #111827; }

.pain-point .section-badge { background: rgba(74,144,226,.2); }

.pain-point .section-title { color: #fff; }

.pain-point .section-desc { color: #9ca3af; }

.pain-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.pain-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 36px 30px;
    transition: border-color .2s, background .2s;
}

.pain-card:hover {
    background: rgba(255,255,255,.09);
    border-color: rgba(74,144,226,.4);
}

.pain-icon { font-size: 40px; margin-bottom: 18px; }

.pain-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.pain-card p { font-size: 14px; color: #9ca3af; line-height: 1.75; }

.pain-quote {
    margin-top: 60px;
    border-left: 4px solid var(--primary);
    padding-left: 28px;
}

.pain-quote blockquote {
    font-size: 20px;
    color: #e5e7eb;
    font-style: italic;
    line-height: 1.7;
}

.pain-quote cite {
    display: block;
    margin-top: 14px;
    font-size: 14px;
    color: #6b7280;
    font-style: normal;
}

/* ── SOLUTION ── */
.solution { background: var(--light-gray); }

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 64px;
}

.solution-card {
    background: #fff;
    border-radius: 22px;
    padding: 44px 32px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
    position: relative;
    transition: transform .2s, box-shadow .2s;
}

.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(74,144,226,.15);
}

.step-num {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 13px;
}

.solution-icon { font-size: 52px; margin-bottom: 22px; }

.solution-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; }

.solution-card p { font-size: 14px; color: var(--gray); line-height: 1.75; }

.solution-card .tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    margin-top: 16px;
}

/* ── SERVICE INFO ── */
.service-info {
    background: linear-gradient(140deg, #0d3d24, #1a3d2d, #142e22, #0f4a2e, #1a3d2d);
    background-size: 300% 300%;
    position: relative;
    overflow: hidden;
    animation: si-bg-flow 12s ease-in-out infinite;
}

@keyframes si-bg-flow {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.service-info::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(74,222,128,.12) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
    animation: si-grid-drift 10s linear infinite;
}

@keyframes si-grid-drift {
    0%   { background-position: 0 0; }
    100% { background-position: 32px 32px; }
}

.service-info .container {
    position: relative;
    z-index: 1;
}

.service-info-head {
    text-align: center;
    margin-bottom: 48px;
}

.service-info-head .section-badge {
    background: rgba(34,197,94,.15);
    color: #4ade80;
}

.service-info-head .section-title {
    font-size: 36px;
    color: #fff;
}

.service-info-head p {
    font-size: 16px;
    color: rgba(255,255,255,.65);
    line-height: 1.85;
    max-width: 580px;
    margin: 0 auto;
}

.auto-flow {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 20px 24px;
    max-width: 860px;
    margin: 0 auto 20px;
}

.auto-step { flex: 1; text-align: center; }

.auto-step-icon { font-size: 22px; margin-bottom: 6px; }

.auto-step-text strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.auto-step-text span { font-size: 10px; color: rgba(255,255,255,.45); }

.auto-arrow {
    color: #4ade80;
    font-size: 16px;
    font-weight: 900;
    flex-shrink: 0;
    animation: si-arrow 1.4s ease-in-out infinite;
}

@keyframes si-arrow {
    0%, 100% { transform: translateX(0); opacity: .8; }
    50%       { transform: translateX(5px); opacity: 1; }
}

.auto-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 860px;
    margin: 0 auto;
}

.auto-feat {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    color: rgba(255,255,255,.75);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.auto-feat-check {
    width: 18px; height: 18px; min-width: 18px;
    background: rgba(34,197,94,.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #4ade80;
    font-weight: 900;
    font-size: 10px;
    flex-shrink: 0;
}

.service-visual {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 0 60px rgba(34,197,94,.1);
    max-width: 860px;
    margin: 0 auto 32px;
}

.sheet-mockup {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
}

.sheet-header {
    background: #188038;
    color: #fff;
    padding: 12px 18px;
    font-size: 13px;
    font-weight: 700;
    display: flex; align-items: center; gap: 8px;
}

.sheet-header svg { width: 18px; height: 18px; }

.sheet-table { width: 100%; border-collapse: collapse; font-size: 12px; }

.sheet-table th {
    background: #e6f4ea;
    color: #1e7e34;
    padding: 10px 14px;
    text-align: left;
    font-weight: 700;
    font-size: 11px;
}

.sheet-table td {
    padding: 10px 14px;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
}

.sheet-table tr:last-child td { border-bottom: none; }

.new-badge {
    background: #e6f4ea;
    color: #188038;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
}

.notification-bar {
    margin-top: 16px;
    background: rgba(34,197,94,.12);
    border: 1px solid rgba(34,197,94,.25);
    border-radius: 10px;
    padding: 14px 18px;
    display: flex; align-items: center; gap: 10px;
    font-size: 13px;
    color: #4ade80;
    font-weight: 600;
}

/* ── WHY HOMEPAGE ── */
.why-section { background: #fff; }

.why-compare {
    display: flex;
    align-items: stretch;
    gap: 32px;
    margin-top: 64px;
    margin-bottom: 64px;
}

.why-col { flex: 1; display: flex; flex-direction: column; gap: 20px; }

.why-vs {
    font-size: 20px;
    font-weight: 900;
    color: #9ca3af;
    align-self: center;
    padding: 0 8px;
    flex-shrink: 0;
}

.why-col-label {
    font-size: 14px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    text-align: center;
}

.why-label-bad { background: #fff1f2; color: #e11d48; }
.why-label-good { background: #f0fdf4; color: #16a34a; }

.naver-mockup {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    flex: 1;
}

.naver-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px 12px;
    border-bottom: 1px solid #f3f4f6;
}

.naver-place-icon {
    width: 36px; height: 36px;
    background: #03c75a;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.naver-place-name { font-size: 15px; font-weight: 700; }
.naver-place-cat { font-size: 12px; color: var(--gray); margin-top: 2px; }

.naver-info-rows { padding: 12px 18px; display: flex; flex-direction: column; gap: 8px; }

.naver-info-row { display: flex; align-items: center; gap: 8px; font-size: 13px; }

.row-icon { font-size: 14px; flex-shrink: 0; }
.row-text { color: #374151; }

.blurred-row .row-text {
    background: #e5e7eb;
    color: transparent;
    border-radius: 4px;
    padding: 2px 4px;
    user-select: none;
}

.naver-escape-badge {
    margin: 8px 18px 16px;
    background: #fff1f2;
    color: #e11d48;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
}

.website-mockup {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(74,144,226,.12);
    flex: 1;
}

.mockup-header-bar {
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mockup-dots { display: flex; gap: 4px; }
.mockup-dots span { width: 8px; height: 8px; border-radius: 50%; background: #d1d5db; }

.mockup-url {
    flex: 1;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 3px 10px;
    font-size: 11px;
    color: #6b7280;
    text-align: center;
}

.mockup-hero-block {
    background: linear-gradient(135deg, #1e5090, #4A90E2);
    padding: 24px 20px;
    text-align: center;
}

.mockup-hero-title { font-size: 16px; font-weight: 900; color: #fff; }
.mockup-hero-sub { font-size: 12px; color: rgba(255,255,255,.7); margin: 4px 0 12px; }

.mockup-hero-btn {
    display: inline-block;
    background: #fff;
    color: #1e5090;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px;
}

.mockup-info-blocks { display: flex; gap: 6px; padding: 14px 16px; flex-wrap: wrap; }

.mockup-info-chip {
    background: var(--primary-light);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
}

.mockup-features {
    padding: 10px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mockup-feat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #374151;
}

.mockup-feat-check {
    width: 16px; height: 16px;
    background: #d1fae5;
    color: #059669;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 9px;
    font-weight: 900;
    flex-shrink: 0;
}

.why-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.why-list li { font-size: 14px; padding-left: 20px; position: relative; }
.why-list-bad li::before { content: '✗'; position: absolute; left: 0; color: #e11d48; font-weight: 700; }
.why-list-good li::before { content: '✓'; position: absolute; left: 0; color: #16a34a; font-weight: 700; }

.why-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: 20px;
    padding: 24px 40px;
}

.why-stat { flex: 1; text-align: center; }

.why-stat-num { font-size: 52px; font-weight: 900; color: var(--primary); line-height: 1; }
.why-stat-num span { font-size: 28px; font-weight: 700; }
.why-stat-label { font-size: 14px; color: var(--gray); line-height: 1.6; margin-top: 8px; }
.why-stat-divider { width: 1px; background: #e5e7eb; flex-shrink: 0; margin: 0 20px; align-self: stretch; }

.why-stat-lg .why-stat-num { font-size: 76px; }
.why-stat-lg .why-stat-num span { font-size: 40px; }

.why-stat-2x .why-stat-num { font-size: 104px; }
.why-stat-2x .why-stat-num span { font-size: 56px; }


/* ── TEMPLATES ── */
.templates-section { background: var(--light-gray); }

.tpl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.tpl-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.07);
    display: flex;
    flex-direction: column;
    transition: transform .2s, box-shadow .2s;
}

.tpl-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,.11);
}

.tpl-card-header { padding: 18px 18px 0; text-align: center; }

.tpl-card-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 100px;
}

.tpl-badge-navy { background: #eff6ff; color: #1d4ed8; }
.tpl-badge-orange { background: #fff7ed; color: #c2410c; }
.tpl-badge-blue { background: #ecfdf5; color: #059669; }

.tpl-card-window {
    margin: 12px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tpl-win-bar {
    background: #f3f4f6;
    display: flex; align-items: center; gap: 6px;
    padding: 7px 10px;
    flex-shrink: 0;
}

.tpl-win-warm { background: #fef3c7; }

.tpl-win-dots { display: flex; gap: 4px; }
.tpl-win-dots span { width: 7px; height: 7px; border-radius: 50%; background: #d1d5db; }

.tpl-win-url {
    flex: 1;
    text-align: center;
    font-size: 10px;
    color: #9ca3af;
}

.tpl-slides-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.tpl-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .45s ease, transform .45s ease;
    pointer-events: none;
}

.tpl-slide-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.tpl-card-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 7px;
    background: rgba(0,0,0,.03);
    flex-shrink: 0;
}

.tpl-cdot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #d1d5db;
    transition: all .3s;
    display: inline-block;
}

.tpl-cdot-active { width: 16px !important; border-radius: 3px !important; }

.tpl-card-desc {
    padding: 12px 18px 18px;
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
    text-align: center;
}

.tpl-mini-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.tpl-mini-logo { font-size: 11px; font-weight: 900; }

.tpl-mini-links {
    display: flex;
    gap: 8px;
    font-size: 9px;
    color: rgba(255,255,255,.7);
}

.tpl-mini-hero { text-align: center; }

.tpl-mini-btn {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: default;
}

.tpl-step-list { display: flex; flex-direction: column; gap: 9px; }
.tpl-step-item { display: flex; align-items: flex-start; gap: 8px; }
.tpl-step-circle {
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 9px; font-weight: 900; color: #fff;
    flex-shrink: 0;
}

.tpl-bar-list { display: flex; flex-direction: column; gap: 10px; }
.tpl-bar-row { display: flex; align-items: center; gap: 6px; }
.tpl-prog-track {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,.1);
    border-radius: 2px;
    overflow: hidden;
}
.tpl-prog-fill { height: 100%; border-radius: 2px; }

.tpl-prog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.tpl-prog-item {
    border-radius: 8px;
    padding: 7px 8px;
    display: flex; align-items: center; gap: 5px;
    font-size: 10px; font-weight: 700; color: #92400e;
}

.tpl-course-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
.tpl-course-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 6px 8px;
    display: flex; align-items: center; gap: 5px;
    font-size: 10px;
}
.tpl-course-item strong { color: #1e40af; display: block; font-size: 9px; }
.tpl-course-item small { color: #9ca3af; font-size: 8px; }

.tpl-sch-list { display: flex; flex-direction: column; gap: 6px; }
.tpl-sch-row { display: flex; align-items: center; gap: 6px; font-size: 10px; color: #374151; }
.tpl-sch-tag {
    padding: 2px 7px;
    border-radius: 4px;
    font-size: 9px; font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.templates-cta { margin-top: 48px; text-align: center; }
.templates-cta p { font-size: 16px; color: var(--gray); margin-bottom: 24px; }


/* ── PRICING ── */
.pricing { background: var(--primary-light); }

.plan-discount-badge {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    letter-spacing: 0;
    text-transform: none;
}

.plan-original-note {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #aaa;
    text-decoration: line-through;
    letter-spacing: 0;
    margin-bottom: 4px;
}

.pricing-header { text-align: center; margin-bottom: 20px; }

.pricing-header .section-title { margin-bottom: 10px; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 820px;
    margin: 0 auto;
}

.pricing-card {
    background: #fff;
    border-radius: 26px;
    padding: 48px 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,.08);
    position: relative;
}

.pricing-card.featured {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 16px 48px rgba(74,144,226,.45);
}

.popular-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: #ff5722;
    color: #fff;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.plan-type {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pricing-card.featured .plan-type { color: rgba(255,255,255,.7); }

.plan-price {
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2px;
    letter-spacing: -2px;
}

.plan-price sup {
    font-size: 22px;
    font-weight: 700;
    vertical-align: super;
    letter-spacing: 0;
}

.plan-period {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 6px;
}

.pricing-card.featured .plan-period { color: rgba(255,255,255,.75); }

.plan-compare {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 32px;
}

.pricing-card.featured .plan-compare { color: rgba(255,255,255,.6); }

.plan-divider {
    border: none;
    border-top: 1px solid #f0f0f0;
    margin: 0 0 28px;
}

.pricing-card.featured .plan-divider { border-color: rgba(255,255,255,.2); }

.plan-features {
    list-style: none;
    display: flex; flex-direction: column; gap: 13px;
    margin-bottom: 36px;
}

.plan-features li {
    display: flex; align-items: flex-start; gap: 10px; font-size: 15px;
}

.plan-check { color: var(--primary); font-weight: 900; flex-shrink: 0; }

.pricing-card.featured .plan-check { color: #fff; }

.btn-plan {
    display: block;
    text-align: center;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
}

.btn-plan-outline { border: 2px solid var(--primary); color: var(--primary); }

.btn-plan-outline:hover { background: var(--primary); color: #fff; }

.btn-plan-white { background: #fff; color: var(--primary); }

.btn-plan-white:hover { background: rgba(255,255,255,.9); transform: translateY(-1px); }

.pricing-note {
    text-align: center;
    margin-bottom: 36px;
    font-size: 14px;
    color: #888;
}

.pricing-cta {
    margin-top: 48px;
    text-align: center;
}

/* ── FINAL CTA ── */
.final-cta {
    background: linear-gradient(155deg, #0f172a 0%, #1a2f5a 55%, #0f2744 100%);
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.final-cta-burst {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 900px; height: 900px;
    background: radial-gradient(ellipse at center, rgba(74,144,226,.12) 0%, transparent 70%);
    pointer-events: none;
}

.contact-badge {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.8);
    border: 1px solid rgba(255,255,255,.18);
}

.contact-title {
    font-size: 44px;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 16px;
}

.contact-highlight { color: #FEE500; }

.contact-desc {
    font-size: 17px;
    color: rgba(255,255,255,.6);
    line-height: 1.7;
    margin-bottom: 48px;
}

.contact-card {
    background: #fff;
    border-radius: 24px;
    padding: 44px 48px 36px;
    max-width: 500px;
    margin: 0 auto 28px;
    box-shadow: 0 24px 64px rgba(0,0,0,.4);
}

.contact-response-tag {
    display: inline-block;
    background: #fffbeb;
    color: #92400e;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid #fde68a;
    margin-bottom: 24px;
}

.btn-kakao-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: #FEE500;
    color: #3A1D1D;
    padding: 20px 32px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    transition: all .2s;
    margin-bottom: 14px;
    box-shadow: 0 4px 20px rgba(254,229,0,.35);
}

.btn-kakao-hero:hover {
    background: #f5d600;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(254,229,0,.5);
}

.contact-card-hours {
    font-size: 13px;
    color: #999;
    margin-bottom: 24px;
}

.contact-card-sep {
    height: 1px;
    background: #f1f5f9;
    margin-bottom: 20px;
}

.contact-insta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 14px;
    color: #aaa;
}

.contact-insta-link {
    color: #555;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s;
}
.contact-insta-link:hover { color: #e1306c; }

.contact-trust {
    font-size: 13px;
    color: rgba(255,255,255,.35);
    letter-spacing: .5px;
}

/* ── FOOTER ── */
footer {
    background: #111827;
    color: #6b7280;
    padding: 40px 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo { opacity: .55; }

.footer-text { font-size: 13px; }

/* ── MOBILE NAV ── */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255,255,255,.97);
    padding: 88px 24px 28px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    z-index: 998;
    flex-direction: column;
    gap: 20px;
    backdrop-filter: blur(12px);
}

.mobile-nav a {
    text-decoration: none;
    color: var(--dark);
    font-size: 16px;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav.open { display: flex; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .nav-links, nav > .btn-consult { display: none; }
    .hamburger { display: flex; }

    .hero-inner { padding: 120px 24px 48px; }

    .title-top { font-size: 40px; letter-spacing: -1px; }
    .title-bottom { font-size: 56px; letter-spacing: -1.5px; }
    .hero-subtitle { font-size: 16px; margin-bottom: 36px; }

    .hero-watermark { display: none; }

    .hero-strip-inner { flex-direction: column; padding: 0 24px; }
    .strip-item { padding: 18px 0; }
    .strip-divider { width: 100%; height: 1px; margin: 0; }

    .pain-cards { grid-template-columns: 1fr; }
    .solution-grid { grid-template-columns: 1fr; }
    .service-info-grid { grid-template-columns: 1fr; gap: 40px; }
    .auto-features { grid-template-columns: 1fr; }
    .auto-flow { flex-wrap: wrap; gap: 8px; }
    .auto-arrow { display: none; }
    .pricing-grid { grid-template-columns: 1fr; }

    .service-info-head .section-title { font-size: 26px; }
    .section-title { font-size: 28px; }
    .contact-title { font-size: 28px; }
    .contact-card { padding: 36px 28px 28px; }
    .btn-kakao-hero { font-size: 16px; padding: 18px 24px; }
    .footer-inner { flex-direction: column; text-align: center; }

    section { padding: 80px 0; }

    /* why-section */
    .why-compare { flex-direction: column; gap: 24px; }
    .why-vs { align-self: center; padding: 8px 0; }
    .why-stats { flex-direction: column; gap: 24px; padding: 32px 20px; }
    .why-stat-divider { width: 100%; height: 1px; margin: 0; }

    /* templates */
    .tpl-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 480px) {
    .title-top { font-size: 26px; letter-spacing: -0.5px; }
    .title-bottom { font-size: 30px; letter-spacing: -1px; }
    .title-bottom em { font-size: 1.1em; }
    .hero-subtitle { font-size: 14px; }

    .service-info-head .section-title { font-size: 23px; }
    .section-title { font-size: 22px; }
    .contact-title { font-size: 22px; }
    .contact-card { padding: 28px 20px 24px; }
    .btn-kakao-hero { font-size: 15px; padding: 16px 20px; gap: 8px; }
}

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */

/* ── Hero: gradient shift ── */
@keyframes heroGradientShift {
    0%   { background-position: 0%   50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0%   50%; }
}

/* ── Hero: sunburst slow spin ── */
@keyframes burstSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}


/* ── Sheet: typing cursor ── */
.typing-cursor::after {
    content: '|';
    color: #333;
    animation: blink .65s step-end infinite;
    margin-left: 1px;
}

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