/* ==========================================================================
   교회사랑넷 — AI 하이브리드 제작 (화이트 테마)
   운영 템플릿(sub.html) 본문에 삽입되는 블록이므로 모든 규칙을 .ai-hybrid 아래로 한정한다.
   토큰은 DESIGN-SYSTEM.md(church-love.net) 기준.
   ========================================================================== */

.ai-hybrid {
	/* ---- 마케팅/새 폴더 styles.css :root 토큰과 동일 (church-love.net 분석 기준) ---- */
	--primary: #19976c;
	--green-deep: #19976c;
	--green-mid: #3e9f77;
	--mint: #0ca585;
	--teal-dark: #165051;
	--accent-orange: #ff8a00;
	--accent-yellow: #f4fa58;
	--text: #000;
	--text-sub: #333;
	--text-muted: #666;
	--line: #e9e9e9;
	--bg-warm: #f5f5f3;
	--bg-blue: #eaeff9;
	--bg-dark: #252525;
	--white: #fff;
	--fs-display: clamp(32px, 5vw, 50px);
	--fs-h2: clamp(24px, 4vw, 36px);
	--fs-h3: clamp(24px, 3.5vw, 33px);
	--fs-sub: clamp(16px, 2.5vw, 22px);
	--fs-body: 16px;
	--fs-small: 14px;
	--fs-caption: 13px;
	--fw-title: 800;
	--fw-strong: 700;
	--fw-ui: 600;
	--ls-title: -2px;
	--ls-body: -0.5px;
	--lh-title: 1.2;
	--lh-body: 1.6;
	--content: 1100px;
	--font: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
	--serif: "Noto Serif KR", "Nanum Myeongjo", "AppleMyungjo", serif;
	/* ---- 이 페이지 전용 파생 토큰 (DESIGN-SYSTEM.md 5장 모서리·그림자 스케일) ---- */
	--text-faint: #999;
	--mint-soft: #e3f6ef;
	--mint-line: #bfe8d9;
	--radius-sm: 5px;
	--radius-md: 10px;
	--radius-lg: 20px;
	--radius-pill: 90px;
	--shadow-card: 0 0 20px rgba(0, 0, 0, 0.1);
	--shadow-float: 0 7px 15px 1px rgba(0, 0, 0, 0.1);
	--shadow-glow: 0 0 0 1px var(--mint-line), 0 7px 15px 1px rgba(0, 0, 0, 0.1);

	color: var(--text);
	background: var(--white);
	font-family: var(--font);
	font-size: var(--fs-body);
	line-height: var(--lh-body);
	letter-spacing: var(--ls-body);
	word-break: keep-all;
	overflow-wrap: break-word;
	width: min(100%, var(--content));
	margin-inline: auto;
	overflow: clip;
}

.ai-hybrid *,
.ai-hybrid *::before,
.ai-hybrid *::after {
	box-sizing: border-box;
}

.ai-hybrid h1,
.ai-hybrid h2,
.ai-hybrid h3,
.ai-hybrid p,
.ai-hybrid ul,
.ai-hybrid ol,
.ai-hybrid dl,
.ai-hybrid dd,
.ai-hybrid figure {
	margin: 0;
}

.ai-hybrid ul,
.ai-hybrid ol {
	padding: 0;
	list-style: none;
}

.ai-hybrid img {
	display: block;
	max-width: 100%;
	height: auto;
}

.ai-hybrid a {
	color: inherit;
	text-decoration: none;
}

.ai-hybrid em {
	font-style: normal;
	color: var(--primary);
}

.ai-hybrid :focus-visible {
	outline: 3px solid var(--accent-orange);
	outline-offset: 3px;
}

.ai-hybrid .ah-wrap {
	width: 100%;
	max-width: var(--content);
	margin-inline: auto;
	padding-inline: 44px;
}

/* --------------------------------------------------------------------------
   공통: 섹션 / 헤드 / 버튼 / 배지
   -------------------------------------------------------------------------- */
.ai-hybrid .ah-section {
	padding: 72px 0;
}

.ai-hybrid .ah-head {
	margin-bottom: 40px;
}

.ai-hybrid .ah-eyebrow {
	margin-bottom: 14px;
	color: var(--accent-orange);
	font-size: 12px;
	font-weight: var(--fw-strong);
	letter-spacing: 3px;
	text-transform: uppercase;
}

.ai-hybrid .ah-head h2 {
	font-size: var(--fs-h2);
	font-weight: var(--fw-title);
	line-height: var(--lh-title);
	letter-spacing: var(--ls-title);
}

.ai-hybrid .ah-head__lead {
	margin-top: 16px;
	color: var(--text-muted);
	font-size: var(--fs-sub);
	line-height: 1.6;
}

.ai-hybrid .ah-head__lead strong {
	color: var(--teal-dark);
}

.ai-hybrid .ah-head__lead small {
	display: inline-block;
	margin-top: 8px;
	color: var(--text-faint);
	font-size: var(--fs-caption);
}

.ai-hybrid .ah-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 54px;
	padding: 0 30px;
	border-radius: var(--radius-pill);
	font-size: 16px;
	font-weight: var(--fw-strong);
	letter-spacing: -0.5px;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.ai-hybrid .ah-btn:hover {
	transform: translateY(-2px);
}

.ai-hybrid .ah-btn--primary {
	color: var(--white);
	background: var(--primary);
	box-shadow: var(--shadow-float);
}

.ai-hybrid .ah-btn--primary:hover {
	background: var(--green-deep);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.ai-hybrid .ah-btn--ghost {
	color: var(--teal-dark);
	background: var(--white);
	border: 1px solid var(--line);
}

.ai-hybrid .ah-btn--ghost:hover {
	border-color: var(--mint-line);
	background: var(--mint-soft);
}

.ai-hybrid .ah-btn--outline {
	color: var(--teal-dark);
	background: var(--white);
	border: 1.5px solid var(--teal-dark);
}

.ai-hybrid .ah-btn--outline:hover {
	color: var(--white);
	background: var(--teal-dark);
}

.ai-hybrid .ah-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border: 1px solid #f2d59a;
	border-radius: 999px;
	color: #8a5a00;
	background: #fff7e6;
	font-size: var(--fs-caption);
	font-weight: var(--fw-strong);
	letter-spacing: -0.3px;
}

.ai-hybrid .ah-badge__icon {
	color: var(--accent-orange);
}

.ai-hybrid .ah-chip {
	position: absolute;
	top: -12px;
	left: 24px;
	padding: 4px 12px;
	border-radius: 999px;
	color: var(--white);
	background: var(--primary);
	font-size: 12px;
	font-weight: var(--fw-strong);
	letter-spacing: 0;
}

/* --------------------------------------------------------------------------
   1. 히어로
   -------------------------------------------------------------------------- */
.ai-hybrid .ah-hero {
	position: relative;
	padding: 64px 0 72px;
	background: var(--white);
	overflow: hidden;
}

.ai-hybrid .ah-hero__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
	gap: 20px 36px;
	align-items: center;
}

.ai-hybrid .ah-hero__copy {
	grid-row: 1 / span 2;
}

.ai-hybrid .ah-hero__visual {
	grid-column: 2;
	align-self: end;
}

.ai-hybrid .ah-hero__title {
	margin-top: 22px;
	font-size: var(--fs-display);
	font-weight: var(--fw-title);
	line-height: var(--lh-title);
	letter-spacing: var(--ls-title);
}

.ai-hybrid .ah-hero__lead {
	margin-top: 22px;
	font-size: var(--fs-sub);
	font-weight: var(--fw-strong);
	color: var(--teal-dark);
	letter-spacing: -0.8px;
}

