/* ================================================
   homepage.css — 홈페이지 제작 서비스 소개 (hpm- 접두어)
   토큰(색·그림자·반지름·폰트)은 index.css 의 :root 를 그대로 쓴다.
   ================================================ */

.hpm-body { background: #fff; color: var(--color-gray-800); }
.hpm-container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.hpm-section { padding: 96px 0; }
.hpm-section__head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.hpm-section__head h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; letter-spacing: -.03em; line-height: 1.25; color: var(--color-gray-900); }
.hpm-section__head p { margin-top: 14px; font-size: 17px; color: var(--color-gray-500); line-height: 1.7; }
.hpm-kicker {
	display: inline-flex; align-items: center; gap: 8px;
	margin-bottom: 14px; padding: 6px 14px; border-radius: var(--radius-full);
	font-size: 13px; font-weight: 700; letter-spacing: .02em;
	color: var(--color-primary); background: var(--color-primary-bg);
}
.hpm-kicker--light { color: #c7d2fe; background: rgba(255,255,255,.1); }

/* ── 버튼 ─────────────────────────────────────────── */
.hpm-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 9px;
	padding: 15px 26px; border-radius: 14px; border: 1px solid transparent;
	font-size: 16px; font-weight: 700; line-height: 1; cursor: pointer;
	transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
	font-family: inherit;
}
.hpm-btn--primary {
	color: #fff;
	background: linear-gradient(135deg, var(--color-primary) 0%, #6d5cf6 60%, var(--color-accent) 160%);
	box-shadow: 0 12px 28px -10px rgba(79,70,229,.55);
}
.hpm-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(79,70,229,.6); }
.hpm-btn--ghost { color: var(--color-gray-800); background: #fff; border-color: var(--color-gray-200); }
.hpm-btn--ghost:hover { border-color: var(--color-gray-300); background: var(--color-gray-50); transform: translateY(-2px); }
.hpm-btn--block { width: 100%; }
.hpm-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* ── 진입 애니메이션 ───────────────────────────────── */
.hpm-reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s cubic-bezier(.22,.61,.36,1); }
.hpm-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .hpm-reveal { opacity: 1; transform: none; transition: none; } }