.ai-hybrid .ah-hero__lead strong {
	color: var(--primary);
	background: linear-gradient(transparent 60%, rgba(244, 250, 88, 0.9) 60%);
}

.ai-hybrid .ah-hero__desc {
	margin-top: 14px;
	color: var(--text-muted);
	font-size: 21px;
	line-height: 1.55;
	letter-spacing: -0.8px;
}

.ai-hybrid .ah-hero__desc strong {
	color: var(--text);
}

.ai-hybrid .ah-price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px;
	margin-top: 0;
}

.ai-hybrid .ah-price__was {
	color: var(--text-faint);
	font-size: 17px;
	font-weight: var(--fw-strong);
	text-decoration: line-through;
	text-decoration-color: var(--accent-orange);
	text-decoration-thickness: 2px;
}

.ai-hybrid .ah-price__arrow {
	color: var(--accent-orange);
	font-size: 16px;
	font-weight: var(--fw-strong);
}

.ai-hybrid .ah-price__now {
	color: var(--accent-orange);
	font-size: 22px;
	font-weight: var(--fw-title);
	letter-spacing: -1px;
}

.ai-hybrid .ah-price__now b {
	font-size: 48px;
	line-height: 1;
	letter-spacing: -3px;
}

/* 0원 제작 조건: 제작비 박스 + 아래 약식 유지보수 표기 */
/* 제작비 본체 + 출시이벤트 스텁 (일반 테두리) */
.ai-hybrid .ah-ticket {
	display: flex;
	align-items: stretch;
	width: fit-content;
	margin-top: 24px;
	filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.06));
}

.ai-hybrid .ah-condition {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 8px 20px 8px 16px;
	border: 1.5px solid #f2d59a;
	border-right: 0;
	border-radius: var(--radius-md) 0 0 var(--radius-md);
	background: #fff7ee;
}

.ai-hybrid .ah-ticket__stub {
	position: relative;
	display: grid;
	place-items: center;
	padding: 0 14px;
	border: 1.5px solid var(--accent-orange);
	border-left: 0;
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
	color: var(--white);
	background: var(--accent-orange);
	font-size: 12px;
	font-weight: var(--fw-title);
	line-height: 1.25;
	letter-spacing: 0;
	text-align: center;
}



.ai-hybrid .ah-condition__head {
	flex: none;
	padding-right: 16px;
	border-right: 1px solid #f2d59a;
	color: #b35f00;
	font-size: var(--fs-small);
	font-weight: var(--fw-strong);
	letter-spacing: -0.3px;
}

/* 유지보수: 박스 없이 작은 한 줄 */
.ai-hybrid .ah-care {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 4px 10px;
	margin-top: 12px;
	padding-left: 4px;
	color: var(--text-muted);
	font-size: var(--fs-caption);
	line-height: 1.6;
}

.ai-hybrid .ah-care__label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--text-sub);
	font-weight: var(--fw-strong);
}

.ai-hybrid .ah-care__label em {
	padding: 1px 6px;
	border: 1px solid var(--mint-line);
	border-radius: 4px;
	color: var(--primary);
	background: var(--mint-soft);
	font-size: 10px;
	font-weight: var(--fw-strong);
	letter-spacing: 0;
	line-height: 1.4;
}

.ai-hybrid .ah-care__fee {
	color: var(--primary);
	font-size: 15px;
	font-weight: var(--fw-title);
	letter-spacing: -0.3px;
}

.ai-hybrid .ah-care__fee small {
	margin-left: 1px;
	color: var(--text-muted);
	font-size: 12px;
	font-weight: var(--fw-ui);
}

.ai-hybrid .ah-care__items {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	flex-basis: 100%;
	margin-top: 2px;
}

.ai-hybrid .ah-care__items i {
	padding: 1px 7px;
	border: 1px solid var(--line);
	border-radius: 4px;
	color: var(--text-muted);
	background: var(--bg-warm);
	font-size: 11px;
	font-style: normal;
	font-weight: var(--fw-ui);
	letter-spacing: -0.2px;
	line-height: 1.5;
}

.ai-hybrid .ah-hero__visual {
	position: relative;
}

.ai-hybrid .ah-hero__visual::before {
	content: "";
	position: absolute;
	inset: 12% 6% 4%;
	border-radius: 50%;
	background: radial-gradient(closest-side, rgba(12, 165, 133, 0.28), transparent);
	filter: blur(24px);
}

.ai-hybrid .ah-hero__visual img {
	position: relative;
	filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.18));
}

/* 노트북 디바이스: 플로팅 + 화면 투사 */
.ai-hybrid .ah-device {
	position: relative;
	animation: ah-float 5.5s ease-in-out infinite;
	will-change: transform;
}

.ai-hybrid .ah-device__base {
	position: relative;
	z-index: 0;
	width: 100%;
}

.ai-hybrid .ah-device__screen {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 960px;
	height: 600px;
	overflow: hidden;
	transform-origin: 0 0;
	background: var(--white);
	pointer-events: none;
	backface-visibility: hidden;
}

.ai-hybrid .ah-device__screen img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	opacity: 0;
	filter: none;
	transition: opacity 0.9s ease;
}

.ai-hybrid .ah-device__screen img.is-active {
	opacity: 1;
}

@keyframes ah-float {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-14px);
	}
}

/* 우측 세로 진행 레일 */
.ai-hybrid .ah-hero__rail {
	--rail-x: 12.5%;
	position: relative;
	grid-column: 2;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding-top: 48px;
	background: linear-gradient(var(--mint-line), var(--mint-line)) no-repeat 50% 32px / 75% 2px;
	color: var(--text-muted);
	font-size: var(--fs-caption);
	font-weight: var(--fw-ui);
	text-align: center;
	white-space: nowrap;
}