/* ── HERO ─────────────────────────────────────────── */
.hpm-hero {
	position: relative; overflow: hidden;
	padding: calc(74px + 72px) 0 84px;
	background:
		radial-gradient(900px 480px at 8% -10%, rgba(99,102,241,.16), transparent 60%),
		radial-gradient(800px 420px at 100% 0%, rgba(6,182,212,.14), transparent 60%),
		linear-gradient(180deg, #fbfbff 0%, #ffffff 100%);
}
.hpm-hero__glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; pointer-events: none; }
.hpm-hero__glow--a { width: 520px; height: 520px; left: -160px; top: -120px; background: radial-gradient(circle, rgba(129,140,248,.45), transparent 65%); }
.hpm-hero__glow--b { width: 560px; height: 560px; right: -200px; bottom: -220px; background: radial-gradient(circle, rgba(34,211,238,.35), transparent 65%); }
.hpm-hero__inner { position: relative; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr); gap: 56px; align-items: center; }
.hpm-eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 7px 14px; border-radius: var(--radius-full);
	font-size: 13px; font-weight: 700; color: var(--color-primary-dark);
	background: #fff; border: 1px solid rgba(79,70,229,.18); box-shadow: var(--shadow-sm);
}
.hpm-hero__title { margin-top: 22px; font-size: clamp(36px, 4.6vw, 58px); font-weight: 900; letter-spacing: -.035em; line-height: 1.12; color: var(--color-gray-900); }
.hpm-hero__title em {
	font-style: normal;
	background: linear-gradient(90deg, var(--color-primary), #7c3aed 55%, var(--color-accent));
	-webkit-background-clip: text; background-clip: text; color: transparent;
}
.hpm-hero__lead { margin-top: 22px; font-size: 18px; line-height: 1.75; color: var(--color-gray-600); max-width: 540px; }
.hpm-hero__lead strong { color: var(--color-gray-900); font-weight: 800; }
.hpm-hero__points { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 10px; }
.hpm-hero__points li { display: flex; align-items: center; gap: 10px; font-size: 15.5px; font-weight: 600; color: var(--color-gray-700); }
.hpm-hero__points i { color: var(--color-success); font-size: 17px; }
.hpm-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hpm-hero__note { margin-top: 16px; font-size: 13.5px; color: var(--color-gray-500); }

/* 시안 목업 */
.hpm-hero__art { position: relative; min-height: 460px; }
.hpm-browser {
	position: relative; z-index: 1;
	border-radius: 18px; background: #fff; overflow: hidden;
	border: 1px solid rgba(15,23,42,.08);
	box-shadow: 0 30px 60px -24px rgba(15,23,42,.35), 0 8px 24px -12px rgba(79,70,229,.25);
	transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
	transform-origin: 60% 50%;
}
.hpm-browser__bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: #f1f5f9; border-bottom: 1px solid #e2e8f0; }
.hpm-browser__bar > span { width: 10px; height: 10px; border-radius: 50%; background: #cbd5e1; }
.hpm-browser__bar > span:nth-child(1) { background: #fca5a5; }
.hpm-browser__bar > span:nth-child(2) { background: #fcd34d; }
.hpm-browser__bar > span:nth-child(3) { background: #86efac; }
.hpm-browser__url { flex: 1; margin-left: 10px; padding: 5px 12px; border-radius: 8px; background: #fff; font-size: 11.5px; color: #64748b; display: flex; align-items: center; gap: 6px; }
.hpm-site { padding: 0 0 16px; }
.hpm-site__nav { display: flex; align-items: center; justify-content: space-between; padding: 12px 18px; border-bottom: 1px solid #f1f5f9; }
.hpm-site__logo { font-weight: 800; font-size: 13.5px; color: #0f766e; display: flex; align-items: center; gap: 7px; }
.hpm-site__menu { display: flex; gap: 14px; font-size: 11.5px; color: #64748b; font-weight: 600; }
.hpm-site__menu .is-on { color: #0f766e; }
.hpm-site__hero {
	display: grid; grid-template-columns: 1fr 120px; gap: 14px; align-items: center;
	margin: 14px 18px 0; padding: 18px 20px; border-radius: 14px;
	background: linear-gradient(135deg, #ecfeff, #f0fdfa 60%, #ffffff); border: 1px solid #ccfbf1;
}
.hpm-site__kicker { font-size: 10.5px; font-weight: 700; color: #0d9488; letter-spacing: .04em; }
.hpm-site__h { margin-top: 6px; font-size: 19px; font-weight: 900; line-height: 1.25; color: #134e4a; letter-spacing: -.02em; }
.hpm-site__btn { display: inline-block; margin-top: 12px; padding: 7px 14px; border-radius: 8px; background: #0f766e; color: #fff; font-size: 11.5px; font-weight: 700; }
.hpm-site__photo { height: 96px; border-radius: 12px; background: linear-gradient(135deg, #99f6e4, #5eead4); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 34px; }
.hpm-site__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 14px 18px 0; }
.hpm-site__card { padding: 12px; border-radius: 12px; border: 1px solid #f1f5f9; background: #fff; box-shadow: var(--shadow-sm); display: grid; gap: 4px; }
.hpm-site__card i { font-size: 16px; color: var(--color-primary); }
.hpm-site__card b { font-size: 12.5px; color: #0f172a; }
.hpm-site__card small { font-size: 10.5px; color: #94a3b8; }

.hpm-phone {
	position: absolute; z-index: 2; right: -14px; bottom: -34px;
	width: 176px; height: 344px; border-radius: 30px; padding: 10px;
	background: #0f172a; box-shadow: 0 30px 60px -20px rgba(15,23,42,.55);
	animation: hpmFloat 6s ease-in-out infinite;
}
.hpm-phone__notch { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 64px; height: 18px; border-radius: 0 0 12px 12px; background: #0f172a; z-index: 3; }
.hpm-phone__screen { height: 100%; border-radius: 22px; background: #fff; overflow: hidden; padding: 26px 10px 10px; display: grid; align-content: start; gap: 8px; }
.hpm-phone__head { font-size: 11px; font-weight: 800; color: #0f766e; display: flex; align-items: center; gap: 6px; }
.hpm-phone__hero { padding: 10px; border-radius: 10px; background: linear-gradient(135deg, #ecfeff, #f0fdfa); font-size: 12px; font-weight: 800; color: #134e4a; }
.hpm-phone__row { display: flex; align-items: center; gap: 8px; padding: 8px 9px; border-radius: 9px; border: 1px solid #f1f5f9; font-size: 10.5px; font-weight: 600; color: #334155; }
.hpm-phone__row i { color: var(--color-primary); font-size: 12px; }
.hpm-phone__row em { margin-left: auto; font-style: normal; font-size: 9px; font-weight: 800; color: #fff; background: var(--color-danger); padding: 2px 6px; border-radius: 999px; }
@keyframes hpmFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hpm-badge {
	position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 8px;
	padding: 10px 14px; border-radius: 12px; background: #fff; font-size: 13px; font-weight: 800; color: var(--color-gray-800);
	box-shadow: 0 14px 30px -14px rgba(15,23,42,.35); border: 1px solid rgba(15,23,42,.06);
}
.hpm-badge i { color: var(--color-primary); }
.hpm-badge--a { left: -18px; top: 26px; }
.hpm-badge--b { left: 8px; bottom: -6px; }
.hpm-badge--b i { color: var(--color-accent); }

/* ── 숫자 띠 ───────────────────────────────────────── */
.hpm-stats { padding: 0 0 8px; }
.hpm-stats__grid {
	display: grid; grid-template-columns: repeat(4, 1fr);
	border-radius: 20px; overflow: hidden;
	background: #0f172a; color: #fff;
	box-shadow: 0 30px 60px -30px rgba(15,23,42,.6);
}
.hpm-stat { padding: 30px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,.08); }
.hpm-stat:last-child { border-right: 0; }
.hpm-stat strong { display: block; font-size: 34px; font-weight: 900; letter-spacing: -.03em; background: linear-gradient(90deg, #c7d2fe, #a5f3fc); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hpm-stat span { display: block; margin-top: 6px; font-size: 13.5px; color: rgba(255,255,255,.72); font-weight: 600; }

/* ── 케어하자 연동 ─────────────────────────────────── */
.hpm-sync__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.hpm-sync__card {
	padding: 28px 24px; border-radius: 20px; background: #fff;
	border: 1px solid var(--color-gray-200); box-shadow: var(--shadow-sm);
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.hpm-sync__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: rgba(79,70,229,.25); }
.hpm-sync__icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 22px; color: var(--c, var(--color-primary)); background: color-mix(in srgb, var(--c, var(--color-primary)) 12%, #fff); }
.hpm-sync__card h3 { margin-top: 18px; font-size: 18px; font-weight: 800; color: var(--color-gray-900); letter-spacing: -.02em; }
.hpm-sync__card p { margin-top: 8px; font-size: 14.5px; line-height: 1.7; color: var(--color-gray-500); }
.hpm-sync__bar {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px;
	padding: 22px 26px; border-radius: 20px;
	background: linear-gradient(135deg, var(--color-primary-bg), #ecfeff);
	border: 1px solid rgba(79,70,229,.12);
}
.hpm-sync__bar > div { display: grid; grid-template-columns: 40px 1fr; grid-template-rows: auto auto; column-gap: 12px; align-items: center; }
.hpm-sync__bar i { grid-row: 1 / 3; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: #fff; color: var(--color-primary); font-size: 16px; box-shadow: var(--shadow-sm); }
.hpm-sync__bar span { font-size: 15px; font-weight: 800; color: var(--color-gray-900); }
.hpm-sync__bar small { font-size: 12.5px; color: var(--color-gray-500); }

/* ── 포함 내역 ─────────────────────────────────────── */
.hpm-features { background: linear-gradient(180deg, #f8fafc, #fff); }
.hpm-features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.hpm-feature { padding: 28px; border-radius: 20px; background: #fff; border: 1px solid var(--color-gray-200); box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.hpm-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.hpm-feature i { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; font-size: 19px; color: #fff; background: linear-gradient(135deg, var(--color-primary), var(--color-accent)); box-shadow: 0 10px 20px -10px rgba(79,70,229,.6); }
.hpm-feature h3 { margin-top: 18px; font-size: 18px; font-weight: 800; color: var(--color-gray-900); letter-spacing: -.02em; }
.hpm-feature p { margin-top: 8px; font-size: 14.5px; line-height: 1.7; color: var(--color-gray-500); }

/* ── 추천 대상 ─────────────────────────────────────── */
.hpm-fit__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.hpm-fit__card { position: relative; padding: 30px 30px 28px 30px; border-radius: 22px; background: #0f172a; color: #fff; overflow: hidden; }
.hpm-fit__card::after { content: ''; position: absolute; right: -60px; top: -60px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(129,140,248,.35), transparent 65%); }
.hpm-fit__num { font-size: 13px; font-weight: 800; letter-spacing: .1em; color: #a5b4fc; }
.hpm-fit__card h3 { margin-top: 10px; font-size: 24px; font-weight: 900; letter-spacing: -.02em; }
.hpm-fit__who { margin-top: 12px; padding: 8px 12px; border-radius: 10px; background: rgba(255,255,255,.08); font-size: 13.5px; font-weight: 700; color: #c7d2fe; display: inline-block; }
.hpm-fit__card p:not(.hpm-fit__who) { margin-top: 12px; font-size: 15px; line-height: 1.75; color: rgba(255,255,255,.78); }

/* ── 진행 절차 ─────────────────────────────────────── */
.hpm-steps__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; position: relative; }
.hpm-steps__list::before { content: ''; position: absolute; left: 6%; right: 6%; top: 27px; height: 2px; background: linear-gradient(90deg, var(--color-primary), var(--color-accent)); opacity: .35; }
.hpm-steps__list li { position: relative; padding: 0 12px; text-align: center; }
.hpm-steps__n { position: relative; z-index: 1; display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: #fff; border: 2px solid var(--color-primary); color: var(--color-primary); font-size: 18px; font-weight: 900; box-shadow: 0 10px 24px -12px rgba(79,70,229,.5); }
.hpm-steps__list h3 { margin-top: 16px; font-size: 17px; font-weight: 800; color: var(--color-gray-900); }
.hpm-steps__list p { margin-top: 8px; font-size: 13.5px; line-height: 1.65; color: var(--color-gray-500); }

/* ── 요금 ──────────────────────────────────────────── */
.hpm-pricing { background: linear-gradient(180deg, #fff, #f8fafc); }
.hpm-pricing__wrap { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 22px; max-width: 980px; margin: 0 auto; align-items: start; }
.hpm-price { padding: 34px 32px; border-radius: 24px; background: #fff; border: 1px solid var(--color-gray-200); box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.hpm-price:not(.hpm-price--side)::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 6px; background: linear-gradient(90deg, var(--color-primary), var(--color-accent)); }
.hpm-price__tag { display: inline-block; padding: 5px 12px; border-radius: var(--radius-full); font-size: 12.5px; font-weight: 800; color: var(--color-primary); background: var(--color-primary-bg); }
.hpm-price__amount { margin-top: 14px; display: flex; align-items: baseline; gap: 6px; }
.hpm-price__amount strong { font-size: 44px; font-weight: 900; letter-spacing: -.03em; color: var(--color-gray-900); line-height: 1; }
.hpm-price__amount span { font-size: 16px; font-weight: 700; color: var(--color-gray-500); }
.hpm-price__sub { margin-top: 10px; font-size: 13.5px; color: var(--color-gray-500); }
.hpm-price__list { list-style: none; margin: 22px 0 0; padding: 22px 0 0; border-top: 1px dashed var(--color-gray-200); display: grid; gap: 11px; }
.hpm-price__list li { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: var(--color-gray-700); }
.hpm-price__list i { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; color: #fff; background: var(--color-success); }
.hpm-price .hpm-btn--block { margin-top: 24px; }
.hpm-price--side { background: #fbfbff; }
.hpm-price__desc { margin-top: 18px; font-size: 14.5px; line-height: 1.7; color: var(--color-gray-600); }
.hpm-notes { margin-top: 18px; border-radius: 14px; border: 1px solid var(--color-gray-200); background: #fff; }
.hpm-notes summary { list-style: none; cursor: pointer; padding: 13px 16px; font-size: 14px; font-weight: 800; color: var(--color-gray-800); display: flex; align-items: center; gap: 8px; }
.hpm-notes summary::-webkit-details-marker { display: none; }
.hpm-notes summary i { color: var(--color-warning); }
.hpm-notes[open] summary { border-bottom: 1px solid var(--color-gray-200); }
.hpm-notes ul { margin: 0; padding: 14px 16px 16px 34px; display: grid; gap: 10px; font-size: 13.5px; line-height: 1.7; color: var(--color-gray-600); }
.hpm-notes b { color: var(--color-gray-900); }

/* ── 체험 신청 ─────────────────────────────────────── */
.hpm-apply { background: radial-gradient(900px 500px at 0% 0%, rgba(99,102,241,.35), transparent 60%), radial-gradient(700px 500px at 100% 100%, rgba(6,182,212,.25), transparent 60%), #0f172a; color: #fff; }
.hpm-apply__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 56px; align-items: center; }
.hpm-apply__copy h2 { font-size: clamp(30px, 3.6vw, 44px); font-weight: 900; letter-spacing: -.03em; line-height: 1.2; }
.hpm-apply__copy > p { margin-top: 16px; font-size: 16.5px; line-height: 1.75; color: rgba(255,255,255,.75); }
.hpm-apply__copy ul { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 10px; }
.hpm-apply__copy li { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: rgba(255,255,255,.9); }
.hpm-apply__copy li i { color: #6ee7b7; }
.hpm-apply__contact { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hpm-apply__contact a { display: inline-flex; align-items: center; gap: 8px; padding: 11px 16px; border-radius: 12px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); font-size: 14px; font-weight: 700; color: #fff; transition: background-color .18s ease; }
.hpm-apply__contact a:hover { background: rgba(255,255,255,.16); }
.hpm-form { padding: 30px; border-radius: 24px; background: #fff; color: var(--color-gray-800); box-shadow: 0 40px 80px -30px rgba(0,0,0,.6); display: grid; gap: 14px; }
.hpm-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hpm-form__row { display: grid; gap: 6px; }
.hpm-form__row label { font-size: 13px; font-weight: 800; color: var(--color-gray-700); }
.hpm-form__row label em { color: var(--color-danger); font-style: normal; }
.hpm-form__row input, .hpm-form__row textarea {
	width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--color-gray-200); background: var(--color-gray-50);
	font-size: 15px; font-family: inherit; color: var(--color-gray-900); transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.hpm-form__row input:focus, .hpm-form__row textarea:focus { outline: none; border-color: var(--color-primary); background: #fff; box-shadow: 0 0 0 4px rgba(79,70,229,.12); }
.hpm-form__row textarea { resize: vertical; min-height: 84px; }
.hpm-form__hp { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.hpm-form__agree { font-size: 12.5px; color: var(--color-gray-500); line-height: 1.6; }
.hpm-form__msg { min-height: 1.2em; font-size: 13.5px; font-weight: 700; color: var(--color-gray-500); }
.hpm-form__msg.is-bad { color: var(--color-danger); }
.hpm-form__done { display: grid; justify-items: center; gap: 6px; padding: 22px; border-radius: 16px; background: #ecfdf5; border: 1px solid #a7f3d0; text-align: center; }
.hpm-form__done i { font-size: 30px; color: var(--color-success); }
.hpm-form__done strong { font-size: 17px; color: #065f46; }
.hpm-form__done span { font-size: 13.5px; color: #047857; }
.hpm-form__done[hidden] { display: none; }

/* ── FAQ (pricing.css 의 pr-faq 를 그대로 쓰고 간격만) ── */
.hpm-faq { padding-top: 88px; }

/* ── 반응형 ────────────────────────────────────────── */
@media (max-width: 1080px) {
	.hpm-sync__grid { grid-template-columns: repeat(2, 1fr); }
	.hpm-steps__list { grid-template-columns: repeat(3, 1fr); row-gap: 28px; }
	.hpm-steps__list::before { display: none; }
}
@media (max-width: 960px) {
	.hpm-section { padding: 72px 0; }
	.hpm-hero { padding-top: calc(74px + 48px); }
	.hpm-hero__inner { grid-template-columns: 1fr; gap: 44px; }
	.hpm-hero__art { max-width: 560px; margin: 0 auto; width: 100%; }
	.hpm-browser { transform: none; }
	.hpm-stats__grid { grid-template-columns: repeat(2, 1fr); }
	.hpm-stat:nth-child(2) { border-right: 0; }
	.hpm-stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.08); }
	.hpm-sync__bar { grid-template-columns: 1fr; }
	.hpm-features__grid { grid-template-columns: repeat(2, 1fr); }
	.hpm-pricing__wrap { grid-template-columns: 1fr; }
	.hpm-apply__inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 640px) {
	.hpm-container { width: calc(100% - 32px); }
	.hpm-hero__title { font-size: 34px; }
	.hpm-hero__cta .hpm-btn { width: 100%; }
	.hpm-hero__art { min-height: 0; padding: 30px 0 60px; }
	.hpm-phone { width: 140px; height: 276px; right: -6px; bottom: -20px; padding: 8px; }
	.hpm-phone__screen { padding-top: 22px; }
	.hpm-badge--a { left: 8px; top: 0; }
	.hpm-badge--b { display: none; }
	.hpm-site__cards { grid-template-columns: 1fr 1fr; }
	.hpm-site__cards .hpm-site__card:last-child { display: none; }
	.hpm-site__hero { grid-template-columns: 1fr; }
	.hpm-site__photo { display: none; }
	.hpm-sync__grid, .hpm-features__grid, .hpm-fit__grid { grid-template-columns: 1fr; }
	.hpm-steps__list { grid-template-columns: 1fr 1fr; }
	.hpm-stat strong { font-size: 28px; }
	.hpm-form { padding: 22px; }
	.hpm-form__grid { grid-template-columns: 1fr; }
	.hpm-price__amount strong { font-size: 38px; }
}

/* 히어로 «템플릿 체험하기» — 새창 표시 꼬리표 */
.hpm-btn__ext { margin-left: 4px; padding: 2px 8px; border-radius: 999px; font-size: 11.5px; font-weight: 700; color: var(--color-gray-500); background: var(--color-gray-100); }
.hpm-btn--ghost:hover .hpm-btn__ext { color: var(--color-primary-dark); background: var(--color-primary-bg); }