/* 포인터 위 담당 라벨 (JS 가 data-label / data-owner 갱신) */
.ai-hybrid .ah-hero__rail::before {
	content: attr(data-label);
	position: absolute;
	top: 0;
	left: var(--rail-x);
	transform: translateX(-50%);
	padding: 3px 9px;
	border: 1px solid var(--mint-line);
	border-radius: 5px;
	color: var(--primary);
	background: var(--mint-soft);
	font-size: 11px;
	font-weight: var(--fw-title);
	letter-spacing: 0;
	line-height: 1.5;
	white-space: nowrap;
	transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.ai-hybrid .ah-hero__rail[data-owner="human"]::before {
	border-color: #f2d59a;
	color: #b35f00;
	background: #fff7e6;
}

/* 라인을 따라 이동하는 포인터 */
.ai-hybrid .ah-hero__rail::after {
	content: "";
	position: absolute;
	top: 27px;
	left: var(--rail-x);
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--primary);
	box-shadow: 0 0 0 5px rgba(25, 151, 108, 0.18), 0 0 14px rgba(25, 151, 108, 0.55);
	transform: translateX(-50%);
	transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-hybrid .ah-hero__rail.is-reset::before,
.ai-hybrid .ah-hero__rail.is-reset::after {
	transition: none;
}

.ai-hybrid .ah-hero__rail li {
	position: relative;
	transition: color 0.3s ease;
}

.ai-hybrid .ah-hero__rail li::before {
	content: "";
	position: absolute;
	top: -21px;
	left: 50%;
	transform: translateX(-50%);
	width: 10px;
	height: 10px;
	border: 2px solid var(--white);
	border-radius: 50%;
	background: var(--mint-line);
	box-shadow: 0 0 0 1px var(--mint-line);
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.ai-hybrid .ah-hero__rail li.is-lit {
	color: var(--primary);
	font-weight: var(--fw-strong);
}

.ai-hybrid .ah-hero__rail li.is-lit::before {
	background: var(--primary);
	box-shadow: 0 0 0 1px var(--primary);
}

/* --------------------------------------------------------------------------
   2. 속도는 AI, 완성도는 사람 (스플릿)
   -------------------------------------------------------------------------- */
.ai-hybrid .ah-split {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	height: clamp(420px, 40vw, 560px);
	background: var(--white);
	isolation: isolate;
}

.ai-hybrid .ah-split__side {
	position: relative;
	height: 100%;
	overflow: hidden;
}

.ai-hybrid .ah-split__stage,
.ai-hybrid .ah-split__base {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.ai-hybrid .ah-split__base,
.ai-hybrid .ah-split__pen {
	object-fit: cover;
}

/* 사진 사본을 펜 모양으로만 오려 화면 오버레이 위에 다시 얹는다.
   밝기를 올려 펜 주변 빈 화면(회색)이 흰색으로 보이게 한다 */
.ai-hybrid .ah-split__pen {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	clip-path: polygon(0 0, 0 0, 0 0);
	filter: brightness(1.4) contrast(1.08);
	pointer-events: none;
}

/* --- 화면 투사 공통: script.js 가 data-quad 를 matrix3d 로 매핑한다 --- */
.ai-hybrid .ah-screen {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	transform-origin: 0 0;
	backface-visibility: hidden;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.ai-hybrid .ah-screen.is-fit {
	opacity: 1;
}

/* ================= 왼쪽: 포트폴리오 썸네일 스캔 화면 ================= */
.ai-hybrid .ah-scan {
	display: flex;
	flex-direction: column;
	width: 1000px;
	height: 1180px;
	background: #f4f6f5;
}

.ai-hybrid .ah-scan__bar {
	flex: none;
	display: flex;
	align-items: center;
	gap: 14px;
	height: 64px;
	padding-inline: 26px;
	background: var(--white);
	border-bottom: 2px solid #e3e8e6;
}

.ai-hybrid .ah-scan__bar i {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #dfe5e3;
}

.ai-hybrid .ah-scan__bar i:first-child {
	width: 210px;
	border-radius: 999px;
	background: var(--primary);
}

.ai-hybrid .ah-scan__view {
	position: relative;
	flex: 1;
	overflow: hidden;
}

.ai-hybrid .ah-scan__strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	padding: 20px;
	animation: ah-scan-pan 34s linear infinite;
}

.ai-hybrid .ah-scan__strip li {
	overflow: hidden;
	aspect-ratio: 4 / 7;
	border-radius: 8px;
	background: var(--white);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.ai-hybrid .ah-scan__strip img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

/* 초록 스캔 박스가 썸네일 사이를 옮겨 다닌다 */
.ai-hybrid .ah-scan__marker {
	position: absolute;
	top: 20px;
	left: 20px;
	width: 220px;
	height: 385px;
	border: 5px solid var(--primary);
	border-radius: 10px;
	box-shadow: 0 0 0 6px rgba(25, 151, 108, 0.16);
	animation: ah-scan-hop 8s steps(1, end) infinite;
}

/* 한 샘플을 크게 열어 확인하는 장면 */
.ai-hybrid .ah-scan__focus {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 560px;
	height: 900px;
	overflow: hidden;
	border-radius: 12px 0 0 0;
	background: var(--white);
	box-shadow: -18px 0 40px rgba(0, 0, 0, 0.16);
	transform: translateX(100%);
	animation: ah-scan-focus 16s ease-in-out infinite;
}

.ai-hybrid .ah-scan__focus img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	opacity: 0;
	animation: ah-scan-shot 16s ease-in-out infinite;
}

.ai-hybrid .ah-scan__focus img:nth-child(2) {
	animation-delay: -8s;
}

.ai-hybrid .ah-scan__probe {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 4px;
	background: linear-gradient(90deg, transparent, var(--primary), transparent);
	box-shadow: 0 0 18px rgba(25, 151, 108, 0.7);
	animation: ah-scan-probe 16s ease-in-out infinite;
}

.ai-hybrid .ah-scan__meter {
	position: absolute;
	left: 24px;
	bottom: 24px;
	display: grid;
	gap: 10px;
	width: 220px;
}

.ai-hybrid .ah-scan__meter i {
	height: 12px;
	border-radius: 999px;
	background: rgba(25, 151, 108, 0.55);
	transform-origin: 0 50%;
	animation: ah-scan-meter 16s ease-in-out infinite;
}

.ai-hybrid .ah-scan__meter i:nth-child(1) { animation-delay: 0.2s; }
.ai-hybrid .ah-scan__meter i:nth-child(2) { animation-delay: 0.5s; }
.ai-hybrid .ah-scan__meter i:nth-child(3) { animation-delay: 0.8s; }

@keyframes ah-scan-pan {
	from { transform: translateY(0); }
	to { transform: translateY(-50%); }
}

@keyframes ah-scan-hop {
	0%   { transform: translate(0, 0); }
	12%  { transform: translate(245px, 0); }
	25%  { transform: translate(490px, 0); }
	37%  { transform: translate(735px, 0); }
	50%  { transform: translate(735px, 405px); }
	62%  { transform: translate(490px, 405px); }
	75%  { transform: translate(245px, 405px); }
	87%  { transform: translate(0, 405px); }
	100% { transform: translate(0, 0); }
}

@keyframes ah-scan-focus {
	0%, 10%   { transform: translateX(100%); }
	18%, 44%  { transform: translateX(0); }
	52%, 60%  { transform: translateX(100%); }
	68%, 94%  { transform: translateX(0); }
	100%      { transform: translateX(100%); }
}

@keyframes ah-scan-shot {
	0%, 12%   { opacity: 0; }
	18%, 44%  { opacity: 1; }
	50%, 100% { opacity: 0; }
}

@keyframes ah-scan-probe {
	0%, 16%   { top: 0; opacity: 0; }
	20%       { opacity: 1; }
	42%       { top: 100%; opacity: 1; }
	46%, 66%  { top: 0; opacity: 0; }
	70%       { opacity: 1; }
	92%       { top: 100%; opacity: 1; }
	96%, 100% { opacity: 0; }
}

@keyframes ah-scan-meter {
	0%, 16%   { transform: scaleX(0); }
	30%, 44%  { transform: scaleX(1); }
	52%, 66%  { transform: scaleX(0); }
	80%, 94%  { transform: scaleX(1); }
	100%      { transform: scaleX(0); }
}

/* ================= 오른쪽: 태블릿 교회 홈페이지 편집 화면 ================= */
.ai-hybrid .ah-edit {
	width: 880px;
	height: 1300px;
	padding-bottom: 40px;
	background: var(--white);
}

.ai-hybrid .ah-edit__bar {
	display: flex;
	align-items: center;
	gap: 18px;
	height: 76px;
	padding-inline: 32px;
	background: #dff1e8;
}

.ai-hybrid .ah-edit__bar b {
	width: 150px;
	height: 20px;
	border-radius: 999px;
	background: var(--primary);
}

.ai-hybrid .ah-edit__bar i {
	width: 84px;
	height: 12px;
	border-radius: 999px;
	background: rgba(22, 80, 81, 0.25);
}

.ai-hybrid .ah-edit__hero {
	position: relative;
	height: 460px;
	overflow: hidden;
}

.ai-hybrid .ah-edit__hero img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	animation: ah-edit-cycle 12s ease-in-out infinite;
}

.ai-hybrid .ah-edit__hero img:nth-child(2) { animation-delay: -4s; }
.ai-hybrid .ah-edit__hero img:nth-child(3) { animation-delay: -8s; }

.ai-hybrid .ah-edit__copy {
	display: grid;
	gap: 14px;
	padding: 30px 32px 24px;
}

.ai-hybrid .ah-edit__copy i {
	height: 20px;
	border-radius: 999px;
	background: #e6eae8;
}

.ai-hybrid .ah-edit__copy i:last-child {
	width: 62%;
}

.ai-hybrid .ah-edit__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	padding-inline: 32px;
}

.ai-hybrid .ah-edit__cards li {
	display: grid;
	gap: 10px;
	padding: 14px;
	border-radius: 12px;
	background: #f6f2ec;
}

.ai-hybrid .ah-edit__ph {
	position: relative;
	display: block;
	height: 180px;
	overflow: hidden;
	border-radius: 8px;
	background: #e6eae8;
}

.ai-hybrid .ah-edit__ph img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	animation: ah-edit-cycle 9s ease-in-out infinite;
}

.ai-hybrid .ah-edit__ph img:nth-child(2) { animation-delay: -3s; }
.ai-hybrid .ah-edit__ph img:nth-child(3) { animation-delay: -6s; }

.ai-hybrid .ah-edit__cards li:nth-child(2) .ah-edit__ph img { animation-duration: 9.6s; }
.ai-hybrid .ah-edit__cards li:nth-child(3) .ah-edit__ph img { animation-duration: 10.2s; }
.ai-hybrid .ah-edit__cards li:nth-child(4) .ah-edit__ph img { animation-duration: 8.4s; }
.ai-hybrid .ah-edit__cards li:nth-child(5) .ah-edit__ph img { animation-duration: 11.1s; }
.ai-hybrid .ah-edit__cards li:nth-child(6) .ah-edit__ph img { animation-duration: 9.9s; }

.ai-hybrid .ah-edit__cards i {
	height: 12px;
	border-radius: 999px;
	background: #dcd6cc;
}

.ai-hybrid .ah-edit__cards i:last-child {
	width: 70%;
}

.ai-hybrid .ah-edit__btn {
	display: block;
	width: 240px;
	height: 56px;
	margin: 34px auto 0;
	border-radius: 999px;
	background: var(--primary);
}

/* 파란 선택 프레임이 편집 중인 박스를 옮겨 다닌다 */
.ai-hybrid .ah-edit__sel {
	position: absolute;
	top: 0;
	left: 0;
	width: 880px;
	height: 420px;
	border: 4px solid #2f7de1;
	box-shadow: 0 0 0 3px rgba(47, 125, 225, 0.18);
	animation: ah-edit-sel 12s steps(1, end) infinite;
}

@keyframes ah-edit-cycle {
	0%, 26%  { opacity: 1; }
	33%, 93% { opacity: 0; }
	100%     { opacity: 1; }
}

@keyframes ah-edit-sel {
	0%   { transform: translate(0, 76px); width: 880px; height: 460px; }
	30%  { transform: translate(46px, 658px); width: 232px; height: 180px; }
	52%  { transform: translate(324px, 658px); width: 232px; height: 180px; }
	74%  { transform: translate(602px, 928px); width: 232px; height: 180px; }
	100% { transform: translate(0, 76px); width: 880px; height: 460px; }
}

.ai-hybrid .ah-split__side::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.55) 100%);
}

.ai-hybrid .ah-split__side--ai::after {
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.85) 100%);
}

.ai-hybrid .ah-split__side--human::after {
	/* 태블릿 화면(교회 홈페이지 작업)이 읽히도록 중앙 쪽만 흐리게 */
	background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.45) 45%, rgba(255, 255, 255, 0.88) 100%);
}

.ai-hybrid .ah-split__side figcaption {
	position: absolute;
	bottom: clamp(28px, 4vw, 56px);
	left: 50%;
	z-index: 1;
	display: grid;
	justify-items: center;
	gap: 3px;
	transform: translateX(-50%);
	padding: 12px 24px;
	border-radius: 20px;
	color: var(--teal-dark);
	background: rgba(255, 255, 255, 0.92);
	text-align: center;
	box-shadow: var(--shadow-card);
	white-space: nowrap;
}

.ai-hybrid .ah-split__side figcaption strong {
	font-size: clamp(16px, 1.8vw, 22px);
	font-weight: var(--fw-title);
	letter-spacing: -0.8px;
}

.ai-hybrid .ah-split__side figcaption span {
	color: var(--text-muted);
	font-size: clamp(12px, 1.1vw, 14px);
	font-weight: var(--fw-ui);
	letter-spacing: -0.4px;
}

.ai-hybrid .ah-split__side--human figcaption {
	color: #8a5a00;
}

.ai-hybrid .ah-split__center {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: grid;
	place-content: center;
	text-align: center;
	padding: 20px;
	pointer-events: none;
}

.ai-hybrid .ah-split__center h2 {
	font-size: clamp(28px, 4.2vw, 42px);
	font-weight: var(--fw-title);
	line-height: var(--lh-title);
	letter-spacing: var(--ls-title);
	color: var(--text);
	text-shadow: 0 2px 20px rgba(255, 255, 255, 0.9);
}

.ai-hybrid .ah-split__center h2 em {
	color: var(--primary);
}

.ai-hybrid .ah-split__center p {
	margin-top: 16px;
	color: var(--text-sub);
	font-size: clamp(15px, 2.1vw, 19px);
	text-shadow: 0 1px 12px rgba(255, 255, 255, 0.9);
}

.ai-hybrid .ah-split__center p strong {
	color: var(--teal-dark);
	font-weight: var(--fw-title);
}

/* --------------------------------------------------------------------------
   3. 왜 하이브리드
   -------------------------------------------------------------------------- */
.ai-hybrid .ah-why {
	background: var(--white);
}

.ai-hybrid .ah-why__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.ai-hybrid .ah-why__cards > li {
	position: relative;
	padding: 34px 30px;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: var(--bg-warm);
}

.ai-hybrid .ah-why__cards h3 {
	font-size: var(--fs-sub);
	font-weight: var(--fw-title);
	letter-spacing: -0.8px;
}

/* 장점 / 단점 목록 */
.ai-hybrid .ah-why__pros,
.ai-hybrid .ah-why__cons {
	display: grid;
	gap: 8px;
	margin-top: 16px;
}

.ai-hybrid .ah-why__pros > li,
.ai-hybrid .ah-why__cons > li {
	position: relative;
	padding-left: 26px;
	color: var(--text-muted);
	font-size: 15px;
	line-height: 1.55;
	letter-spacing: -0.4px;
}

.ai-hybrid .ah-why__pros > li::before,
.ai-hybrid .ah-why__cons > li::before {
	position: absolute;
	left: 0;
	top: 2px;
	display: grid;
	place-items: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	font-size: 12px;
	font-weight: var(--fw-title);
	line-height: 1;
}

.ai-hybrid .ah-why__pros > li::before {
	content: "＋";
	color: var(--primary);
	background: var(--mint-soft);
}

.ai-hybrid .ah-why__cons > li::before {
	content: "－";
	color: #b0563c;
	background: #fbe9e2;
}

.ai-hybrid .ah-why__cards .is-hybrid {
	border-color: var(--mint-line);
	background: var(--mint-soft);
	box-shadow: var(--shadow-glow);
}

.ai-hybrid .ah-why__cards .is-hybrid h3 {
	color: var(--primary);
}

.ai-hybrid .ah-why__cards .is-hybrid .ah-why__pros > li {
	color: var(--teal-dark);
}

.ai-hybrid .ah-why__cards .is-hybrid .ah-why__pros > li::before {
	color: var(--white);
	background: var(--primary);
}

/* --------------------------------------------------------------------------
   4. 제작 3단계
   -------------------------------------------------------------------------- */
.ai-hybrid .ah-process {
	background: var(--bg-warm);
}

.ai-hybrid .ah-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.ai-hybrid .ah-steps li {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: var(--white);
	box-shadow: var(--shadow-card);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-hybrid .ah-steps li:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-glow);
}

.ai-hybrid .ah-steps figure {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.ai-hybrid .ah-steps figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.ai-hybrid .ah-steps li:hover figure img {
	transform: scale(1.04);
}

.ai-hybrid .ah-steps__num {
	position: absolute;
	top: 18px;
	left: 18px;
	padding: 6px 12px;
	border-radius: 8px;
	color: var(--primary);
	background: rgba(255, 255, 255, 0.92);
	font-size: 20px;
	font-weight: var(--fw-title);
	letter-spacing: 0;
	box-shadow: var(--shadow-card);
}

/* 담당 주체 배지: 어느 단계를 AI 가, 어느 단계를 사람이 맡는지 */
.ai-hybrid .ah-steps__who {
	position: absolute;
	top: 18px;
	right: 18px;
	padding: 6px 12px;
	border-radius: 999px;
	color: var(--white);
	background: var(--primary);
	font-size: 12px;
	font-weight: var(--fw-strong);
	letter-spacing: -0.3px;
	box-shadow: var(--shadow-card);
}

.ai-hybrid .ah-steps__who.is-human {
	background: var(--accent-orange);
}

.ai-hybrid .ah-steps__who.is-church {
	color: var(--teal-dark);
	background: rgba(255, 255, 255, 0.94);
}

.ai-hybrid .ah-steps h3 {
	padding: 24px 26px 0;
	font-size: var(--fs-sub);
	font-weight: var(--fw-title);
	letter-spacing: -0.8px;
}

.ai-hybrid .ah-steps p {
	padding: 8px 26px 28px;
	color: var(--text-muted);
	font-size: 15px;
}

/* --------------------------------------------------------------------------
   5. 제작 구성 (스펙)
   -------------------------------------------------------------------------- */
.ai-hybrid .ah-spec {
	background: var(--white);
}

.ai-hybrid .ah-spec__services {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	margin-top: 40px;
	padding: 32px 36px;
	border-radius: var(--radius-lg);
	background: var(--bg-blue);
}

.ai-hybrid .ah-spec__block h3 {
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(22, 80, 81, 0.15);
	font-size: var(--fs-sub);
	font-weight: var(--fw-title);
	letter-spacing: -0.8px;
}

.ai-hybrid .ah-spec__list {
	display: grid;
	gap: 0;
	margin-top: 6px;
}

.ai-hybrid .ah-spec__list > div {
	display: grid;
	grid-template-columns: 118px 1fr;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px dashed rgba(22, 80, 81, 0.15);
	font-size: 15px;
	line-height: 1.5;
}

.ai-hybrid .ah-spec__list > div:last-child {
	border-bottom: 0;
}

.ai-hybrid .ah-spec__list dt {
	color: var(--text-muted);
	font-size: var(--fs-small);
	font-weight: var(--fw-strong);
}

.ai-hybrid .ah-spec__list dd {
	color: var(--text-sub);
}

.ai-hybrid .ah-spec__list dd strong {
	color: var(--text);
	font-weight: var(--fw-title);
}

.ai-hybrid .ah-spec__list dd .is-zero {
	color: var(--accent-orange);
	font-size: 20px;
}

.ai-hybrid .ah-spec__list dd s {
	color: var(--text-faint);
	font-size: var(--fs-caption);
}

.ai-hybrid .ah-spec__block ul {
	display: grid;
	gap: 10px;
	margin-top: 16px;
}

.ai-hybrid .ah-spec__block li {
	position: relative;
	padding-left: 22px;
	color: var(--text-sub);
	font-size: 15px;
}

.ai-hybrid .ah-spec__block li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--primary);
	font-weight: var(--fw-title);
}

.ai-hybrid .ah-spec__block small {
	color: var(--text-faint);
}

/* --------------------------------------------------------------------------
   5-2. 이런 것도 무료 (설교게시판 · 모바일 주보)
   -------------------------------------------------------------------------- */
.ai-hybrid .ah-freebies {
	background: linear-gradient(180deg, var(--white) 0%, var(--mint-soft) 100%);
}

.ai-hybrid .ah-head--center {
	text-align: center;
}

.ai-hybrid .ah-freebies__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 40px;
	align-items: center;
	padding: 30px;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: var(--white);
	box-shadow: var(--shadow-card);
}

.ai-hybrid .ah-freebies__row + .ah-freebies__row {
	margin-top: 24px;
}

.ai-hybrid .ah-freebies__row--reverse .ah-freebies__visual {
	order: 2;
}

.ai-hybrid .ah-freebies__visual {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-md);
	background: var(--bg-warm);
}

.ai-hybrid .ah-freebies__visual img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.ai-hybrid .ah-freebies__stamp {
	position: absolute;
	top: 16px;
	left: 16px;
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	color: var(--white);
	background: var(--accent-orange);
	font-size: 15px;
	font-weight: var(--fw-title);
	letter-spacing: 0;
	box-shadow: var(--shadow-float);
	transform: rotate(-8deg);
}

.ai-hybrid .ah-freebies__label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--text-muted);
	font-size: var(--fs-small);
	font-weight: var(--fw-strong);
}

.ai-hybrid .ah-freebies__yt {
	display: inline-grid;
	place-items: center;
	width: 26px;
	height: 18px;
	border-radius: 5px;
	color: var(--white);
	background: #e50000;
	font-size: 9px;
}

.ai-hybrid .ah-freebies__copy h3 {
	margin-top: 10px;
	font-size: var(--fs-h3);
	font-weight: var(--fw-title);
	line-height: var(--lh-title);
	letter-spacing: var(--ls-title);
}

.ai-hybrid .ah-freebies__desc {
	margin-top: 14px;
	color: var(--text-muted);
	font-size: 15px;
	line-height: 1.7;
}

.ai-hybrid .ah-freebies__desc strong {
	color: var(--teal-dark);
}

.ai-hybrid .ah-freebies__copy .ah-checks {
	margin-top: 18px;
	gap: 8px;
}

.ai-hybrid .ah-freebies__copy .ah-checks li {
	font-size: 15px;
}

.ai-hybrid .ah-freebies__steps {
	display: grid;
	gap: 8px;
	margin-top: 18px;
}

.ai-hybrid .ah-freebies__steps li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	border-radius: var(--radius-md);
	background: var(--bg-warm);
	font-size: 15px;
	font-weight: var(--fw-ui);
	color: var(--text-sub);
}

.ai-hybrid .ah-freebies__steps b {
	color: var(--primary);
	font-size: 15px;
	font-weight: var(--fw-title);
	letter-spacing: 0;
}

.ai-hybrid .ah-freebies__zero {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 10px;
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px dashed var(--line);
	font-size: var(--fs-small);
}

.ai-hybrid .ah-freebies__zero b {
	padding: 6px 14px;
	border-radius: var(--radius-pill);
	color: var(--white);
	background: var(--primary);
	font-size: 15px;
	font-weight: var(--fw-title);
	letter-spacing: -0.3px;
}

.ai-hybrid .ah-freebies__zero i {
	color: var(--mint);
	font-style: normal;
	font-weight: var(--fw-title);
}

.ai-hybrid .ah-freebies__zero small {
	color: var(--text-faint);
	font-size: var(--fs-caption);
}

/* --------------------------------------------------------------------------
   6. 자체관리
   -------------------------------------------------------------------------- */
.ai-hybrid .ah-manage {
	background: var(--bg-warm);
}

.ai-hybrid .ah-manage__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
}

.ai-hybrid .ah-manage__copy h2 {
	font-size: var(--fs-h2);
	font-weight: var(--fw-title);
	line-height: var(--lh-title);
	letter-spacing: var(--ls-title);
}

.ai-hybrid .ah-checks {
	display: grid;
	gap: 12px;
	margin-top: 28px;
}

.ai-hybrid .ah-checks li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 16px;
	font-weight: var(--fw-ui);
	color: var(--text-sub);
}

.ai-hybrid .ah-checks li::before {
	content: "✓";
	display: grid;
	place-items: center;
	flex: none;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	color: var(--white);
	background: var(--mint);
	font-size: 13px;
	font-weight: var(--fw-title);
}

.ai-hybrid .ah-checks b {
	color: var(--text);
	font-weight: var(--fw-strong);
}

/* 오해 방지 안내: "내 소스를 넣어달라"는 요청이 반복돼 범위를 명시 */
.ai-hybrid .ah-manage__note {
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px dashed var(--line);
	color: var(--text-faint);
	font-size: 13px;
	line-height: 1.6;
	letter-spacing: -0.3px;
}

.ai-hybrid .ah-manage__visual {
	overflow: hidden;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
}

/* --------------------------------------------------------------------------
   7. 메뉴 예시
   -------------------------------------------------------------------------- */
.ai-hybrid .ah-menu {
	padding: 32px 0 0;
	border-top: 1px solid var(--line);
}

.ai-hybrid .ah-menu__head {
	margin-bottom: 26px;
}

.ai-hybrid .ah-menu__head h3 {
	font-size: var(--fs-h3);
	font-weight: var(--fw-title);
	line-height: var(--lh-title);
	letter-spacing: var(--ls-title);
}

.ai-hybrid .ah-p,
.ai-hybrid .ah-free {
	display: inline-grid;
	place-items: center;
	min-width: 22px;
	height: 22px;
	padding: 0 7px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: var(--fw-title);
	font-style: normal;
	letter-spacing: 0;
	line-height: 1;
	vertical-align: middle;
}

.ai-hybrid .ah-p {
	color: var(--white);
	background: var(--primary);
}

.ai-hybrid .ah-free {
	color: #8a5a00;
	background: #fff1cf;
}

.ai-hybrid .ah-menu__formula {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-top: 18px;
	font-size: 17px;
	font-weight: var(--fw-ui);
	color: var(--text-sub);
}

.ai-hybrid .ah-menu__formula b.ah-p,
.ai-hybrid .ah-menu__formula b.ah-free {
	height: 30px;
	padding: 0 12px;
	font-size: 14px;
}

.ai-hybrid .ah-menu__cols {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 12px;
	align-items: start;
}

.ai-hybrid .ah-menu__col {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--white);
	box-shadow: var(--shadow-card);
}

.ai-hybrid .ah-menu__col h3 {
	padding: 14px 10px;
	color: var(--teal-dark);
	background: var(--bg-warm);
	font-size: 15px;
	font-weight: var(--fw-title);
	text-align: center;
	letter-spacing: -0.5px;
}

.ai-hybrid .ah-menu__col.is-main h3 {
	color: var(--white);
	background: var(--primary);
}

.ai-hybrid .ah-menu__col ul {
	padding: 10px 8px 14px;
}

.ai-hybrid .ah-menu__col li {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 7px 4px;
	font-size: 14px;
	font-weight: var(--fw-ui);
	color: var(--text-sub);
	letter-spacing: -0.3px;
}

.ai-hybrid .ah-menu__legend {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 8px 18px;
	margin-top: 26px;
	color: var(--text-muted);
	font-size: var(--fs-caption);
}

.ai-hybrid .ah-menu__summary {
	margin-top: 26px;
	text-align: center;
	font-size: 16px;
	line-height: 1.8;
	color: var(--text-sub);
}

.ai-hybrid .ah-menu__summary strong {
	margin-right: 8px;
	color: var(--accent-orange);
}

.ai-hybrid .ah-menu__summary em {
	font-weight: var(--fw-title);
}

/* --------------------------------------------------------------------------
   8. 샘플 디자인
   -------------------------------------------------------------------------- */
.ai-hybrid .ah-samples {
	background: var(--bg-blue);
}

.ai-hybrid .ah-samples__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
}

.ai-hybrid .ah-samples__grid a {
	position: relative;
	display: block;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	border-radius: var(--radius-md);
	background: var(--white);
	box-shadow: var(--shadow-card);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-hybrid .ah-samples__grid a:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-glow);
}

.ai-hybrid .ah-samples__grid img {
	width: 100%;
	height: auto;
	transition: transform 6s linear;
}

/* 호버 시 긴 캡처를 아래로 훑어 내려 보여준다 */
.ai-hybrid .ah-samples__grid a:hover img {
	transform: translateY(calc(-100% + 100cqh));
}

.ai-hybrid .ah-samples__grid a {
	container-type: size;
}

.ai-hybrid .ah-samples__grid span {
	position: absolute;
	right: 10px;
	bottom: 10px;
	padding: 4px 10px;
	border-radius: 999px;
	color: var(--teal-dark);
	background: rgba(255, 255, 255, 0.92);
	font-size: 11px;
	font-weight: var(--fw-strong);
	letter-spacing: 0;
}

/* --------------------------------------------------------------------------
   9. 유지보수 / 0원 제작 조건
   -------------------------------------------------------------------------- */
.ai-hybrid .ah-plans {
	background: var(--white);
}

.ai-hybrid .ah-equation {
	margin-bottom: 40px;
	padding: 20px 24px 22px;
	border: 1.5px solid var(--mint-line);
	border-radius: var(--radius-lg);
	background: var(--mint-soft);
	color: var(--teal-dark);
}

.ai-hybrid .ah-equation__title {
	margin-bottom: 12px;
	color: var(--green-deep);
	font-size: var(--fs-small);
	font-weight: var(--fw-title);
	letter-spacing: -0.3px;
	text-align: center;
}

.ai-hybrid .ah-equation__row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-weight: var(--fw-strong);
}

.ai-hybrid .ah-equation__op {
	color: var(--mint);
	font-size: 22px;
	line-height: 1;
}

.ai-hybrid .ah-equation__item {
	display: grid;
	gap: 1px;
	padding: 8px 14px;
	border: 1px solid var(--mint-line);
	border-radius: var(--radius-md);
	background: var(--white);
	text-align: center;
	white-space: nowrap;
	line-height: 1.35;
}

.ai-hybrid .ah-equation__item b {
	font-size: var(--fs-small);
	font-weight: var(--fw-title);
	color: var(--teal-dark);
}

.ai-hybrid .ah-equation__item small {
	font-size: 11px;
	font-weight: var(--fw-ui);
	color: var(--text-muted);
}

.ai-hybrid .ah-equation__sum {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
}

.ai-hybrid .ah-equation__result {
	padding: 9px 18px;
	border-radius: var(--radius-pill);
	color: var(--white);
	background: var(--teal-dark);
	font-size: 18px;
	font-weight: var(--fw-title);
	letter-spacing: -0.5px;
}

.ai-hybrid .ah-equation__result small {
	margin-left: 6px;
	padding: 2px 8px;
	border-radius: 4px;
	background: var(--accent-orange);
	font-size: 12px;
	vertical-align: 3px;
}

.ai-hybrid .ah-plans__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	align-items: stretch;
}

.ai-hybrid .ah-plan {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 32px 20px 24px;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: var(--white);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-hybrid .ah-plan:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-card);
}

.ai-hybrid .ah-plan__flag {
	position: absolute;
	top: -14px;
	left: 20px;
	padding: 6px 14px;
	border-radius: 999px;
	color: var(--white);
	background: var(--accent-orange);
	font-size: 12px;
	font-weight: var(--fw-strong);
	letter-spacing: 0;
	box-shadow: var(--shadow-float);
}

.ai-hybrid .ah-plan__flag.is-second {
	background: var(--primary);
}

.ai-hybrid .ah-plan__type {
	margin-bottom: 6px;
	color: var(--text);
	font-size: var(--fs-caption);
	font-weight: var(--fw-strong);
	letter-spacing: -0.3px;
}

.ai-hybrid .ah-plan__type.is-must {
	color: var(--primary);
}

.ai-hybrid .ah-plan__pitch {
	margin-top: 12px;
	padding: 10px 12px;
	border-radius: 8px;
	color: var(--text);
	background: var(--bg-warm);
	font-size: var(--fs-caption);
	font-weight: var(--fw-ui);
	line-height: 1.55;
}

.ai-hybrid .ah-plan h3 {
	font-size: 17px;
	font-weight: var(--fw-title);
	letter-spacing: -0.5px;
	color: var(--teal-dark);
}

.ai-hybrid .ah-plan__price {
	margin-top: 10px;
	font-size: 16px;
	color: var(--text);
}

.ai-hybrid .ah-plan__price b {
	color: var(--text);
	font-size: clamp(28px, 2.6vw, 34px);
	font-weight: var(--fw-title);
	letter-spacing: -1.5px;
}

.ai-hybrid .ah-plan.is-featured .ah-plan__price b {
	color: var(--primary);
}

/* 항목 묶음 라벨 — A 는 기본 제공, B~D 는 디자인지원 */
.ai-hybrid .ah-plan__label {
	align-self: start;
	margin-top: 16px;
	padding: 4px 10px;
	border-radius: 999px;
	color: var(--white);
	background: var(--text);
	font-size: 11.5px;
	font-weight: var(--fw-strong);
	letter-spacing: -0.2px;
}

.ai-hybrid .ah-plan__label.is-design {
	background: var(--accent-orange);
}

/* B~D 는 "A 기본 제공 + 디자인지원" 을 라벨 두 개로 보여 준다 */
.ai-hybrid .ah-plan__labels {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	margin-top: 16px;
}

.ai-hybrid .ah-plan__labels .ah-plan__label {
	margin-top: 0;
}

.ai-hybrid .ah-plan__pair {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.ai-hybrid .ah-plan__labels em {
	color: var(--text-muted);
	font-size: 12px;
	font-style: normal;
	font-weight: var(--fw-strong);
}

.ai-hybrid .ah-plan__label + .ah-plan__list,
.ai-hybrid .ah-plan__labels + .ah-plan__list {
	margin-top: 10px;
}

.ai-hybrid .ah-plan__list {
	display: grid;
	gap: 8px;
	margin-top: 16px;
	flex: 1;
}

.ai-hybrid .ah-plan__list li {
	position: relative;
	padding-left: 18px;
	color: var(--text);
	font-size: 15px;
	line-height: 1.5;
}

.ai-hybrid .ah-plan__list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--primary);
	font-weight: var(--fw-title);
}

.ai-hybrid .ah-plan__meta {
	margin-top: 18px;
	padding-top: 14px;
	border-top: 1px dashed var(--line);
	color: var(--text);
	font-size: 12px;
}

.ai-hybrid .ah-plan__common + .ah-plan__meta {
	margin-top: 12px;
	padding-top: 0;
	border-top: 0;
}

/* 모든 플랜 공통 제공 — 분리된 박스 대신 각 플랜 안에 넣는다 */
.ai-hybrid .ah-plan__common {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px dashed var(--line);
}

.ai-hybrid .ah-plan__common ul {
	display: grid;
	gap: 6px;
	margin-top: 10px;
}

.ai-hybrid .ah-plan__common li {
	position: relative;
	padding-left: 14px;
	color: var(--text-muted);
	font-size: 13px;
	line-height: 1.5;
}

.ai-hybrid .ah-plan__common li::before {
	content: "·";
	position: absolute;
	left: 3px;
	color: var(--text-faint);
	font-weight: var(--fw-title);
}

.ai-hybrid .ah-plans__lead {
	margin: -18px 0 34px;
	color: var(--text-muted);
	font-size: var(--fs-sub);
	line-height: 1.6;
}

.ai-hybrid .ah-plans__lead strong {
	color: var(--text);
	font-weight: var(--fw-strong);
}

.ai-hybrid .ah-plans__foot {
	margin-top: 20px;
	text-align: center;
	color: var(--text-muted);
	font-size: var(--fs-small);
	font-weight: var(--fw-ui);
}

.ai-hybrid .ah-extra {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	margin-top: 40px;
}

.ai-hybrid .ah-extra__table {
	padding: 28px 32px;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
}

.ai-hybrid .ah-extra__table h3 {
	font-size: 17px;
	font-weight: var(--fw-title);
	letter-spacing: -0.5px;
}

.ai-hybrid .ah-extra__table h3 small {
	margin-left: 8px;
	color: var(--text-faint);
	font-size: 12px;
	font-weight: var(--fw-ui);
}

.ai-hybrid .ah-extra__table table {
	width: 100%;
	margin-top: 14px;
	border-collapse: collapse;
	font-size: 15px;
}

.ai-hybrid .ah-extra__table th,
.ai-hybrid .ah-extra__table td {
	padding: 10px 0;
	border-bottom: 1px solid var(--line);
	text-align: left;
}

.ai-hybrid .ah-extra__table th {
	width: 55%;
	font-weight: var(--fw-ui);
	color: var(--text-sub);
}

.ai-hybrid .ah-extra__table td {
	font-weight: var(--fw-strong);
	color: var(--teal-dark);
}

.ai-hybrid .ah-extra__table p {
	margin-top: 12px;
	color: var(--text-faint);
	font-size: 12px;
	line-height: 1.6;
}

/* --------------------------------------------------------------------------
   10. 숫자
   -------------------------------------------------------------------------- */
.ai-hybrid .ah-record {
	background: var(--bg-warm);
	text-align: center;
}

.ai-hybrid .ah-record .ah-head {
	margin-bottom: 30px;
}

.ai-hybrid .ah-record__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 900px;
	margin-inline: auto;
}

.ai-hybrid .ah-record__stats b {
	display: block;
	color: var(--primary);
	font-size: clamp(48px, 7vw, 84px);
	font-weight: var(--fw-title);
	line-height: 1;
	letter-spacing: -3px;
}

.ai-hybrid .ah-record__stats b small {
	margin-left: 2px;
	color: var(--accent-orange);
	font-size: 0.45em;
	letter-spacing: 0;
}

.ai-hybrid .ah-record__stats > li > span {
	display: block;
	margin-top: 12px;
	color: var(--text-muted);
	font-size: 15px;
	font-weight: var(--fw-ui);
}

.ai-hybrid .ah-record__certs {
	margin-top: 44px;
	color: var(--text-faint);
	font-size: var(--fs-caption);
}

/* --------------------------------------------------------------------------
   11. CTA
   -------------------------------------------------------------------------- */
.ai-hybrid .ah-cta {
	padding: clamp(80px, 10vw, 140px) 0;
	background: radial-gradient(ellipse at 50% 0%, rgba(12, 165, 133, 0.22), transparent 60%), var(--teal-dark);
	color: var(--white);
	text-align: center;
}

.ai-hybrid .ah-cta h2 {
	font-size: var(--fs-h2);
	font-weight: var(--fw-title);
	line-height: var(--lh-title);
	letter-spacing: var(--ls-title);
}

.ai-hybrid .ah-cta h2 em {
	color: var(--accent-yellow);
}

.ai-hybrid .ah-cta > .ah-wrap > p {
	margin-top: 16px;
	color: rgba(255, 255, 255, 0.78);
	font-size: var(--fs-sub);
}

.ai-hybrid .ah-cta__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 34px;
}

.ai-hybrid .ah-cta .ah-btn--outline {
	color: var(--white);
	background: transparent;
	border-color: rgba(255, 255, 255, 0.5);
}

.ai-hybrid .ah-cta .ah-btn--outline:hover {
	color: var(--teal-dark);
	background: var(--white);
	border-color: var(--white);
}

.ai-hybrid .ah-cta__hours {
	margin-top: 22px;
	color: rgba(255, 255, 255, 0.55);
	font-size: var(--fs-caption);
}

/* --------------------------------------------------------------------------
   스크롤 리빌
   -------------------------------------------------------------------------- */
.ai-hybrid [data-reveal],
.ai-hybrid [data-reveal-group] > * {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s ease, transform 0.7s ease;
	transition-delay: var(--reveal-delay, 0ms);
}

.ai-hybrid [data-reveal].is-in,
.ai-hybrid [data-reveal-group].is-in > * {
	opacity: 1;
	transform: none;
}

.ai-hybrid [data-reveal-group].is-in > *:nth-child(2) { transition-delay: 100ms; }
.ai-hybrid [data-reveal-group].is-in > *:nth-child(3) { transition-delay: 200ms; }
.ai-hybrid [data-reveal-group].is-in > *:nth-child(4) { transition-delay: 300ms; }
.ai-hybrid [data-reveal-group].is-in > *:nth-child(5) { transition-delay: 400ms; }
.ai-hybrid [data-reveal-group].is-in > *:nth-child(6) { transition-delay: 500ms; }
.ai-hybrid [data-reveal-group].is-in > *:nth-child(n + 7) { transition-delay: 550ms; }

/* JS 미동작 / 모션 최소화 환경에서는 즉시 표시 */
.ai-hybrid.no-js [data-reveal],
.ai-hybrid.no-js [data-reveal-group] > * {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.ai-hybrid .ah-hero__rail::before,
	.ai-hybrid .ah-hero__rail::after,
	.ai-hybrid .ah-hero__rail li,
	.ai-hybrid .ah-hero__rail li::before {
		transition: none;
	}

	.ai-hybrid .ah-device {
		animation: none;
	}

	/* 2단락 화면 루프 정지 — 각 첫 장면만 남긴다 */
	.ai-hybrid .ah-scan__strip,
	.ai-hybrid .ah-scan__marker,
	.ai-hybrid .ah-scan__focus,
	.ai-hybrid .ah-scan__focus img,
	.ai-hybrid .ah-scan__probe,
	.ai-hybrid .ah-scan__meter i,
	.ai-hybrid .ah-edit__hero img,
	.ai-hybrid .ah-edit__ph img,
	.ai-hybrid .ah-edit__sel {
		animation: none;
	}

	.ai-hybrid .ah-edit__hero img:first-child,
	.ai-hybrid .ah-edit__ph img:first-child {
		opacity: 1;
	}

	.ai-hybrid .ah-scan__meter i {
		transform: scaleX(1);
	}

	.ai-hybrid .ah-scan__probe {
		opacity: 0;
	}

	.ai-hybrid .ah-device__screen img {
		transition: none;
	}

	.ai-hybrid [data-reveal],
	.ai-hybrid [data-reveal-group] > * {
		opacity: 1;
		transform: none;
		transition: none;
	}


	.ai-hybrid .ah-samples__grid img,
	.ai-hybrid .ah-steps figure img {
		transition: none;
	}
}

/* --------------------------------------------------------------------------
   반응형
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.ai-hybrid .ah-menu__cols {
		grid-template-columns: repeat(3, 1fr);
	}

	.ai-hybrid .ah-samples__grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.ai-hybrid .ah-plans__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ai-hybrid .ah-hero__grid {
		grid-template-columns: 1fr;
		text-align: left;
	}

	.ai-hybrid .ah-hero__visual {
		max-width: 640px;
		margin-inline: auto;
	}

	.ai-hybrid .ah-hero__copy {
		grid-row: auto;
	}

	.ai-hybrid .ah-hero__visual,
	.ai-hybrid .ah-hero__rail {
		grid-column: 1;
	}

	.ai-hybrid .ah-hero__rail {
		max-width: 560px;
		margin-inline: auto;
	}

	.ai-hybrid .ah-why__cards,
	.ai-hybrid .ah-steps {
		grid-template-columns: repeat(2, 1fr);
	}

	.ai-hybrid .ah-why__cards .is-hybrid {
		order: -1;
		grid-column: 1 / -1;
	}

	.ai-hybrid .ah-manage__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.ai-hybrid .ah-wrap {
		padding-inline: 20px;
	}

	.ai-hybrid .ah-spec__services {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 24px 20px;
	}

	.ai-hybrid .ah-spec__list > div {
		grid-template-columns: 1fr;
		gap: 2px;
	}

	.ai-hybrid .ah-hero__desc {
		font-size: 17px;
	}

	.ai-hybrid .ah-freebies__row {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 16px 16px 24px;
	}

	.ai-hybrid .ah-freebies__row--reverse .ah-freebies__visual {
		order: 0;
	}

	.ai-hybrid .ah-section {
		padding: 48px 0;
	}

	.ai-hybrid .ah-split {
		grid-template-columns: 1fr;
		height: auto;
	}

	.ai-hybrid .ah-split__side {
		height: 300px;
	}

	.ai-hybrid .ah-split__side--ai::after,
	.ai-hybrid .ah-split__side--human::after {
		background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.7));
	}

	.ai-hybrid .ah-split__center {
		position: static;
		order: -1;
		padding: 56px 20px 32px;
		background: var(--white);
	}

	.ai-hybrid .ah-why__cards,
	.ai-hybrid .ah-steps,
	.ai-hybrid .ah-plans__grid,
	.ai-hybrid .ah-extra {
		grid-template-columns: 1fr;
	}

	.ai-hybrid .ah-menu__cols {
		grid-template-columns: repeat(2, 1fr);
	}

	.ai-hybrid .ah-samples__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 12px;
	}

	.ai-hybrid .ah-record__stats {
		grid-template-columns: 1fr;
		gap: 32px;
	}


	.ai-hybrid .ah-btn {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.ai-hybrid .ah-wrap {
		padding-inline: 16px;
	}

	.ai-hybrid .ah-section {
		padding: 40px 0;
	}

	.ai-hybrid .ah-hero__title {
		letter-spacing: -1.5px;
	}

	.ai-hybrid .ah-price__now b {
		letter-spacing: -2px;
	}


	.ai-hybrid .ah-hero__rail {
		font-size: 11px;
	}

	.ai-hybrid .ah-samples__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ai-hybrid .ah-spec__services,
	.ai-hybrid .ah-extra__table {
		padding: 22px 20px;
	}

	.ai-hybrid .ah-extra__table th {
		width: 50%;
	}
}

@media (max-width: 375px) {
	.ai-hybrid .ah-wrap {
		padding-inline: 14px;
	}

	.ai-hybrid .ah-hero__title {
		letter-spacing: -1px;
	}

	.ai-hybrid .ah-price__now b {
		font-size: 52px;
	}

	.ai-hybrid .ah-record__stats b {
		font-size: 44px;
		letter-spacing: -2px;
	}
}
