
/* =========================================================
	MEMBER
	========================================================= */
.member{
	padding: 0;
}

.member-gallery {
	position: relative;
	z-index: 2;
	width: 100%;
	margin: clamp(14px, 1.6vw, 22px) 0 12px;
	overflow: hidden;
}

.member-gallery__label {
	margin: 0 0 clamp(18px, 2vw, 28px);
	color: #5b6470;
	font-weight: 700;
	text-align: center;
}

.member-gallery__viewport {
	position: relative;
	width: 100%;
	padding: 18px 0 12px;
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.member-gallery__track {
	display: flex;
	width: max-content;
	gap: 22px;
	animation: memberLoop 92s linear infinite;
}

.member-gallery figure {
	flex: 0 0 auto;
	width: 90px;
	margin: 0;
	padding: 0;
	text-align: center;
	transform: rotate(-1.5deg);
}

.member-gallery figure:nth-child(2n) {
	transform: rotate(1.5deg);
}

.member-gallery img {
	width: 90px;
	height: 100px;
	object-fit: contain;
	filter: drop-shadow(0 10px 14px rgba(82, 51, 24, 0.13));
}

.member-gallery figcaption {
	margin-top: 4px;
	color: var(--orange-dark);
	font-size: 10px;
	font-weight: 800;
	line-height: 1.1;
}

.member-gallery figure.is-clickable {
	position: relative;
	cursor: zoom-in;
	transition: transform 0.2s ease, filter 0.2s ease;
}

.member-gallery figure.is-clickable img {
	transition: filter 0.2s ease, transform 0.2s ease;
}

.member-gallery figure.is-clickable:hover,
.member-gallery figure.is-clickable:focus-visible {
	transform: rotate(0deg) scale(1.12);
	outline: none;
	z-index: 3;
}

.member-gallery figure.is-clickable:hover img,
.member-gallery figure.is-clickable:focus-visible img {
	filter: drop-shadow(0 16px 22px rgba(82, 51, 24, 0.3));
}

.member-gallery figure.is-clickable::after {
	content: "🔍";
	position: absolute;
	top: 4px;
	right: -2px;
	font-size: 26px;
	line-height: 1;
	opacity: 0;
	transform: scale(0.2) rotate(-25deg);
	transition: opacity 0.18s ease, transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
	pointer-events: none;
}

.member-gallery figure.is-clickable:hover::after,
.member-gallery figure.is-clickable:focus-visible::after {
	opacity: 1;
	transform: scale(1) rotate(0deg);
}

/* =========================================================
	メンバー詳細モーダル
	========================================================= */

.member-modal[hidden] {
	display: none;
}

.member-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: grid;
	place-items: center;
	padding: 20px;
	opacity: 0;
	transition: opacity 0.25s ease;
}

.member-modal.is-open {
	opacity: 1;
}

.member-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(18, 24, 33, 0.55);
	backdrop-filter: blur(2px);
}

.member-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(420px, 100%);
	min-height: 312px;
	display: flex;
	align-items: center;
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 24px 60px rgba(18, 24, 33, 0.28);
	padding: clamp(24px, 4vw, 34px);
	transform: translateY(12px) scale(0.97);
	transition: transform 0.25s ease;
}

.member-modal.is-open .member-modal__dialog {
	transform: translateY(0) scale(1);
}

.member-modal__close {
	position: absolute;
	top: 10px;
	right: 12px;
	width: 34px;
	height: 34px;
	background: transparent;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	transition: background 0.18s ease;
}

.member-modal__close::before,
.member-modal__close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 15px;
	height: 2px;
	border-radius: 2px;
	background: #5b6470;
	transition: background 0.18s ease;
}

.member-modal__close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.member-modal__close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.member-modal__close:hover {
	background: rgba(18, 24, 33, 0.08);
}

.member-modal__close:hover::before,
.member-modal__close:hover::after {
	background: #1b2330;
}

.member-modal__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	padding: 0;
	background: #fff;
	border: 1px solid rgba(18, 24, 33, 0.1);
	border-radius: 50%;
	box-shadow: 0 4px 14px rgba(18, 24, 33, 0.14);
	cursor: pointer;
	transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.member-modal__nav:hover {
	background: #fafafa;
	box-shadow: 0 6px 18px rgba(18, 24, 33, 0.2);
}

.member-modal__nav:active {
	transform: translateY(-50%) scale(0.92);
}

.member-modal__chevron {
	display: block;
	width: 11px;
	height: 11px;
	border-top: 2.5px solid #6b7280;
	border-right: 2.5px solid #6b7280;
	transition: border-color 0.18s ease;
}

.member-modal__nav:hover .member-modal__chevron {
	border-top-color: var(--orange, #ff7e1f);
	border-right-color: var(--orange, #ff7e1f);
}

.member-modal__nav--prev .member-modal__chevron {
	transform: translateX(2px) rotate(-135deg);
}

.member-modal__nav--next .member-modal__chevron {
	transform: translateX(-2px) rotate(45deg);
}

.member-modal__nav--prev {
	left: -22px;
}

.member-modal__nav--next {
	right: -22px;
}

.member-modal__body {
	display: flex;
	align-items: center;
	gap: clamp(16px, 3vw, 24px);
	width: 100%;
}

.member-modal__photo {
	flex: 0 0 auto;
	width: clamp(96px, 28vw, 120px);
}

.member-modal__photo img {
	width: 100%;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 10px 16px rgba(82, 51, 24, 0.18));
}

.member-modal__info {
	flex: 1 1 auto;
	min-width: 0;
}

.member-modal__roman {
	margin: 0 0 2px;
	color: var(--orange, #ff7e1f);
	font-size: clamp(14px, 2vw, 16px);
	font-weight: 800;
	letter-spacing: 0.02em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.member-modal__name {
	margin: 0 0 14px;
	min-height: calc(1.25em * 2);
	display: flex;
	align-items: center;
	color: #1b2330;
	font-size: clamp(18px, 2.6vw, 22px);
	font-weight: 800;
	line-height: 1.25;
}

.member-modal__meta {
	margin: 0;
}

.member-modal__meta > div {
	display: flex;
	gap: 8px;
	align-items: center;
	padding: 11px 0;
	border-bottom: 1px solid rgba(255, 126, 31, 0.45);
}

.member-modal__meta > div:first-child {
	border-top: 1px solid rgba(255, 126, 31, 0.45);
}

.member-modal__meta dt {
	flex: 0 0 auto;
	color: #1b2330;
	font-size: 13px;
	font-weight: 800;
}

.member-modal__meta dd {
	margin: 0;
	min-width: 0;
	color: #6b7280;
	font-size: var(--dd-font, 13px);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

body.is-member-modal-open {
	overflow: hidden;
}

@keyframes memberLoop {

	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-50% - 9px));
	}

}
@media (max-width: 1080px) and (min-width: 821px) {

	.member-gallery {
		margin-top: clamp(14px, 2.4vw, 24px);
	}

}
@media (max-width: 820px){

	.member-gallery {
		width: calc(100vw - 30px);
		max-width: calc(100vw - 30px);
	}

	.member-gallery {
		position: relative;
		z-index: 3;
		width: 100%;
		max-width: none;
		margin: clamp(18px, 3.4vw, 24px) 0 0;
	}

	.member-gallery__label {
		display: block;
		width: calc(100vw - 30px);
		max-width: 360px;
		margin: 0 auto 10px;
		font-size: 13px;
		line-height: 1.45;
	}

	.member-gallery__viewport {
		padding: 16px 0 4px;
		overflow: hidden;
		mask-image: none;
	}

	.member-gallery__track {
		gap: clamp(14px, 4vw, 22px);
		animation-duration: 78s;
	}

	.member-gallery figure {
		width: clamp(86px, 14vw, 104px);
		transform: rotate(-1.5deg);
	}

	.member-gallery figure:nth-child(2n) {
		transform: rotate(1.5deg);
	}

	.member-gallery img {
		width: clamp(86px, 14vw, 104px);
		height: clamp(96px, 15.5vw, 116px);
	}

	.member-gallery figcaption {
		display: block;
		margin-top: 3px;
		font-size: clamp(8px, 1.8vw, 10px);
		line-height: 1.12;
	}

}

@media (max-width: 600px) {

	.member{
		padding-bottom: 6vw;
	}

	.member-modal {
		padding: 12px;
	}

	.member-modal__dialog {
		width: 100%;
		max-width: 100%;
		padding: clamp(20px, 5vw, 28px);
	}

	.member-modal__body {
		flex-direction: column;
		text-align: center;
		margin-top: 24px;
		gap: 8px;
		min-width: 0;
	}

	.member-modal__info {
		min-width: 0;
		width: 100%;
	}

	.member-modal__meta dd {
		white-space: normal;
	}

	.member-modal__nav {
		top: clamp(84px, calc(19vw + 24px), 106px);
		transform: none;
		width: 34px;
		height: 34px;
		font-size: 22px;
	}

	.member-modal__nav:active {
		transform: scale(0.92);
	}

	.member-modal__nav--prev {
		left: 4px;
	}

	.member-modal__nav--next {
		right: 4px;
	}

}

@media (max-width: 380px) {
	
	.member-gallery {
		margin-top: 12px;
	}

	.member-gallery__viewport {
		padding: 8px 0 0;
	}

	.member-gallery__track {
		gap: 12px;
	}

	.member-gallery figure {
		width: 76px;
	}

	.member-gallery img {
		width: 76px;
		height: 84px;
	}

	.member-gallery figcaption {
		margin-top: 2px;
		font-size: 7.5px;
		line-height: 1.05;
	}
	
}

/* =========================================================
PROBLEM
========================================================= */
.problem::before{
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	opacity: 0.1;
	background-image:
		radial-gradient(circle, rgba(255, 255, 255, 0.5) 1.4px, transparent 1.6px),
		linear-gradient(45deg, transparent 47%, rgba(255, 255, 255, 0.25) 49%, transparent 51%);
	background-size: 22px 22px, 170px 170px;
}
.problem .section-title {
	position: relative;
	z-index: 2;
	margin-bottom: clamp(42px, 4.7vw, 68px);
}

.problem-section-copy {
	display: block;
	margin-top: 10px;
	color: #5a5f6b;
	font-size: clamp(14px, 1.6vw, 18px);
	font-weight: 800;
	line-height: 1.6;
}

.problem.section-white {
	position: relative;
	overflow: visible;
	min-height: 300vh;
	margin-top: 0;
	padding: 0;
	background: #fff;
	color: var(--ink);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}

.problem.section-white > .container {
	position: -webkit-sticky; /* Hỗ trợ Safari cũ */
  position: sticky;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-sizing: border-box;
	height: 100vh;
	min-height: 0;
	padding-top: clamp(108px, 8vw, 142px);
	padding-bottom: clamp(18px, 3vw, 38px);
}

.problem.section-white > .container.is-problem-fixed,
.problem.section-white > .container.is-problem-bottom {
	z-index: 2;
	width: calc(100% - 48px);
	max-width: var(--container);
}

/* .problem.section-white > .container.is-problem-fixed {
	position: fixed;
	top: 0;
} */

.problem.section-white > .container.is-problem-bottom {
	position: absolute;
	bottom: 0;
	top: auto;
}

.problem.section-white::before,
.problem.section-white::after {
	content: none;
	position: absolute;
	border-radius: 42% 58% 52% 48% / 52% 42% 58% 48%;
	pointer-events: none;
}

.problem.section-white::before {
	top: clamp(152px, 18vw, 230px);
	left: max(-110px, -8vw);
	width: clamp(190px, 19vw, 280px);
	height: clamp(150px, 15vw, 220px);
	background: #ff7f1a;
	transform: rotate(-10deg);
}

.problem.section-white::after {
	top: 56px;
	right: max(-125px, -9vw);
	bottom: auto;
	width: clamp(230px, 24vw, 350px);
	height: clamp(170px, 18vw, 250px);
	background: #7465a8;
	transform: rotate(7deg);
}

.problem-type-stage {
	position: relative;
	z-index: 1;
	width: min(100%, 1220px);
	margin: 0 auto;
	padding: 0;
	isolation: isolate;
}

.problem-type-stage::before {
	content: none;
}

.problem-type-list {
	position: relative;
	aspect-ratio: 1916 / 821;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
	transition: opacity 220ms ease, transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.problem-type-item {
	position: absolute;
	inset: 0;
	aspect-ratio: 1916 / 821;
	width: 100%;
	margin: 0;
	padding: 0;
	background: transparent;
	/* Trạng thái mặc định: Chưa xuất hiện (nằm ở dưới) */
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  pointer-events: none;
  
  /* QUAN TRỌNG: Tự động fade và slide mượt mà bằng CSS khi có class thay đổi */
  transition: opacity 0.4s ease-in-out, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}

/* Trạng thái 1: Hình đang được kích hoạt hiển thị */
.problem-type-item.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
  z-index: 100;
}

/* Trạng thái 2: Hình đã cũ (cuộn qua rồi - bay nhẹ lên trên và ẩn đi) */
.problem-type-item.is-past {
  opacity: 0;
  transform: translate3d(0, -24px, 0);
  pointer-events: none;
  z-index: 90;
}

.problem-type-item picture,
.problem-type-item img {
	display: block;
}

.problem-type-item img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	user-select: none;
}

.problem-resolution.section-white {
	margin-top: 0;
	padding: 0;
	background: #fff;
	z-index: 2;
	overflow-x: hidden;
}

.problem-resolution > .container {
	display: flex;
	justify-content: center;
}

.problem-resolution__image {
	display: block;
	width: min(100%, 760px);
	height: auto;
	margin: clamp(-80px, -5vw, -32px) auto 0;
}

@media (min-width: 821px) {

	.problem-resolution.section-white {
		margin-top: 0;
	}

}

@media (min-width: 821px) and (max-width: 912px) {

	.problem.section-white {
		min-height: 0;
		padding: clamp(32px, 5vw, 52px) 0 clamp(48px, 7vw, 72px);
		overflow: hidden;
	}

	.problem.section-white > .container {
		height: auto;
		min-height: 0;
		padding-top: 0;
		padding-bottom: 0;
	}

	.problem.section-white > .container.is-problem-fixed,
	.problem.section-white > .container.is-problem-bottom {
		position: relative;
		right: auto;
		bottom: auto;
		left: auto;
		width: calc(100% - 48px);
		margin-inline: auto;
		transform: none;
	}

	.problem .section-title {
		margin-bottom: clamp(26px, 4vw, 40px);
	}

	.problem-type-stage {
		width: min(100%, 760px);
	}

	.problem-type-list {
		display: grid;
		gap: clamp(16px, 2.5vw, 24px);
		aspect-ratio: auto;
		overflow: visible;
	}

	.problem-type-item,
	.problem-type-item:nth-child(even) {
		position: relative;
		inset: auto;
		aspect-ratio: 1916 / 821;
		width: 100%;
		margin-left: 0;
		padding: 0;
		opacity: 1 !important;
		transform: none !important;
	}

	.problem-type-item img {
		height: auto;
	}

}
@media (max-width: 820px) {
	
	.problem.section-white {
		min-height: 0;
		margin-top: 0;
		padding: clamp(22px, 5vw, 40px) 0 clamp(40px, 8vw, 64px);
		overflow: hidden;
	}

	.problem.section-white > .container {
		height: auto;
		min-height: 0;
		padding-top: 0;
		padding-bottom: 0;
	}

	.problem.section-white > .container.is-problem-fixed,
	.problem.section-white > .container.is-problem-bottom {
		position: relative;
		bottom: auto;
		left: 0;
		right: 0;
		width: calc(100% - 30px);
		margin-inline: auto;
		transform: none;
	}

	.problem .section-title {
		margin-bottom: 22px;
	}

	.problem-type-stage {
		width: min(100%, 620px);
	}

	.problem-type-lead {
		margin-bottom: 20px;
		font-size: clamp(16px, 4.2vw, 20px);
	}

	.problem-type-list {
		display: grid;
		gap: clamp(10px, 3vw, 16px);
		aspect-ratio: auto;
		overflow: visible;
	}

	.problem-type-final {
		top: calc(50% + 46px);
	}

	.problem-type-item,
	.problem-type-item:nth-child(even) {
		position: relative;
		inset: auto;
		aspect-ratio: 1916 / 821;
		width: 100%;
		margin-left: 0;
		padding: 0;
		opacity: 1 !important;
		transform: none !important;
	}

	.problem-type-item img {
		height: auto;
	}

	.problem-type-note {
		margin-top: 0;
		color: #111;
		font-size: clamp(23px, 6.2vw, 31px);
	}

	.problem-type-answer strong {
		color: #111;
		font-size: clamp(32px, 8.2vw, 42px);
		line-height: 1.2;
	}
	
}
@media screen and (min-width: 914px) and (max-height: 800px){
	.problem .section-title{
		margin-bottom: -4vw;
	}
	.problem.section-white > .container{
		padding-top: 14vw;
	}
}

/* =========================================================
PRICE
========================================================= */
.plan-card{
	border: 1px solid var(--line);
	border-radius: 14px;
	background: var(--white);
	box-shadow: var(--shadow-soft);
}

.plan-card .button {
	grid-column: 2;
	width: 100%;
}

.plan-card__head p{
	word-break: auto-phrase;
}

.plan-card h3{
	margin: 0;
	color: var(--ink);
	font-size: 22px;
	font-weight: 800;
	line-height: 1.45;
}

.plan-card li{
	margin: 12px 0 0;
	color: var(--text);
	font-weight: 500;
}

.price-modern {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.price-modern::before,
.price-modern::after {
	content: none;
}

.price-modern::before {
	left: max(-210px, calc((100vw - 1180px) / 2 - 230px));
	bottom: clamp(80px, 8vw, 132px);
	width: clamp(320px, 25vw, 470px);
	height: clamp(360px, 32vw, 560px);
	opacity: 0.52;
	border-radius: 55% 45% 50% 50% / 48% 60% 40% 52%;
	background: radial-gradient(ellipse at 62% 52%, rgba(255, 126, 31, 0.15) 0 48%, transparent 69%);
}

.price-modern::after {
	top: clamp(92px, 8vw, 132px);
	right: max(-240px, calc((100vw - 1180px) / 2 - 285px));
	width: clamp(310px, 27vw, 500px);
	height: clamp(430px, 38vw, 670px);
	opacity: 0.44;
	border-radius: 42% 58% 50% 50% / 45% 52% 48% 55%;
	background:
		radial-gradient(ellipse at 42% 22%, rgba(81, 132, 220, 0.14) 0 38%, rgba(81, 132, 220, 0.078) 52%, transparent 78%),
		radial-gradient(ellipse at 78% 62%, rgba(81, 132, 220, 0.086) 0 30%, rgba(81, 132, 220, 0.048) 48%, transparent 72%);
	filter: blur(16px);
}

.price-modern .container {
	position: relative;
	z-index: 1;
}

.price-modern .container::before,
.price-modern .container::after {
	content: none;
}

.price-modern .section-title {
	margin-bottom: clamp(38px, 5vw, 64px);
}

.price-modern .plan-list {
	position: relative;
	isolation: isolate;
	gap: clamp(46px, 4.8vw, 68px);
	align-items: stretch;
	padding-top: clamp(22px, 2.8vw, 34px);
}

.price-modern .plan-list::before,
.price-modern .plan-list::after {
	content: none;
}

.price-modern .plan-card {
	--plan-accent: var(--orange);
	--plan-accent-soft: rgba(255, 126, 31, 0.14);
	position: relative;
	z-index: 1;
	display: flex;
	min-height: clamp(720px, 57vw, 820px);
	padding: clamp(36px, 3.8vw, 54px) clamp(30px, 3.1vw, 44px) clamp(30px, 3vw, 40px);
	border: 1.5px solid rgba(255, 126, 31, 0.58);
	border-radius: 26px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
		radial-gradient(circle at 20% 0%, rgba(255, 126, 31, 0.07), transparent 36%);
	box-shadow: 0 22px 62px rgba(21, 30, 42, 0.07);
}

.price-modern .plan-card--lab {
	--plan-accent: #4285f4;
	--plan-accent-soft: rgba(66, 133, 244, 0.12);
	position: relative;
	border-color: rgba(66, 133, 244, 0.55);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
		radial-gradient(circle at 78% 0%, rgba(66, 133, 244, 0.07), transparent 38%);
}

.price-modern .plan-card__head {
	display: flex;
	align-items: flex-start;
	min-height: 0;
	padding-top: clamp(18px, 1.9vw, 28px);
	padding-bottom: clamp(30px, 3vw, 42px);
	border-bottom: 1.5px dotted var(--plan-accent);
}

.price-modern .plan-card__head > div {
	width: 100%;
}

.price-modern .plan-card h3 {
	margin: 0 0 clamp(14px, 1.25vw, 18px);
	color: #0c2038;
	font-size: clamp(28px, 2.55vw, 38px);
	font-weight: 850;
	line-height: 1.25;
}

.price-modern .plan-card__head p {
	color: #202020;
	font-size: clamp(15px, 1.2vw, 17px);
	font-weight: 600;
	line-height: 1.62;
}

.plan-check-list {
	gap: 14px;
}

.plan-check-list li {
	position: relative;
	padding-left: 24px;
	color: #3d3d3d;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.6;
}

.plan-check-list li::before {
	content: "";
	position: absolute;
	top: calc(0.8em - 4px);
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #1a1a1a;
}

.plan-card__button {
	width: 100%;
	margin-top: 0;
	min-height: 58px;
}

.plan-campaign {
	position: absolute;
	top: clamp(-36px, -2.5vw, -28px);
	left: 50%;
	right: auto;
	display: inline-flex;
	min-width: clamp(230px, 19vw, 296px);
	min-height: clamp(54px, 4.7vw, 68px);
	align-items: center;
	justify-content: center;
	padding: 12px 30px;
	border: 4px solid rgba(255, 255, 255, 0.98);
	border-radius: 999px;
	color: #fff;
	background: var(--cta-red);
	box-shadow: 0 7px 16px rgba(25, 32, 40, 0.09);
	font-size: clamp(18px, 1.6vw, 24px);
	font-weight: 900;
	line-height: 1;
	text-align: center;
	transform: translateX(-50%);
	white-space: nowrap;
}

.price-modern .plan-price {
	flex: 0 0 auto;
	min-width: 0;
	min-height: clamp(216px, 17vw, 252px);
	padding: clamp(22px, 2.3vw, 30px) 0 clamp(18px, 2vw, 24px);
	border-bottom: 0;
	overflow: hidden;
}

.price-modern .plan-price b {
	color: #ff9f25;
	font-size: clamp(58px, 5.55vw, 84px);
	font-weight: 900;
	text-shadow: none;
}

.price-modern .plan-price strong {
	color: #ff9f25;
	font-size: clamp(22px, 2.2vw, 32px);
	line-height: 1.18;
}

.price-modern .plan-price small {
	max-width: 520px;
	margin-right: auto;
	margin-left: auto;
	color: #777b80;
	font-size: clamp(12px, 0.98vw, 13px);
	font-weight: 700;
	line-height: 1.65;
	text-align: center;
}

.price-modern .plan-price small span {
	display: block;
	color: inherit;
	font: inherit;
	letter-spacing: 0;
}

.price-modern .plan-card--spot h3,
.price-modern .plan-card--lab h3 {
	white-space: nowrap;
	font-size: clamp(20px, 2.5vw, 34px);
	line-height: 1.18;
}

.price-modern .plan-price__spot-row {
	display: inline-flex;
	flex-basis: 100%;
	max-width: 100%;
	min-width: 0;
	align-items: baseline;
	justify-content: center;
	gap: clamp(6px, 1vw, 12px);
	white-space: nowrap;
}

.price-modern .plan-price__spot-row span,
.price-modern .plan-price__spot-row em,
.price-modern .plan-price__now em {
	flex: 0 0 auto;
	white-space: nowrap;
}

.price-modern .plan-price--lab small {
	max-width: min(100%, 560px);
	color: #7a7d81;
	font-size: clamp(10px, 0.72vw, 11.5px);
	font-weight: 700;
	line-height: 1.7;
}

.price-modern .plan-price--lab small span {
	white-space: nowrap;
}

.price-modern .plan-price--lab b {
	color: #4285f4;
	font-size: clamp(54px, 5.1vw, 76px);
	text-shadow: none;
}

.price-modern .plan-price__now em:first-of-type {
	color: #111;
	font-weight: 900;
}

.price-modern .plan-price__base,
.price-modern .plan-price__now {
	line-height: 1.15;
	white-space: nowrap;
}

.price-modern .plan-price__now {
	width: 100%;
	max-width: 100%;
	gap: clamp(6px, 1vw, 12px);
	flex-wrap: nowrap;
	align-items: baseline;
	justify-content: center;
	min-width: 0;
}

.price-modern .plan-card--spot .plan-price__spot-row,
.price-modern .plan-card--spot .plan-price__spot-row span,
.price-modern .plan-card--spot .plan-price b,
.price-modern .plan-card--spot .plan-price em {
	white-space: nowrap;
}

.price-modern .plan-price--lab strong {
	position: static;
	min-width: 0;
	padding: 0;
	border: 0;
	color: #4285f4;
	background: transparent;
	box-shadow: none;
	font-size: clamp(16px, 1.5vw, 20px);
	transform: none;
}

.price-modern .plan-accordions {
	gap: 14px;
	flex: 1 1 auto;
	margin: 0;
}

.price-modern .plan-accordion {
	border-radius: 8px;
	background: #fff;
	border: 1px solid rgba(13, 29, 50, 0.08);
	box-shadow: none;
}

.price-modern .plan-card--spot .plan-accordion {
	border-color: rgba(255, 159, 37, 0.22);
}

.price-modern .plan-card--lab .plan-accordion {
	border-color: rgba(66, 133, 244, 0.2);
}

.price-modern .plan-accordion summary {
	min-height: 52px;
	padding: 13px 48px 13px 20px;
	font-size: clamp(14px, 1.25vw, 17px);
	font-weight: 900;
}

.price-modern .plan-accordion summary::after {
	color: #111;
}

.price-modern .plan-accordion--spot[open],
.price-modern .plan-card--spot .plan-accordion[open] {
	border-color: rgba(255, 159, 37, 0.4);
}

.price-modern .plan-accordion--lab[open],
.price-modern .plan-card--lab .plan-accordion[open] {
	border-color: rgba(66, 133, 244, 0.3);
}

.price-modern .plan-accordion__body {
	padding: 4px 20px 16px;
}

.price-modern .plan-accordion[open]:first-child .plan-accordion__body {
	min-height: 216px;
}

.price-modern .plan-accordion[open]:nth-child(2) .plan-accordion__body {
	min-height: 208px;
}

.price-modern .plan-accordion__body p {
	margin: 10px 0 0;
	font-size: clamp(13px, 1.04vw, 14px);
	line-height: 1.75;
}

.price-modern .price-table {
	border-top: 0;
}

.price-modern .price-table div {
	min-height: 0;
	padding: 10px 0;
	gap: 18px;
	align-items: center;
}

.price-modern .price-table dt,
.price-modern .price-table dd {
	font-size: clamp(11px, 0.84vw, 12px);
	line-height: 1.5;
}

.price-modern .price-table dd {
	color: #1a1a1a;
	font-weight: 900;
}

.price-modern .plan-card--lab .price-table dd {
	color: #1a1a1a;
}

.price-modern .plan-check-list {
	margin-top: 1px;
}

.price-modern .plan-card__button {
	min-height: 58px;
	margin: 0 0 clamp(30px, 3.2vw, 42px);
	border: 0;
	border-radius: 999px;
	box-shadow: none;
	font-size: clamp(17px, 1.55vw, 22px);
}

.price-modern .plan-card--spot .plan-card__button {
	background: #ff9f25;
}

.price-modern .button--blue {
	background: #4285f4;
	box-shadow: none;
}

.price-modern .plan-card__button:hover,
.price-modern .plan-card__button:focus-visible {
	box-shadow: none;
}

.plan-refund-banner {
	display: block;
	width: 100%;
	max-width: 720px;
	margin: clamp(32px, 4vw, 52px) auto 0;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 18px 46px rgba(21, 30, 42, 0.12);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plan-refund-banner img {
	display: block;
	width: 100%;
	height: auto;
}

.plan-refund-banner:hover,
.plan-refund-banner:focus-visible {
	transform: translateY(-3px);
	box-shadow: 0 24px 56px rgba(21, 30, 42, 0.18);
}

.plan-choice {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 3;
	display: grid;
	width: clamp(98px, 8.4vw, 126px);
	min-height: clamp(150px, 15vw, 210px);
	place-items: center;
	padding: 20px 12px;
	border-radius: 999px;
	color: #111;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 18px 46px rgba(21, 30, 42, 0.13);
	text-align: center;
	transform: translate(-50%, -50%);
}

.plan-choice i {
	width: 34px;
	height: 34px;
	opacity: 0.72;
	background-image: radial-gradient(var(--orange) 1.5px, transparent 1.5px);
	background-size: 8px 8px;
}

.plan-choice i:last-of-type {
	background-image: radial-gradient(#5f93f2 1.5px, transparent 1.5px);
}

.plan-choice span {
	color: #111;
	font-size: clamp(13px, 1.2vw, 16px);
	font-weight: 800;
	line-height: 1.7;
	white-space: nowrap;
}

.plan-choice b {
	color: var(--cta-red);
}

.plan-character {
	position: absolute;
	z-index: 2;
	display: block;
	width: clamp(112px, 10vw, 148px);
	height: auto;
	pointer-events: none;
	user-select: none;
	filter: drop-shadow(0 12px 20px rgba(21, 30, 42, 0.08));
}

.plan-character--spot {
	top: -58px;
	left: 24px;
}

.plan-character--lab {
	top: -64px;
	right: 24px;
}

.price.section-soft {
	background: var(--cream);
}

.plan-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(22px, 3.2vw, 34px);
	align-items: stretch;
	padding-top: 22px;
}

.plan-card {
	position: relative;
	display: flex;
	min-width: 0;
	min-height: 100%;
	flex-direction: column;
	padding: clamp(22px, 2.6vw, 30px);
	overflow: visible;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: var(--white);
	box-shadow: var(--shadow-soft);
}

.plan-card--lab {
	padding-top: clamp(22px, 2.6vw, 30px);
}

.plan-card__head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) clamp(66px, 6.4vw, 86px);
	gap: 18px;
	align-items: center;
	min-height: 142px;
	padding-bottom: 18px;
	border-bottom: 1px dashed rgba(21, 21, 21, 0.18);
}

.plan-card h3 {
	margin: 12px 0 8px;
	color: var(--ink);
	font-size: clamp(22px, 2vw, 27px);
	font-weight: 800;
	line-height: 1.28;
}

.plan-card__head p {
	margin: 0;
	color: #3d3d3d;
	font-size: clamp(14px, 1.2vw, 16px);
	font-weight: 500;
	line-height: 1.6;
}

.plan-icon {
	display: grid;
	width: clamp(66px, 6.4vw, 86px);
	aspect-ratio: 1;
	place-items: center;
	border-radius: 50%;
	background: #f4f6f8;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 72%;
	border: 1px solid rgba(255, 163, 37, 0.5);
}

.plan-icon--code {
	background: #f4f6f8 url("../img/price/price-icon-code-trim-20260526.png") center / 58% no-repeat;
}

.plan-icon--team {
	background: var(--navy-soft) url("../img/price/price-icon-team-trim-20260526.png") center / 62% no-repeat;
	border-color: rgba(47, 66, 87, 0.22);
}

.plan-price {
	display: flex;
	min-height: 236px;
	flex-wrap: wrap;
	align-items: baseline;
	align-content: center;
	justify-content: center;
	gap: 8px 10px;
	padding: 18px 0 16px;
	text-align: center;
}

.plan-price span {
	color: var(--ink);
	font-size: clamp(16px, 1.5vw, 20px);
	font-weight: 700;
}

.plan-price b {
	color: var(--price-red);
	font-size: clamp(44px, 4.6vw, 58px);
	font-weight: 800;
	line-height: 0.98;
	letter-spacing: 0;
}

.plan-price em {
	color: var(--ink);
	font-style: normal;
	font-size: clamp(16px, 1.5vw, 21px);
	font-weight: 800;
}

.plan-price strong {
	flex-basis: 100%;
	color: var(--price-red);
	font-size: clamp(19px, 1.9vw, 25px);
	font-weight: 800;
	line-height: 1.3;
}

.plan-price small {
	flex-basis: 100%;
	margin-top: 8px;
	color: #777;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.55;
}

.plan-price--lab {
	gap: 6px 8px;
	padding-top: 18px;
}

.plan-price--lab strong {
	position: absolute;
	top: -24px;
	left: 50%;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: min(320px, 58%);
	padding: 12px 28px 13px;
	border: 2px solid var(--white);
	border-radius: var(--pill);
	color: var(--white);
	background: #dc3a2e;
	box-shadow: 0 12px 24px rgba(22, 35, 49, 0.18);
	font-size: 17px;
	font-weight: 800;
	line-height: 1.05;
	text-align: center;
	transform: translateX(-50%);
}

.plan-price__base {
	flex-basis: 100%;
}

.plan-price__now {
	display: flex;
	flex-basis: 100%;
	align-items: baseline;
	justify-content: center;
	gap: 8px;
}

.plan-price__now em:first-of-type {
	color: var(--price-red);
	font-size: clamp(20px, 2.4vw, 32px);
}

.plan-price--lab b {
	color: var(--price-red);
}

.plan-accordions {
	display: grid;
	flex: 1 1 auto;
	align-content: start;
	gap: 8px;
	margin: 0 0 18px;
}

.plan-accordion {
	overflow: hidden;
	border-radius: 5px;
	background: #fff;
	border: 1px solid rgba(21, 21, 21, 0.08);
}

.plan-accordion--spot[open] {
	border-color: rgba(255, 159, 37, 0.4);
}

.plan-accordion--lab[open] {
	border-color: rgba(66, 133, 244, 0.3);
}

.plan-accordion summary {
	position: relative;
	display: flex;
	min-height: 42px;
	align-items: center;
	padding: 12px 48px 12px 18px;
	color: var(--ink);
	font-size: clamp(14px, 1.16vw, 17px);
	font-weight: 700;
	line-height: 1.35;
	cursor: pointer;
	list-style: none;
}

.plan-accordion summary::-webkit-details-marker {
	display: none;
}

.plan-accordion summary::after {
	content: "+";
	position: absolute;
	top: 50%;
	right: 18px;
	color: var(--ink);
	font-size: 26px;
	font-weight: 500;
	line-height: 1;
	transform: translateY(-50%);
}

.plan-accordion[open] summary::after {
	content: "−";
}

.plan-accordion[open] summary {
	background:
		linear-gradient(90deg, transparent 0%, rgba(21, 21, 21, 0.14) 18%, rgba(21, 21, 21, 0.14) 82%, transparent 100%)
		bottom / 100% 1px no-repeat;
}

.plan-card--lab .plan-accordion[open] summary {
	background:
		linear-gradient(90deg, transparent 0%, rgba(21, 21, 21, 0.14) 18%, rgba(21, 21, 21, 0.14) 82%, transparent 100%)
		bottom / 100% 1px no-repeat;
}

.plan-accordion__body {
	padding: 0 16px 10px;
}

.plan-accordion__body p {
	margin: 8px 0 0;
	color: #3d3d3d;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.65;
}

.price-table {
	margin: 0;
	border-top: 1px solid rgba(21, 21, 21, 0.08);
}

.price-table div {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 16px;
	align-items: center;
	min-height: 34px;
	border-bottom: 1px solid rgba(21, 21, 21, 0.08);
}

.price-table dt,
.price-table dd {
	margin: 0;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.42;
}

.price-table dt {
	color: #555;
}

.price-table dd {
	color: var(--orange-deep);
	text-align: right;
	white-space: nowrap;
}

.lab-feature-list,
.plan-check-list {
	display: grid;
	gap: 8px;
	margin: 12px 0 0;
	padding: 0;
	list-style: none;
}

.lab-feature-list {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lab-feature-list li {
	display: grid;
	gap: 8px;
	justify-items: center;
	color: var(--navy-deep);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.35;
	text-align: center;
}

.lab-feature-list img {
	width: 42px;
	height: 42px;
	object-fit: contain;
}


@media (max-width: 860px) {
	.plan-list {
		grid-template-columns: 1fr;
		row-gap: clamp(40px, 9vw, 56px);
		max-width: 760px;
		margin-inline: auto;
	}

	.price-modern .plan-list {
		gap: 44px;
		padding-top: 16px;
	}

	.price-modern .plan-list::before,
	.price-modern .plan-list::after {
		display: none;
	}

	.plan-choice {
		position: relative;
		top: auto;
		left: auto;
		width: min(100%, 300px);
		min-height: 0;
		grid-template-columns: 1fr auto 1fr;
		margin: -12px auto -4px;
		padding: 12px 18px;
		border-radius: 999px;
		transform: none;
	}

	.plan-choice span {
		white-space: nowrap;
	}

	.plan-character {
		width: 118px;
	}

}

@media (max-width: 820px){

	.plan-card {
		grid-template-columns: 1fr;
	}

	.plan-card {
		padding: 24px;
	}

	.plan-card .button {
		grid-column: auto;
		width: 100%;
	}

}

@media (max-width: 680px) {

	.price.section-soft {
		padding-top: 43px;
		padding-bottom: 48px;
	}

	.plan-card {
		padding: 20px;
	}

	.plan-card__head {
		grid-template-columns: minmax(0, 1fr) 72px;
		gap: 14px;
		min-height: auto;
		padding-bottom: 22px;
	}

	.plan-icon {
		width: 72px;
	}

	.plan-card h3 {
		margin-top: 12px;
	}

	.plan-price {
		padding: 22px 0 20px;
	}

	.plan-price b {
		font-size: 46px;
	}

	.plan-accordion summary {
		min-height: 52px;
		padding-right: 46px;
		padding-left: 14px;
	}

	.plan-accordion summary::after {
		right: 16px;
	}

	.plan-accordion__body {
		padding-right: 14px;
		padding-left: 14px;
	}

	.price-table div {
		grid-template-columns: 1fr;
		gap: 4px;
		padding: 10px 0;
	}

	.price-table dd {
		text-align: left;
	}

	.lab-feature-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.price-modern {
		background:
			radial-gradient(circle at 0% 72%, rgba(255, 126, 31, 0.10) 0 86px, transparent 87px),
			linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
	}

	.price-modern .plan-card {
		min-height: 0;
		padding: 34px 18px 24px;
		border-radius: 20px;
	}

	.price-modern .plan-card h3 {
		font-size: clamp(25px, 7.2vw, 34px);
	}

	.price-modern .plan-price b,
	.price-modern .plan-price--lab b {
		font-size: clamp(44px, 12vw, 72px);
	}

	.price-modern .plan-price--lab small span {
		white-space: nowrap;
	}

	.plan-campaign {
		position: absolute;
		top: -24px;
		left: 50%;
		transform: translateX(-50%);
		min-width: 180px;
		min-height: 46px;
		margin-left: 0;
		padding: 10px 20px;
		border-width: 2px;
		vertical-align: middle;
		font-size: 15px;
	}

	.plan-character {
		display: none;
	}

	.price-modern .plan-card.plan-card--spot h3,
	.price-modern .plan-card.plan-card--lab h3 {
		white-space: nowrap;
		font-size: clamp(20px, 5.7vw, 34px);
		line-height: 1.18;
	}

}

@media (max-width: 460px) {
	.plan-card {
		padding: 18px 14px;
	}

	.plan-card__head {
		grid-template-columns: 1fr;
	}

	.plan-icon {
		order: -1;
	}

	.plan-price {
		justify-content: center;
		text-align: center;
	}

	.plan-price small {
		font-size: 11px;
		line-height: 1.65;
		overflow-wrap: anywhere;
	}

	.plan-price--lab {
		overflow: hidden;
	}

	.plan-price--lab small span {
		display: block;
	}

	.plan-price__now {
		flex-wrap: nowrap;
		gap: 4px 6px;
		min-width: 0;
	}

	.plan-price strong,
	.plan-price small {
		text-align: center;
	}

	.plan-price--lab strong {
		top: -23px;
		width: calc(100% - 20px);
		min-width: 0;
		padding: 10px 14px;
		font-size: 15px;
	}

	.lab-feature-list {
		gap: 10px;
	}

	.plan-card__button {
		flex: 0 0 auto;
		width: 100%;
		max-width: 100%;
		min-height: 58px;
	}
	
}

@media (max-width: 360px) {

	.price-modern .plan-price--lab small {
		font-size: 8.8px;
	}

	.price-modern .plan-price--lab small,
	.price-modern .plan-price--lab small span {
		font-size: 8.8px;
	}

	.price-modern .plan-price__now {
		gap: 3px;
	}

	.price-modern .plan-price__now em:first-of-type {
		font-size: 17px;
	}

	.price-modern .plan-price__now em:last-child {
		font-size: 14px;
	}

	.price-modern .plan-price--lab b {
		font-size: 41px;
	}

}

/* =========================================================
INTRO
========================================================= */
#sec-intro{
  padding: 54px 0px 68px;
}

#sec-intro h2{
  text-align: center;
  font-size: 30px;
  line-height: 1.6;
  font-weight: 500;
  color: #000;
  margin: 0 0 32px;
}

#sec-intro h2 span{
  color: #4285F4;
}

#sec-intro .sec-intro-icon {
	height: 51px;
	display: flex;
	align-items: center;
	justify-content: center;
}

#sec-intro .sec-intro-icon img{
	margin: 0 auto;
	max-height: 51px;
	max-width: 51px;
	width: auto;
	height: auto;
	display: block;
}

#sec-intro .sec-intro-row{
  display: flex;
	justify-content: center;
	column-gap: 40px;
	text-align: center;
}

#sec-intro .sec-intro-box{
	max-width: 307px;
	width: 32%;
  text-align: center;
  padding: 30px 20px 29px;  
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: rgba(249, 250 ,251);
  line-height: 1.4;
  font-size: 14px;
  color: rgb(75 ,85 ,99);
}

#sec-intro .sec-intro-box:hover{
  border-color: #4285F4;
}

#sec-intro .sec-intro-box h3{
  font-size: 20px;
  color: #000;
  font-weight: 700;
  margin: 14px 0px 9px;
}

#sec-intro .sec-intro-txt{
	font-size: 18px;
	margin: 0;
}

@media screen and (max-width: 980px) {

	#sec-intro .sec-intro-row{
		column-gap: 20px;
	}

	#sec-intro .sec-intro-txt{
		font-size: 14px;
	}

	#sec-intro .sec-intro-box{
		padding: 30px 15px 29px;
	}

}
@media screen and (max-width: 767px) {

  #sec-intro{
  	padding: 10vw 0;
  }

  #sec-intro h2{
    font-size: 5.8vw;
    margin: 0 -3vw 6vw;
  }

  #sec-intro .sec-intro-row{
    display: block;
  }

  #sec-intro .sec-intro-box{
    width: 90%;
    margin:0px auto 4vw;
    padding: 6vw 5%;
  }

  #sec-intro .sec-intro-box h3{
    font-size: 5vw;
  }

}


/* =========================================================
SERVICE CTA
========================================================= */
.service-cta{
	background: #f39c46;
	position: relative;
	padding: 63px 0 64px;
}

.service-cta:before{
	content: '';
	width: 0; height: 0;
  border-style: solid;
  border-width: 0px 24px 25px 24px;
  border-color: transparent transparent #f39c46 transparent;
  transform: rotate(0deg) translateX(-50%);
	position: absolute;
	left: 50%;
	top: -24px;
}

.service-cta__box{
	background: #fff;
	box-shadow: 0 6px 6px rgba(0,0,0,0.1);
	border-radius: 30px;
	padding: 52px 25px 53px;
	text-align: center;
}

.service-cta__h2{
	font-size: 33px;
	font-weight: 700;
	line-height: 2;
	padding-bottom: 16px;
	margin: 0 0 23px;
	position: relative;
}

.service-cta__h2:after{
	content: '';
	width: 30px;
	height: 3px;
	background: #e76b39;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.service-cta__h2 small{
	display: block;
	font-size: 16px;
	letter-spacing: 0.08em;
	color: #e76b39;
}

.service-cta__h2 span{
	color: #e76b39;
}

.service-cta__txt{
	font-weight: 500;
	margin: 0 0 38px;
}

.service-cta__list{
	max-width: 890px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin: 0 auto 21px;
}

.service-cta__col{
	max-width: 432px;
	width: 49%;
	border: 1px solid #e5e7eb;
	border-radius: 20px;
	padding: 40px 20px;
}

.service-cta__col--icon{
	width: 72px;
	margin: 0 auto 20px;
}

.service-cta__col--txt{
	color: #e76b39;
	font-size: 15px;
	font-weight: 700;
	line-height: 2;
	margin: 0 0 14px;
}

.service-cta__col--btn{
	max-width: 350px;
	width: 100%;
	margin: 0 auto;
}

.service-cta__col--btn a{
	display: block;
	background: #e76b39;
	color: #fff;
	border-radius: 15px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.6;
	padding: 16px 10px 15px;
	box-shadow: 0 10px 10px rgba(231,107,57,0.1);
	transition: 0.3s all ease;
}

.service-cta__col--btn a:hover{
	opacity: 0.8;
}

.service-cta__note{
	max-width: 851px;
	width: 100%;
	margin: 0 auto;
	color: #a2a9b4;
	font-size: 12px;
	line-height: 1.8;
	text-align: left;
}

@media screen and (max-width: 767px) {

	.service-cta{
		padding: 10vw 0;
	}

	.service-cta:before{
		border-width: 0px 5vw 5vw 5vw;
		top: -4.5vw;
	}

	.service-cta__box{
		border-radius: 6vw;
		padding: 10vw 4vw;
	}

	.service-cta__h2{
		font-size: 7vw;
		padding-bottom: 2vw;
		margin: 0 0 4vw;
	}

	.service-cta__h2:after{
		width: 8vw;
		height: 3px;
	}

	.service-cta__h2 small{
		font-size: 4vw;
	}

	.service-cta__txt{
		margin: 0 0 8vw;
	}

	.service-cta__list{
		max-width: none;
		flex-direction: column;
		gap: 6vw;
		margin: 0 0 4vw;
	}

	.service-cta__col{
		max-width: none;
		width: 100%;
		border-radius: 4vw;
		padding: 30px 4vw 40px;
	}

	.service-cta__col--btn a:hover{
		opacity: 1;
	}

	.service-cta__note{
		max-width: none;
	}

}
@media screen and (max-width: 370px){

	.service-cta__col--btn a{
		font-size: 4.2vw;
	}

}

/* =========================================================
REASON
========================================================= */
.reason.section-soft {
	background: var(--white);
}

.reason-asset-section {
	position: relative;
	padding: clamp(35px, 3.6vw, 56px) 0 clamp(55px, 5.3vw, 77px);
	background:
		linear-gradient(0deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
		linear-gradient(45deg, rgba(9, 28, 52, 0.035) 25%, transparent 25%, transparent 75%, rgba(9, 28, 52, 0.035) 75%),
		linear-gradient(45deg, rgba(9, 28, 52, 0.035) 25%, transparent 25%, transparent 75%, rgba(9, 28, 52, 0.035) 75%),
		var(--white);
	background-position: 0 0, 0 0, 18px 18px, 0 0;
	background-size: auto, 36px 36px, 36px 36px, auto;
	overflow: hidden;
}

.reason-asset-section {
	overflow: hidden;
}

.reason-asset-section .container {
	position: relative;
	z-index: 1;
}

.reason-flag {
	position: absolute;
	z-index: 0;
	display: block;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	pointer-events: none;
	opacity: 0.28;
}

.reason-flag--jp {
	top: clamp(-40px, -2.6vw, -16px);
	left: clamp(-120px, -7vw, -60px);
	width: clamp(380px, 44vw, 640px);
	height: clamp(272px, 31vw, 456px);
	background-image: url("../img/reason/reason-bg-flag-japan.webp?v=20260603-09");
	transform: rotate(-7deg);
}

.reason-flag--vn {
	top: clamp(-34px, -2.2vw, -10px);
	right: clamp(-120px, -7vw, -60px);
	width: clamp(380px, 44vw, 640px);
	height: clamp(272px, 31vw, 456px);
	background-image: url("../img/reason/reason-bg-flag-vietnam.webp?v=20260603-09");
	transform: rotate(6deg);
}

.reason-asset-section .section-title {
	margin-bottom: clamp(30px, 4vw, 44px);
}

.reason-asset-section .section-title span em {
	color: var(--orange);
	font-style: normal;
	font-weight: 800;
}

.reason-board {
	position: relative;
	display: grid;
	gap: clamp(22px, 2.2vw, 30px);
	width: min(100%, 720px);
	margin: clamp(36px, 4.2vw, 52px) auto 0;
	padding: clamp(8px, 1vw, 14px) 0 clamp(12px, 1.6vw, 20px);
	isolation: isolate;
}

.reason-board__card {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-items: center;
	min-height: clamp(220px, 19vw, 270px);
	padding: clamp(40px, 4.2vw, 56px) clamp(40px, 5.6vw, 80px);
	border: 1.5px solid rgba(255, 136, 34, 0.7);
	border-radius: clamp(18px, 1.8vw, 24px);
	background: rgba(255, 255, 255, 0.955);
	box-shadow: 0 14px 36px rgba(15, 32, 55, 0.055);
	overflow: visible;
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 720ms ease, transform 820ms cubic-bezier(0.16, 1, 0.3, 1);
	will-change: opacity, transform;
}

.reason-board.is-visible .reason-board__card {
	opacity: 1;
	transform: translateY(0);
}

.reason-board.is-visible .reason-board__card--01 {
	transition-delay: 120ms;
}

.reason-board.is-visible .reason-board__card--02 {
	transition-delay: 280ms;
}

.reason-board.is-visible .reason-board__card--03 {
	transition-delay: 440ms;
}

.reason-board.is-visible .reason-board__card--04 {
	transition-delay: 600ms;
}

.reason-board__content {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	column-gap: clamp(16px, 2.2vw, 26px);
	row-gap: clamp(11px, 1.25vw, 15px);
	min-width: 0;
	max-width: 720px;
}

.reason-board__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	grid-column: 1;
	grid-row: 1;
	align-self: center;
	min-width: clamp(72px, 6.4vw, 88px);
	min-height: clamp(44px, 4vw, 54px);
	padding: 0 clamp(18px, 2vw, 24px);
	border-radius: 999px;
	color: var(--white);
	background: #ff9f25;
	font-size: clamp(28px, 2.55vw, 36px);
	font-weight: 900;
	line-height: 1;
}

.reason-board__rule {
	display: block;
	grid-column: 1 / -1;
	width: min(100%, 630px);
	margin: 0 0 clamp(0px, 0.5vw, 4px);
	border-top: 2px dashed rgba(255, 142, 36, 0.66);
}

.reason-board h3 {
	grid-column: 2;
	grid-row: 1;
	align-self: center;
	margin: 0;
	color: var(--ink);
	font-size: 27px;
	font-weight: 900;
	line-height: 1.4;
	letter-spacing: 0;
	white-space: nowrap;
	transform-origin: left center;
	will-change: transform;
}

.reason-board p {
	grid-column: 1 / -1;
	width: 100%;
	margin: 0;
	color: #343941;
	font-weight: 600;
}

.reason-board__line {
	display: block;
	white-space: nowrap;
	font-size: 18px;
	line-height: 1.95;
	transform-origin: left center;
	will-change: transform;
}

.reason-board__person {
	position: absolute;
	z-index: 3;
	display: block;
	height: auto;
	object-fit: contain;
	pointer-events: none;
	filter: drop-shadow(0 12px 16px rgba(21, 38, 66, 0.16));
}

.reason-board__person--laptop {
	top: -78px;
	right: clamp(12px, 2.4vw, 32px);
	width: clamp(70px, 7vw, 86px);
}

.reason-board__person--point-orange {
	top: clamp(14px, 2.2vw, 28px);
	left: clamp(-42px, -2.7vw, -26px);
	width: clamp(52px, 5.2vw, 64px);
}

.reason-board__person--jump {
	top: -54px;
	right: clamp(-34px, -2.4vw, -22px);
	width: clamp(56px, 5.6vw, 70px);
}

.reason-board__person--wave {
	bottom: -26px;
	left: clamp(-48px, -3vw, -30px);
	width: clamp(64px, 6.6vw, 82px);
}

@media (max-width: 820px) {

	.reason-flag {
		opacity: 0.22;
	}

	.reason-flag--jp,
	.reason-flag--vn {
		width: clamp(240px, 64vw, 380px);
		height: clamp(172px, 46vw, 272px);
	}

	.reason-board {
		gap: clamp(16px, 4vw, 24px);
		padding: 14px 0 18px;
	}

	.reason-board__card {
		min-height: clamp(150px, 38vw, 200px);
		padding: clamp(26px, 6vw, 36px) clamp(22px, 5.6vw, 36px);
	}

	.reason-board__content {
		max-width: none;
		column-gap: clamp(10px, 3vw, 16px);
	}

	.reason-board__line {
		display: inline;
		white-space: normal;
		word-break: normal;
		overflow-wrap: normal;
		line-break: strict;
		font-size: clamp(10px, 2.9vw, 15px);
	}

	.reason-board p {
		font-size: clamp(10px, 2.9vw, 15px);
		line-height: 1.85;
	}

	.reason-board__num {
		min-width: clamp(56px, 15vw, 68px);
		min-height: clamp(38px, 10vw, 46px);
		padding: 0 clamp(12px, 3vw, 18px);
		font-size: clamp(22px, 6vw, 28px);
	}

	.reason-board__person--laptop {
		top: -54px;
		right: clamp(8px, 3vw, 20px);
		width: clamp(54px, 15vw, 70px);
	}

	.reason-board__person--point-orange {
		top: clamp(10px, 3vw, 20px);
		left: clamp(-30px, -7vw, -18px);
		width: clamp(42px, 12vw, 56px);
	}

	.reason-board__person--jump {
		top: -40px;
		right: clamp(-22px, -5vw, -12px);
		width: clamp(46px, 13vw, 60px);
	}

	.reason-board__person--wave {
		bottom: -20px;
		left: clamp(-32px, -7vw, -20px);
		width: clamp(52px, 14vw, 68px);
	}

	.reason-grid {
		grid-template-columns: 1fr;
	}
	
	.reason-card img {
		height: 170px;
	}

	.reason-board__content {
		grid-template-columns: minmax(0, 1fr);
		justify-items: center;
		text-align: center;
	}

	.reason-board__num,
	.reason-board h3 {
		grid-column: 1;
		grid-row: auto;
	}

	.reason-board h3 {
		width: 100%;
		max-width: 100%;
		white-space: nowrap;
		font-size: clamp(13px, 4.05vw, 22px);
		line-height: 1.32;
		text-align: center;
		transform-origin: center;
	}

	.reason-board p {
		text-align: left;
	}

}

/*reason-extra*/
.reason-extra{
	padding-bottom: 100px;
}
.reason-extra-row{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}
.reason-extra-row__col{
	background: rgba(255,159,37,0.1);
	padding: 30px;
	text-align: center;
}
.reason-extra-row__col--ttl{
	font-size: 20px;
	line-height: 1.8;
	margin-bottom: 20px;
}
.reason-extra-row__col--icon{
	max-width: 130px;
	margin: 0 auto;
}
@media screen and (max-width: 767px){
	.reason-extra{
		padding-bottom: 15vw;
	}
	.reason-extra-row{
		grid-template-columns: repeat(1, 1fr);
	}
	.reason-extra-row__col{
		padding: 6vw;
	}
	.reason-extra-row__col--ttl{
		font-size: 5vw;
		margin-bottom: 4vw;
	}
	.reason-extra-row__col--txt{
		font-size: 13px;
	}
}

/* =========================================================
VOICE
========================================================= */
.voice.section-white {
	margin-top: -1px;
	padding-top: clamp(32px, 3.3vw, 47px);
	padding-bottom: clamp(48px, 5.3vw, 73px);
	background: var(--white);
}

.voice .section-title {
	margin-bottom: 24px;
}

.voice-slider {
	position: relative;
	display: grid;
	align-items: stretch;
	justify-items: stretch;
	padding-top: 70px;
	padding-bottom: 24px;
	overflow: visible;
}

.voice-slider::-webkit-scrollbar {
	display: none;
}

.voice-card {
	grid-area: 1 / 1;
	display: block;
	width: 100%;
	min-height: 0;
	padding: clamp(28px, 3.4vw, 40px) clamp(28px, 3.6vw, 44px) clamp(30px, 3.6vw, 42px);
	border: 1px solid var(--line);
	border-radius: 20px;
	background: var(--white);
	transform-origin: center top;
	transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1), opacity 500ms ease;
}

.voice-card {
	box-shadow: none;
}

.voice-slider:not(:has(.voice-card[style])) .voice-card:first-child {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	
	.voice-card {
		transition: opacity 300ms ease;
	}

}

.slider-shell {
	position: relative;
	width: min(100%, 500px);
	margin-inline: auto;
}

.voice-card__head {
	display: flex;
	align-items: center;
	gap: clamp(16px, 2vw, 26px);
	padding-bottom: 18px;
	border-bottom: 1px dashed var(--line);
}

.voice-card__avatar {
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	width: clamp(72px, 7vw, 92px);
	height: clamp(72px, 7vw, 92px);
	border-radius: 50%;
	background: #f4f6f8;
	overflow: hidden;
}

.voice-card__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.voice-card__name {
	min-width: 0;
}

.voice-card__name small {
	display: block;
	color: var(--muted);
	font-size: clamp(13px, 1.1vw, 15px);
	font-weight: 700;
}

.voice-card__name strong {
	display: block;
	margin-top: 2px;
	color: var(--ink);
	font-size: clamp(20px, 2vw, 27px);
	font-weight: 800;
	line-height: 1.3;
}

.voice-card h3 {
	margin: clamp(22px, 2.4vw, 30px) 0 0;
	color: var(--ink);
	font-size: clamp(19px, 1.8vw, 24px);
	font-weight: 800;
	line-height: 1.5;
}

.voice-card p {
	margin: clamp(12px, 1.4vw, 16px) 0 0;
	color: var(--text);
	font-size: clamp(16px, 1.3vw, 17px);
	font-weight: 500;
	line-height: 2.05;
}
@media (max-width: 820px){

	.voice.section-white {
		padding-top: 24px;
	}

	.voice-slider {
		grid-auto-columns: 100%;
	}

	.voice-card {
		grid-template-columns: 1fr;
		min-height: auto;
		padding: 28px 18px;
	}

	.voice-card__label {
		display: none;
	}

	.voice-card__head,
	.voice-card h3,
	.voice-card p {
		grid-column: 1;
	}

	.voice-card__head {
		gap: 16px;
		padding-bottom: 16px;
	}

}

/* =========================================================
SERVICE
========================================================= */
.service-card h3{
	margin: 0;
	color: var(--ink);
	font-size: 22px;
	font-weight: 800;
	line-height: 1.45;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

.service .section-title {
	margin-bottom: clamp(30px, 4vw, 48px);
}

.service.section-white {
	background: var(--cream);
}

.service-grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: clamp(12px, 1.35vw, 18px);
}

.service-card{
	border: 1px solid var(--line);
	border-radius: 14px;
	background: var(--white);
	box-shadow: var(--shadow-soft);
}

.service-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	min-width: 0;
	min-height: clamp(230px, 17vw, 290px);
	padding: clamp(20px, 1.8vw, 30px) clamp(16px, 1.5vw, 20px) clamp(20px, 1.7vw, 25px);
	border-radius: var(--radius);
	text-align: center;
	transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 240ms ease, border-color 240ms ease;
}

.service-card:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 163, 37, 0.4);
	box-shadow: var(--shadow);
}

.service-card img {
	width: clamp(82px, 7vw, 104px);
	height: clamp(82px, 7vw, 104px);
	margin-bottom: clamp(14px, 1.4vw, 20px);
	object-fit: contain;
	filter: none;
	transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover img {
	transform: scale(1.08) rotate(-2deg);
}

.service-card {
	--svc-title-fs: clamp(16px, 1.25vw, 20px);
	--svc-note-ratio: 0.64;
}

.service-card h3 {
	min-height: calc(var(--svc-title-fs) * 1.4 * 2);
	font-size: var(--svc-title-fs);
	line-height: 1.4;
	overflow-wrap: anywhere;
	word-break: normal;
}

.service-card__note {
	margin: clamp(8px, 0.8vw, 12px) 0 0;
	color: var(--muted);
	font-size: min(13.5px, calc(var(--svc-title-fs) * var(--svc-note-ratio)));
	line-height: 1.75;
	text-align: left;
	letter-spacing: 0.01em;
	overflow-wrap: normal;
}

.service-note {
	margin: clamp(22px, 3vw, 34px) 0 0;
	color: var(--ink);
	font-weight: 700;
	text-align: center;
}

@media (max-width: 1180px) {

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

	.service-card {
		min-height: clamp(240px, 24vw, 280px);
	}

}

@media (max-width: 820px) {

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

	.service-card {
		min-height: clamp(230px, 36vw, 270px);
		padding: 24px 20px;
	}

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

}

@media (max-width: 680px){

	.service .section-title {
		margin-bottom: 28px;
	}

	.service-card {
		min-height: 0;
		padding: 22px 16px 24px;
	}

	.service-card__note {
		text-align: center;
	}

}

@media (max-width: 380px) {

	.service-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}

	.service-card {
		padding: 15px 7px 17px;
	}

	.service-card img {
		width: 64px;
		height: 64px;
		margin-bottom: 10px;
	}

	.service-card {
		--svc-title-fs: 12px;
		--svc-note-ratio: 0.9;
	}

	.service-card h3 {
		line-height: 1.35;
	}

	.service-card__note {
		line-height: 1.58;
		text-align: center;
	}

}


/* =========================================================
WORKS
========================================================= */
.works::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	opacity: 0.1;
	background-image:
		radial-gradient(circle, rgba(255, 255, 255, 0.5) 1.4px, transparent 1.6px),
		linear-gradient(45deg, transparent 47%, rgba(255, 255, 255, 0.25) 49%, transparent 51%);
	background-size: 22px 22px, 170px 170px;
}

.works.section-white {
	background: var(--white);
}

.works::before {
	display: none;
}

.works-stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin: 34px 0 44px;
}

.works-stats div {
	display: flex;
	min-height: 132px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 26px 20px;
	border: 1px solid var(--line);
	border-radius: 0;
	color: var(--muted);
	background: var(--white);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
	text-align: center;
}

.works-stats div > span {
	display: block;
	color: var(--muted);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.works-stats strong {
	display: inline-flex;
	align-items: baseline;
	gap: 2px;
	color: var(--ink);
	font-size: clamp(18px, 1.7vw, 22px);
	font-weight: 700;
}

.works-stats b {
	display: inline-block;
	color: var(--ink);
	font-size: clamp(40px, 4.6vw, 58px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.01em;
	font-variant-numeric: tabular-nums;
}

.works-legacy-list {
	display: grid;
	gap: clamp(54px, 6vw, 78px);
}

.works-category h3 {
	position: relative;
	display: flex;
	align-items: center;
	gap: clamp(12px, 1.8vw, 20px);
	margin: 0 0 clamp(24px, 3vw, 34px);
	padding: 0 0 14px;
	border-bottom: 4px solid var(--orange);
	color: var(--ink);
	font-size: clamp(24px, 2.7vw, 36px);
	font-weight: 800;
	line-height: 1.2;
}

.works-category h3::after {
	display: none;
}

.works-category h3 span {
	flex: 0 0 auto;
	color: var(--orange);
	background: transparent;
	font-size: clamp(26px, 3.2vw, 40px);
	font-weight: 800;
}

.works-legacy-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.works-legacy-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	color: var(--orange-deep);
	background: var(--white);
	box-shadow: var(--shadow-soft);
	text-decoration: none;
	transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.works-legacy-card img {
	display: block;
	width: 100%;
	aspect-ratio: 290 / 180;
	object-fit: cover;
	background: var(--orange-soft);
	transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.works-legacy-card span,
.works-legacy-card strong,
.works-legacy-card em {
	display: block;
	min-width: 0;
	font-size: clamp(15px, 1.35vw, 18px);
	font-style: normal;
	font-weight: 500;
	line-height: 1.45;
	overflow-wrap: anywhere;
}

.works-legacy-card span {
	padding: clamp(16px, 1.4vw, 22px) clamp(16px, 1.4vw, 22px) 0;
	font-size: clamp(13px, 0.95vw, 14px);
	font-weight: 700;
	color: var(--orange-deep);
}

.works-legacy-card strong {
	padding: 4px clamp(16px, 1.4vw, 22px) 0;
	font-weight: 700;
	color: var(--ink);
	transition: color 240ms ease;
}

.works-legacy-card em {
	margin-top: 6px;
	padding: 0 clamp(16px, 1.4vw, 22px) clamp(18px, 1.6vw, 24px);
	color: var(--muted);
	font-size: clamp(12px, 1.1vw, 14px);
}

.works-legacy-card:hover,
.works-legacy-card:focus-visible {
	border-color: rgba(255, 163, 37, 0.4);
	box-shadow: var(--shadow);
	transform: translateY(-4px);
}

.works-legacy-card:hover img,
.works-legacy-card:focus-visible img {
	transform: scale(1.05);
}

.works-legacy-card:hover strong,
.works-legacy-card:focus-visible strong {
	color: var(--orange-deep);
}

@media (max-width: 820px) {

	.works-stats {
		grid-template-columns: 1fr;
		gap: 12px;
		margin-bottom: 38px;
	}

	.works-stats div {
		min-height: 92px;
	}

	.works-category h3 {
		padding-bottom: 12px;
		font-size: clamp(22px, 5vw, 30px);
	}

	.works-category h3 span {
		font-size: clamp(28px, 6vw, 38px);
	}

	.works-category h3 span::after {
		content: none;
	}

	.works-feature {
		padding: 22px;
	}

	.works-feature h3 {
		font-size: 22px;
	}

}

@media (max-width: 600px) {

	.works-legacy-grid {
		grid-template-columns: 1fr;
	}

}

/* =========================================================
FLOW
========================================================= */
.flow-list h3 {
	margin: 0;
	color: var(--ink);
	font-size: 22px;
	font-weight: 800;
	line-height: 1.45;
}

.flow-list p {
	margin: 12px 0 0;
	color: var(--text);
	font-weight: 500;
}

.flow.section-white {
	background: var(--white);
}

.flow .container--narrow {
	max-width: 720px;
}

.flow-list {
	display: grid;
	gap: clamp(28px, 3.4vw, 36px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.flow-list li {
	position: relative;
	display: grid;
	min-height: clamp(88px, 7.4vw, 108px);
	place-items: center;
	padding: clamp(16px, 1.8vw, 22px) clamp(18px, 3.2vw, 38px);
	border: 0;
	border-radius: 0;
	color: var(--white);
	background: #ff9f25;
	text-align: center;
	box-shadow: none;
}

.flow-list li::after {
	content: "";
	position: absolute;
	bottom: -24px;
	left: 50%;
	width: 16px;
	height: 16px;
	border-right: 2px solid rgba(21, 21, 21, 0.52);
	border-bottom: 2px solid rgba(21, 21, 21, 0.52);
	transform: translateX(-50%) rotate(45deg);
}

.flow-list li:last-child::after {
	display: none;
}

.flow-list h3,
.flow-list p {
	margin: 0;
}

.flow-list h3 {
	color: var(--white);
	font-size: clamp(23px, 2.15vw, 30px);
	line-height: 1.35;
	text-shadow: none;
}

.flow-list p {
	max-width: 840px;
	margin-top: clamp(8px, 0.9vw, 10px);
	color: var(--white);
	font-size: clamp(13px, 1.05vw, 15px);
	font-weight: 700;
	line-height: 1.65;
}

.flow-list .reveal--replay {
	transition: opacity 540ms ease, transform 540ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 681px) and (max-width: 960px) {

	.flow-list h3 {
		font-size: clamp(20px, 2.4vw, 23px);
	}

	.flow-list p {
		font-size: clamp(12px, 1.35vw, 13px);
	}

}

@media (max-width: 980px){

	.flow-list li::after{
		bottom: -18px;
	}

}

@media (max-width: 680px) {

	.flow-list {
		gap: 30px;
	}

	.flow-list li {
		min-height: auto;
		padding: 20px 16px;
	}

	.flow-list h3 {
		font-size: clamp(17px, 4.6vw, 22px);
	}

	.flow-list p {
		font-size: clamp(12px, 3.2vw, 14px);
		line-height: 1.75;
		word-break: normal;
		overflow-wrap: normal;
		line-break: strict;
	}

	.flow-list p br {
		display: none;
	}

}


/* =========================================================
FAQ
========================================================= */
.faq-item p {
	word-break: auto-phrase;
}

.faq-item p {
	margin: 12px 0 0;
	color: var(--text);
	font-weight: 500;
}

.faq-item {
	border: 1px solid var(--line);
	border-radius: 14px;
	background: var(--white);
	box-shadow: var(--shadow-soft);
}

.faq.section-white {
	background: var(--cream);
}

.faq .container--narrow {
	width: calc(100% - 48px);
	max-width: 920px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 20px;
	padding: clamp(32px, 4vw, 56px) clamp(24px, 3.5vw, 52px);
	box-shadow: var(--shadow-soft);
}

.faq .section-title {
	margin-bottom: clamp(28px, 3.5vw, 44px);
}

.faq-tabs {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-bottom: clamp(28px, 3.5vw, 40px);
}

.faq-tab {
	min-height: 54px;
	padding: 12px 16px;
	border: 1.5px solid #cfcac3;
	border-radius: 10px;
	color: #070707;
	background: var(--white);
	font-size: clamp(13px, 1.05vw, 15px);
	font-weight: 700;
	line-height: 1.35;
	text-align: center;
	transition: background 200ms ease, border-color 200ms ease, color 200ms ease, transform 200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-tab:hover,
.faq-tab:focus-visible {
	border-color: var(--orange-deep);
	background: #f4f6f8;
	transform: translateY(-2px);
}

.faq-tab.is-active {
	border-color: var(--orange-deep);
	color: var(--white);
	background: var(--orange-deep);
}

.faq-panel[hidden] {
	display: none;
}

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

.faq-item {
	overflow: hidden;
	border: 1.5px solid transparent;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 1px 2px rgba(40, 47, 58, 0.05);
	transition: border-color 200ms ease;
}

.faq-item.is-open {
	border-color: var(--orange);
}

.faq-item button {
	position: relative;
	display: flex;
	width: 100%;
	min-height: 64px;
	align-items: center;
	padding: 20px 60px 20px 24px;
	border: 0;
	color: #050505;
	background: transparent;
	font-size: clamp(16px, 1.3vw, 19px);
	font-weight: 700;
	line-height: 1.6;
	text-align: left;
}

.faq-item button::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 12px;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	background:
		linear-gradient(currentColor 0 0) center / 100% 2px no-repeat,
		linear-gradient(currentColor 0 0) center / 2px 100% no-repeat;
	color: var(--orange-deep);
	transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item button::after {
	content: none;
}

.faq-item button[aria-expanded="true"]::before {
	transform: rotate(135deg);
}

.faq-item p {
	display: block;
	max-width: none;
	max-height: 0;
	margin: 0;
	padding: 0 24px;
	overflow: hidden;
	color: #2a2a2a;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.85;
	transition: max-height 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.is-open p {
	padding: 6px 24px 26px;
}

@media (max-width: 768px) {

	.faq .container--narrow {
		width: calc(100vw - 44px);
		max-width: calc(100vw - 44px);
	}

	.faq-tabs {
		grid-template-columns: 1fr;
		gap: 8px;
		margin-bottom: 34px;
	}

	.faq-tab {
		min-height: 50px;
		padding: 12px 14px;
		font-size: 14px;
	}

	.faq-item button {
		min-height: 58px;
		padding: 18px 48px 18px 18px;
		font-size: 16px;
		line-height: 1.6;
	}

	.faq-item button::before {
		right: 16px;
		width: 18px;
		height: 18px;
		margin-top: -9px;
	}

	.faq-item p {
		margin-right: 0;
		margin-left: 0;
		padding: 0 18px;
		font-size: 16px;
		line-height: 1.85;
	}

	.faq-item.is-open p {
		padding: 6px 18px 24px;
	}

}

@media (max-width: 820px){

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

}

@media (max-width: 460px){
	
	.faq .container--narrow {
		width: calc(100vw - 30px);
		max-width: calc(100vw - 30px);
	}

	.faq .section-title {
		margin-bottom: 28px;
	}

	.faq-tabs {
		grid-template-columns: 1fr;
		gap: 8px;
		margin-bottom: 30px;
	}

	.faq-tab {
		min-height: 48px;
		padding: 11px 12px;
		font-size: 13.5px;
	}

	.faq-item button {
		min-height: 56px;
		padding: 16px 40px 16px 16px;
		font-size: 15px;
		line-height: 1.6;
	}

	.faq-item button::before {
		right: 14px;
		width: 18px;
		height: 18px;
		margin-top: -9px;
	}

	.faq-item p {
		margin-right: 0;
		margin-left: 0;
		padding: 0 16px;
		font-size: 14px;
		line-height: 1.9;
	}

	.faq-item.is-open p {
		padding: 6px 16px 22px;
	}

}

/* =========================================================
TOPICS
========================================================= */
.topics.section-white {
	background: var(--cream);
}

.topics-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(18px, 2vw, 28px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.topics-card {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow-soft);
	overflow: hidden;
	transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 240ms ease, border-color 240ms ease;
}

.topics-card:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 163, 37, 0.4);
	box-shadow: var(--shadow);
}

.topics-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.topics-card__thumb {
	display: block;
	aspect-ratio: 900 / 471;
	overflow: hidden;
	background: var(--orange-soft);
}

.topics-card__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.topics-card:hover .topics-card__thumb img {
	transform: scale(1.05);
}

.topics-card__body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: clamp(16px, 1.4vw, 22px) clamp(16px, 1.4vw, 22px) clamp(18px, 1.6vw, 24px);
}

.topics-card__meta {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.topics-card__date {
	font-size: clamp(12px, 0.9vw, 13px);
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--muted);
}

.topics-card__title {
	font-size: clamp(15px, 1.1vw, 17px);
	font-weight: 700;
	line-height: 1.55;
	color: var(--ink);
}

.topics-card:hover .topics-card__title {
	color: var(--orange-deep);
}

.topics-more {
	margin-top: clamp(32px, 3.4vw, 48px);
	text-align: center;
}

.topics-more__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: clamp(13px, 1.1vw, 16px) clamp(28px, 2.4vw, 40px);
	border: 1px solid var(--orange-deep);
	border-radius: 999px;
	color: var(--orange-deep);
	background: var(--white);
	font-family: inherit;
	font-size: clamp(14px, 1vw, 16px);
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.topics-more__btn:hover {
	background: var(--orange-deep);
	color: var(--white);
	transform: translateY(-2px);
}

.topics-more__arrow {
	transition: transform 220ms ease;
}

.topics-more__btn:hover .topics-more__arrow {
	transform: translateX(4px);
}

@media (max-width: 820px) {

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

@media (max-width: 560px) {

	.topics-grid {
		grid-template-columns: minmax(0, 1fr);
		max-width: 420px;
		margin-inline: auto;
	}

}


/* =========================================================
STAFF
========================================================= */
.staff.section-white{
	background: var(--cream);
	padding-bottom: 80px;
}

.staff .section-title small.note{
	display: block;
	color: #a2a9b4;
	font-size: 12px;
	line-height: 1.2;
	margin-top: 0;
}

.staff .hidden-row {
  display: none; 
}

.staff-grid{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.staff-grid__box{
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 3px 3px rgba(0,0,0,0.1);
	padding: 20px;
}

.staff-grid__info{
	width: 100%;
	min-height: 78px;
	display: table;
}

.staff-grid__info--avatar{
	width: 64px;
	display: table-cell;
	vertical-align: top;
}

.staff-grid__info--name{
	display: table-cell;
	vertical-align: top;
	padding-left: 15px;
	font-weight: 700;
}

.staff-grid__info--name small{
	display: block;
	font-size: 12px;
	line-height: 1.2;
	color: #000;
	margin-bottom: 6px;
}

.staff-grid__info--name span.name-alpabet{
	display: block;
	font-size: 18px;
	line-height: 1.2;
}

.staff-grid__info--name span.exp{
	/* color: #999; */
	display: block;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.2;
	margin-top: 5px;
}

.staff-grid__tag{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 12px;
	line-height: 1.8;
	padding: 0;
	margin: 15px 0 0;
}

.staff-grid__tag li{
	list-style-type: none;
	padding: 0 5px;
	border-radius: 5px;
}

.staff-grid__tag--gray{
	/* color: #5b6771; */
	background: #f3f4f6;
}

.staff-grid__tag--html{
	/* color: #ea580c; */
	background: #fff7ed;
}

.staff-grid__tag--wp{
	/* color: #326cec; */
	background: #eff6ff;
}

.staff-grid__tag--react{
	/* color: #089dc8; */
	background: #ecfeff;
}

.staff-grid__tag--vue{
	/* color: #0c9976; */
	background: #ecfdf5;
}

.staff-grid__tag--node{
	/* color: #1da75a; */
	background: #f0fdf4;
}

.staff-grid__tag--php{
	/* color: #9a36ed; */
	background: #faf5ff;
}

.staff-grid__tag--mysql{
	/* color: #198ecc; */
	background: #f0f9ff;
}

.staff-grid__tag--figma{
	/* color: #c029d3; */
	background: #fdf4ff;
}

.staff-grid__tag--xd{
	/* color: #e11d48; */
	background: #fff1f2;
}

.staff-grid__tag--psd{
	/* color: #001E36; */
	background: #cce8ff;
}

.staff-grid__tag--ui{
	/* color: #8040ee; */
	background: #f5f3ff;
}

.staff-grid__tag--sass{
	/* color: #db2a7b; */
	background: #fdf2f8;
}

.staff-grid__tag--bem{
	/* color: #0d998f; */
	background: #f0fdfa;
}

.staff .more-btn{
	display: block;
	width: 200px;
	margin: 38px auto 0;
	cursor: pointer;
	/* color: #64748b; */
	color: #000;
	background: #e2e8f0;
	border: none;
	border-radius: 30px;
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	line-height: 20px;
	padding: 5px 0 15px;
	position: relative;
	transition: 0.3s all ease;
}

.staff .more-btn:after{
	content: '';
	height: 6px;
	background-image: url('../img/shared/icon_down.jpg');
	background-size: 9px;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 4px;
}

.staff .more-btn:hover{
	opacity: 0.8;
}

@media screen and (max-width: 1080px) {

	.staff-grid{
		gap: 15px;
	}

	.staff-grid__box{
		padding: 20px;
	}

}

@media screen and (max-width: 900px){

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

}

@media screen and (max-width: 767px){

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

	.staff-grid__box{
		padding: 25px;
	}

}


/* =========================================================
MAILFORM
========================================================= */
.form-email {
  max-width: 800px;
	width: 100%;
  margin: 0 auto;
}
.form-email .form {
  width: 100%;
}
.form-email .col {
  border-bottom: 1px solid #cfc7ba;
  margin: 0 0 3%;
  width: 100%;
  padding-bottom: 3%;
	position: relative;
}
.form-email .col:after {
  content: '.' !important;
  clear: both !important;
  display: block !important;
  height: 0 !important;
  visibility: hidden !important;
}
.form-email .caption {
  float: left;
  width: 30%;
  font-weight: bold;
  line-height: 40px;
  position: relative;
	text-align: left;
	display: flex;
	align-items: center;
	column-gap: 10px;
	font-size: 14px;
}
.form-email .caption .mark-require img{
	width: 38px;
	height: auto;
}
.form-email .input {
  float: left;
  width: 70%;
}
.form-email .input input {
  border: 1px solid #d4cdc2;
  min-height: 44px;
  width: 100%;
	border-radius: 8px;
  padding: 8px 14px;
}
.form-email .input input[type='radio'],
.form-email .input input[type='checkbox'] {
  width: auto;
}

.form-email .input textarea {
  border: 1px solid #d4cdc2;
  height: 135px;
  width: 100%;
  padding: 8px 14px;
	border-radius: 8px;
  resize: none;
}
.form-email .input textarea::placeholder,
.form-email .input input::placeholder{
	font-size: 14px;
	font-weight: 500;
	color: #ccc;
}
#contact .submit{
	margin: 34px 0 28px;
}

#contact .submit button {
  background: none;
  border: none;
  cursor: pointer;
  background: #ffa325;
  /* color: #fff; */
  color: #000;
  width: 300px;
  line-height: 60px;
  text-align: center;
  font-size: 17px;
	font-weight: 700;
	border-radius: 40px;
}
#contact .submit button:hover {
  opacity: 0.7;
}

.legacy-privacy {
  border: 1px solid #ececeb;
  background: var(--white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.9;
	text-align: left;
}

.legacy-privacy summary {
  position: relative;
  min-height: 54px;
  padding: 14px 22px 14px 46px;
  cursor: pointer;
  color: #151515;
  font-weight: 800;
  list-style: none;
}

.legacy-privacy summary::-webkit-details-marker {
  display: none;
}

.legacy-privacy summary::before,
.legacy-privacy summary::after {
  content: "";
  position: absolute;
  top: 27px;
  left: 20px;
  width: 15px;
  height: 2px;
  background: #151515;
}

.legacy-privacy summary::after {
  transform: rotate(90deg);
}

.legacy-privacy[open] summary::after {
  transform: rotate(0deg);
}

.legacy-privacy p {
  margin: 0;
  padding: 0 22px 22px;
}

.legacy-privacy a {
  color: var(--orange-dark);
  text-decoration: underline;
}
.legacy-privacy a:hover{
	text-decoration: none;
}


.legacy-contact__tel {
  margin: 46px 0 0;
  padding: 20px;
  border: 1px solid #cacaca;
  background: var(--white);
  color: var(--cta-red);
  text-align: center;
  font-weight: 800;
  line-height: 1.35;
}

.legacy-contact__tel span,
.legacy-contact__tel small {
  display: block;
}

.legacy-contact__tel a {
  display: block;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: 0;
}

.legacy-contact__tel small {
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
}

.fc-form .submit-confirm{
	display: none !important;
}

@media screen and (max-width: 767px) {
  .form-email .caption .mark-require img {
    width: 32px;
    height: auto;
    margin-top: -2px;
  }
  .form-email .caption .mark-require{
    padding: 0;
    float: none;
    margin-left: 8px;
  }
}
.fcv-confirm {
  display: none;
  width: 100%;
}
.fcv-confirm:before {
  content: '';
  opacity: 0;
  margin: auto;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  visibility: hidden;
  z-index: 99999;
}
.fcv-confirm:after {
  content: '';
  opacity: 0;
  margin: auto;
  background: url(../img/shared/loading.svg) no-repeat center;
  width: 120px;
  height: 120px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  visibility: hidden;
  z-index: 99999;
  overflow: hidden;
}
.fcv-confirm.sending:before,
.fcv-confirm.sending:after {
  opacity: 1;
  visibility: visible;
}
.fcv-confirm dl {
  width: 100%;
  margin-bottom: 30px;
}
.fcv-confirm dl dt {
  float: left;
  width: 30%;
}
.fcv-confirm dl dd {
  float: left;
  width: 70%;
}

label + label {
  margin-left: 8px;
}
@media screen and (max-width: 767px) {
  .form-email .input textarea,
  .form-email .input input {
    width: 100%;
    font-size: 11px;
  }
  .form-email .caption {
    width: 100%;
  }
  .form-email .input {
    width: 100%;
  }
}

.form-email .input input.is-error {
  border: 1px solid #fc1520;
  background: #fee6e7;
}

.fc-form [class^='error'] {
  color: #fff;
  background-color: #ff9900;
  font-size: 0.9em;
  line-height: 2.2;
  position: absolute;
  z-index: 1;
  padding: 0 12px;
  border-radius: 2px;
  max-width: 300px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  left: 32%;
  top: 52%;
  bottom: auto;
  letter-spacing: 2px;
	display: none;
}

.fc-form [class^='error']:before {
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -10px;
  left: 5px;
  content: '';
  border: 5px solid transparent;
  border-bottom-color: #ffa325;
}
@media screen and (-webkit-min-device-pixel-ratio:0) and (max-device-width: 1024px) {
  input[type="text"]:focus,
  textarea:focus,
  select:focus {
    font-size: 16px !important;
  }
}


/* =========================================================
LEGACY
========================================================= */
.legacy-about__lead,
.legacy-about__text{
	word-break: auto-phrase;
}

.legacy-wrap {
	width: min(calc(100% - 48px), 1120px);
	margin-inline: auto;
}

.legacy-wrap--narrow {
	width: min(calc(100% - 48px), 760px);
}

.legacy-about {
	padding: 18px 0 0;
	color: var(--ink);
	background: var(--white);
	text-align: center;
}

.legacy-about__title {
	display: grid;
	justify-items: center;
	gap: 10px;
	margin: 0;
	font-size: clamp(23px, 2.6vw, 36px);
	font-weight: 800;
	line-height: 1.45;
	letter-spacing: 0;
}

.legacy-about__title img {
	width: min(323px, 54vw);
}

.legacy-about__title em {
	font-style: normal;
	font-weight: 800;
}

.legacy-about__text {
	margin: clamp(18px, 2.4vw, 30px) auto 0;
	color: #252525;
	font-size: clamp(13px, 1.05vw, 15px);
	font-weight: 500;
	line-height: 2.15;
}

.legacy-about__lead {
	margin: clamp(70px, 7.5vw, 104px) 0 0;
	color: var(--ink);
	font-size: clamp(26px, 3.2vw, 42px);
	font-weight: 800;
	line-height: 1.45;
	letter-spacing: 0;
}

.legacy-about__text--compact {
	margin-top: clamp(20px, 2.5vw, 34px);
}

.director-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 450px));
	justify-content: center;
	gap: clamp(32px, 5vw, 64px);
	max-width: 1100px;
	margin: clamp(56px, 6vw, 88px) auto 0;
	padding: 0;
	list-style: none;
}

.director-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: clamp(360px, 37vw, 450px);
	justify-self: center;
	margin: 0;
	text-align: left;
}

.director-item__body {
	display: flex;
	flex-direction: column;
	width: max-content;
	max-width: 100%;
	min-width: 366px;
	align-self: center;
}

.director-item__role,
.director-item__name,
.director-item__text {
	max-width: 100%;
	white-space: nowrap;
	overflow-wrap: normal;
	word-break: keep-all;
}

.director-item__role {
	margin: 0 0 clamp(10px, 1vw, 14px);
	color: var(--ink);
	font-size: clamp(15px, 1.2vw, 18px);
	font-weight: 700;
}

.director-item__name {
	margin: 0 0 clamp(8px, 0.8vw, 12px);
	color: var(--ink);
	font-size: clamp(15px, 1.2vw, 18px);
	font-weight: 700;
	line-height: 1.6;
}

.director-item__text {
	margin: 0 0 clamp(4px, 0.5vw, 8px);
	color: var(--ink);
	font-size: clamp(14px, 1.1vw, 17px);
	font-weight: 700;
	line-height: 1.6;
}

.director-item__photo {
	display: block;
	width: clamp(190px, 18vw, 260px);
	aspect-ratio: 14 / 15;
	height: auto;
	align-self: center;
	margin-top: clamp(20px, 2.2vw, 32px);
	object-fit: cover;
	object-position: center 35%;
}

.legacy-media-grid {
	display: grid;
	grid-template-columns: minmax(190px, 1fr) minmax(320px, 532px) minmax(190px, 1fr);
	align-items: stretch;
	width: min(100%, 1530px);
	margin: clamp(62px, 6vw, 84px) auto 0;
	background: var(--orange);
}

.legacy-media-grid__col {
	display: grid;
	grid-template-rows: repeat(2, minmax(0, 1fr));
}

.legacy-media-grid img {
	width: 100%;
	height: 100%;
	min-height: 176px;
	object-fit: cover;
}

.legacy-media-grid__movie {
	display: grid;
	place-items: center;
	padding: clamp(34px, 4.6vw, 82px) 0;
	background: var(--orange);
}

.legacy-media-grid__movie iframe {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	border: 0;
}

.legacy-contact {
	padding: clamp(74px, 7vw, 106px) 0 clamp(40px, 4vw, 56px);
	background: var(--white);
	color: var(--ink);
	text-align: center;
}

.legacy-contact__title {
	margin: 0;
	color: var(--ink);
	font-weight: 800;
	line-height: 1.35;
}

.legacy-contact__title small {
	display: block;
	margin-bottom: 8px;
	color: var(--cta-red);
	font-size: clamp(17px, 1.7vw, 22px);
	font-weight: 800;
}

.legacy-contact__title span {
	display: block;
	font-size: clamp(30px, 3vw, 43px);
}

.legacy-contact__note {
	margin: 18px 0 34px;
	color: #222;
	font-size: 14px;
	font-weight: 500;
	line-height: 2;
}

.legacy-contact__tel {
	margin: 46px 0 0;
	padding: 20px;
	border: 1px solid #cacaca;
	background: var(--white);
	color: var(--cta-red);
	text-align: center;
	font-weight: 800;
	line-height: 1.35;
}

.legacy-contact__tel span,
.legacy-contact__tel small {
	display: block;
}

.legacy-contact__tel a {
	display: block;
	color: var(--ink);
	font-size: clamp(32px, 4vw, 44px);
	font-weight: 800;
	letter-spacing: 0;
}

.legacy-contact__tel small {
	color: var(--ink);
	font-size: 16px;
	font-weight: 500;
}

.legacy-footer {
	background: var(--white);
	color: var(--ink);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.9;
}

.legacy-footer .legacy-wrap {
	position: relative;
	padding: 72px 0 58px;
}

.legacy-footer__logo {
	display: none;
}

.legacy-footer__brand img {
	margin-inline: auto;
}

.legacy-footer__brand {
	margin: 0 0 34px;
	text-align: center;
}

.legacy-footer__info {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 40px;
	margin-top: 34px;
}

.legacy-footer__info p {
	margin: 0;
}

.legacy-footer__info a,
.legacy-footer__nav a,
.legacy-footer__links a {
	color: inherit;
}

.legacy-footer__info a:hover,
.legacy-footer__links a:hover,
.legacy-footer__nav a:hover{
	text-decoration: underline;
}

.legacy-footer__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 28px;
	padding: 32px 0 14px;
	margin-top: 28px;
	border-bottom: 1px solid #dedddc;
}

.legacy-footer__links {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 30px;
	padding-top: 18px;
}

.legacy-footer > small {
	display: block;
	padding: 28px 16px;
	background: var(--orange);
	/* color: var(--white); */
	color: #000;
	text-align: center;
	font-size: 14px;
	font-weight: 700;
}

@media (max-width: 900px) {

	.legacy-wrap,
	.legacy-wrap--narrow {
		width: calc(100vw - 48px);
	}

	.legacy-media-grid {
		grid-template-columns: minmax(130px, 1fr) minmax(260px, 1.5fr) minmax(130px, 1fr);
	}

	.legacy-media-grid img {
		min-height: 150px;
	}

	.legacy-footer > small{
		padding-bottom: 110px;
	}

	.legacy-footer__info {
		grid-template-columns: 1fr;
		gap: 22px;
	}

}

@media (max-width: 767px){

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

	.director-item__body{
		width: 100%;
	}

	.director-item{
		width: 100%;
	}

}

@media (max-width: 680px){

	.legacy-about {
		padding-top: 18px;
	}

	.legacy-about__text br,
	.legacy-about__text--compact br {
		display: none;
	}

	.legacy-about__text {
		text-align: left;
		line-height: 2;
	}

	.legacy-about__lead {
		margin-top: 54px;
	}

	.legacy-media-grid {
		grid-template-columns: 1fr;
		margin-top: 46px;
	}

	.legacy-media-grid__col {
		display: none;
	}

	.legacy-media-grid__movie {
		order: -1;
		padding: 22px;
	}

	.legacy-contact__tel {
		padding: 18px 12px;
	}

	.legacy-footer .legacy-wrap {
		padding-top: 54px;
	}

	.legacy-footer__nav,
	.legacy-footer__links {
		display: grid;
		grid-template-columns: 1fr;
		gap: 7px;
	}

	.director-list {
		grid-template-columns: minmax(0, 1fr);
		max-width: 360px;
	}

	.director-item {
		width: 100%;
		align-items: flex-start;
	}

	.director-item__body {
		width: 100%;
		align-self: flex-start;
	}

	.director-item__role,
	.director-item__name,
	.director-item__text {
		white-space: nowrap;
		font-size: clamp(12px, 3.25vw, 15px);
	}

}

@media (max-width: 460px){

	.legacy-about__title span {
		display: block;
		max-width: 100%;
		font-size: clamp(19px, 6vw, 30px);
		line-height: 1.35;
		white-space: nowrap;
	}

	.legacy-wrap,
	.legacy-wrap--narrow {
		width: calc(100vw - 30px);
	}

	.legacy-about__title img {
		width: min(260px, 70vw);
	}

	.legacy-contact {
		padding-bottom: 44px;
	}

	.legacy-contact__tel a {
		font-size: 30px;
	}

	.legacy-contact__tel small {
		font-size: 13px;
		line-height: 1.55;
		overflow-wrap: anywhere;
	}

	.legacy-footer > small {
		padding-bottom: 104px;
		font-size: 12px;
	}

}


/* =========================================================
NEWS
========================================================= */

#main-title {
	background: var(--cream);
	padding: 160px 0 40px;
	border-bottom: 1px solid var(--line);
}

#main-title .breadcrum {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0 auto;
	max-width: 1000px;
	width: calc(100% - 48px);
	font-size: 13px;
	color: var(--muted);
	gap: 8px;
	align-items: center;
}

#main-title .breadcrum li a {
	color: var(--muted);
	font-weight: 500;
	transition: color 0.2s;
}

#main-title .breadcrum li a:hover {
	color: var(--orange-deep);
}

#main-title .breadcrum li:not(:last-child)::after {
	content: ">";
	margin-left: 8px;
	color: #ccc;
}

#main-title .title-box {
	max-width: 1000px;
	width: calc(100% - 48px);
	margin: 20px auto 0;
}

#main-title .title-box h1 {
	margin: 0;
	display: flex;
	flex-direction: column;
}

#main-title .title-box h1 .jp {
	font-size: 32px;
	font-weight: 800;
	color: var(--ink);
	line-height: 1.35;
}

#main-title .title-box h1 .eng {
	font-size: 14px;
	font-weight: 700;
	color: var(--orange-deep);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin-top: 6px;
}

.main-content {
	padding: 80px 0;
	background: var(--white);
}

.news-list {
	display: flex;
	gap: 60px;
	align-items: flex-start;
}

.news-list .col-list {
	flex: 1;
	min-width: 0;
}

.news-list .col-side {
	width: 300px;
	flex-shrink: 0;
}

/* Detail content */
.detail-content article {
	background: var(--white);
}

.detail-content .entry-header {
	margin-bottom: 40px;
	border-bottom: 2px solid var(--line);
	padding-bottom: 25px;
}

.detail-content .entry-title {
	font-size: clamp(22px, 2.5vw, 30px);
	font-weight: 800;
	color: var(--ink);
	line-height: 1.45;
	margin: 0 0 15px 0;
}

.detail-content .entry-meta {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 14px;
	color: var(--muted);
	font-weight: 600;
}

.detail-content .cat-links a {
	padding: 4px 10px;
	background: var(--orange-deep);
	color: var(--white);
	border-radius: 4px;
	font-size: 12px;
	font-weight: 700;
	transition: opacity 0.2s, background 0.2s;
}

.detail-content .cat-links a:hover {
	opacity: 0.9;
	background: var(--orange);
}

.detail-content .entry-content {
	font-size: 16px;
	line-height: 1.85;
	color: var(--text);
}

.detail-content .entry-content img {
	max-width: 100%;
	height: auto;
	margin-bottom: 30px;
	border-radius: 8px;
	box-shadow: var(--shadow-soft);
}

.detail-content .entry-content iframe {
	max-width: 100% !important;
	height: auto !important;
	aspect-ratio: 16 / 9;
	margin-bottom: 30px;
	border-radius: 8px;
	box-shadow: var(--shadow-soft);
}

.detail-content .entry-content p {
	margin-bottom: 25px;
}

.detail-content .entry-content h2 {
	font-size: 22px;
	font-weight: 800;
	color: var(--ink);
	margin: 40px 0 20px 0;
	border-left: 4px solid var(--orange-deep);
	padding-left: 12px;
	line-height: 1.4;
}

.detail-content .entry-content h3 {
	font-size: 19px;
	font-weight: 800;
	color: var(--ink);
	margin: 30px 0 15px 0;
	line-height: 1.4;
}

/* Sidebar Styling */
.side-box {
	background: var(--cream);
	padding: 30px 24px;
	border-radius: var(--radius);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-soft);
}

.side-box h3 {
	font-size: 18px;
	font-weight: 800;
	color: var(--ink);
	border-bottom: 2px solid var(--orange-deep);
	padding-bottom: 12px;
	margin: 0 0 20px 0;
}

.side-box ul {
	list-style: none;
	padding: 0;
	margin: 0 0 40px 0;
}

.side-box ul:last-child {
	margin-bottom: 0;
}

.side-box ul li {
	margin-bottom: 14px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
	padding-bottom: 10px;
}

.side-box ul li:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.side-box ul li a {
	display: flex;
	align-items: center;
	color: var(--text);
	font-size: 15px;
	font-weight: 600;
	transition: color 0.2s, padding-left 0.2s;
}

.side-box ul li a span {
	color: var(--orange-deep);
	margin-right: 8px;
	font-size: 12px;
	font-weight: 700;
}

.side-box ul li a:hover {
	color: var(--orange-deep);
	padding-left: 4px;
}

/* Access Ranking section */
.recent_post {
	margin-bottom: 40px;
}

.recent_post h3 {
	font-size: 18px;
	font-weight: 800;
	color: var(--ink);
	border-bottom: 2px solid var(--orange-deep);
	padding-bottom: 12px;
	margin: 0 0 20px 0;
}

.recent_post .news-items {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.recent_post dl {
	display: flex;
	gap: 14px;
	margin: 0;
	padding-bottom: 15px;
	border-bottom: 1px dashed var(--line);
	align-items: center;
}

.recent_post dl:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.recent_post dt {
	position: relative;
	width: 65px;
	height: 65px;
	flex-shrink: 0;
}

.recent_post dt img {
	width: 65px;
	height: 65px;
	object-fit: cover;
	border-radius: 6px;
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: transform 0.3s;
}

.recent_post dl:hover dt img {
	transform: scale(1.05);
}

.recent_post dt .num {
	position: absolute;
	top: -6px;
	left: -6px;
	width: 22px;
	height: 22px;
	background: var(--muted);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 800;
	z-index: 1;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.recent_post dl:nth-child(1) dt .num {
	background: var(--cta-red);
}

.recent_post dl:nth-child(2) dt .num {
	background: var(--orange-deep);
}

.recent_post dl:nth-child(3) dt .num {
	background: var(--orange);
}

.recent_post dd {
	margin: 0;
	font-size: 14px;
	line-height: 1.45;
	font-weight: 700;
	flex-grow: 1;
}

.recent_post dd a {
	color: var(--text);
	transition: color 0.2s;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.recent_post dd a:hover {
	color: var(--orange-deep);
}

/* Archive List styling */
.col-list h2 {
	font-size: 24px;
	font-weight: 800;
	color: var(--ink);
	margin: 0 0 30px 0;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--orange-deep);
}

.col-list h2 .yr {
	color: var(--orange-deep);
	margin-right: 8px;
}

.col-list dl.date {
	display: flex;
	gap: 15px;
	font-size: 18px;
	font-weight: 800;
	margin: 0 0 20px 0;
	color: var(--muted);
}

.col-list .list {
	display: flex;
	flex-direction: column;
}

.col-list .list .item {
	padding: 24px 0;
	border-bottom: 1px solid var(--line);
}

.col-list .list .item:first-child {
	padding-top: 0;
}

.col-list .list .item dl {
	display: flex;
	align-items: center;
	gap: 15px;
	margin: 0 0 10px 0;
	font-size: 13px;
	font-weight: 600;
	color: var(--muted);
}

.col-list .list .item dl dt {
	color: var(--muted);
}

.col-list .list .item dl dd a {
	padding: 2px 8px;
	background: var(--orange-deep);
	color: var(--white);
	border-radius: 4px;
	font-size: 11px;
	font-weight: 700;
}

.col-list .list .item p {
	margin: 0;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.5;
}

.col-list .list .item p a {
	color: var(--text);
	transition: color 0.2s;
}

.col-list .list .item p a:hover {
	color: var(--orange-deep);
}

/* Pagination Styling */
.box-pagination {
	margin-top: 40px;
}

.box-pagination .navigation {
	display: flex;
	justify-content: center;
}

.box-pagination .nav-links {
	display: flex;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.box-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 6px;
	border: 1px solid var(--line);
	border-radius: 4px;
	color: var(--text);
	font-size: 14px;
	font-weight: 700;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.box-pagination .page-numbers.current,
.box-pagination .page-numbers:hover {
	background: var(--orange-deep);
	color: var(--white);
	border-color: var(--orange-deep);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
	.news-list {
		gap: 40px;
	}
}

@media (max-width: 900px) {
	#main-title {
		padding: 110px 0 35px;
	}
	.news-list {
		flex-direction: column;
		gap: 50px;
	}
	.news-list .col-side {
		width: 100%;
	}
	.main-content {
		padding: 50px 0;
	}
}

@media (max-width: 480px) {
	#main-title {
		padding: 100px 0 25px;
	}
	#main-title .title-box h1 .jp {
		font-size: 24px;
	}
	.main-content {
		padding: 40px 0;
	}
	.col-list .list .item p {
		font-size: 15px;
	}
}

/* Topics Card Category Badge */
.topics-card__cat {
	padding: 2px 8px;
	background: var(--orange-deep);
	color: var(--white);
	border-radius: 4px;
	font-size: 11px;
	font-weight: 700;
	margin-left: 10px;
}

.cta-flex-container {
	display: flex !important;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	margin: 40px auto;
	max-width: 800px;
	width: 100%;
	box-sizing: border-box;
}

.cta-flex-container .flex-item {
	flex: 1;
	text-align: center;
}

.cta-flex-container .flex-item1 {
	flex: 0 0 100%;
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	color: var(--ink);
	line-height: 1.7;
	margin-bottom: 12px;
}

.cta-flex-container .flex-item2,
.cta-flex-container .flex-item3 {
	flex: 1 1 calc(50% - 8px);
	min-width: 280px;
	box-sizing: border-box;
}

.cta-flex-container a {
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.25;
	text-decoration: none !important;
	transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 240ms ease, background-color 200ms ease;
	box-shadow: 0 8px 16px rgba(72, 47, 26, 0.08);
}

.cta-flex-container a:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 26px rgba(72, 47, 26, 0.14);
}

.cta-flex-container a.cta-btn-tel {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 18px 30px;
	background: var(--white);
	border: 2px solid var(--cta-red);
	color: var(--cta-red);
	border-radius: 20px;
	text-align: center;
}

.cta-flex-container a.cta-btn-tel:hover {
	background-color: rgba(227, 24, 55, 0.02);
}

.cta-flex-container a.cta-btn-tel .number {
	font-size: 30px;
	font-weight: 900;
	color: var(--cta-red);
	margin-top: 6px;
	letter-spacing: 0.02em;
}

.cta-flex-container a.cta-btn-mail {
	position: relative;
	width: 100%;
	min-height: 64px;
	padding: 16px 30px 16px 54px;
	background: var(--cta-red);
	color: var(--white);
	border-radius: 32px;
	border: 2px solid var(--cta-red);
}

.cta-flex-container a.cta-btn-mail::after {
	content: "";
	position: absolute;
	left: 24px;
	top: 50%;
	transform: translateY(-50%);
	width: 22px;
	height: 22px;
	background-image: url('../img/common/icon_mail.svg');
	background-repeat: no-repeat;
	background-size: contain;
	filter: brightness(0) invert(1);
}

.cta-flex-container a.cta-btn-chatwork {
	position: relative;
	width: 100%;
	min-height: 64px;
	padding: 16px 30px 16px 54px;
	background: var(--white);
	color: var(--ink);
	border-radius: 32px;
	border: 2px solid rgba(28, 28, 28, 0.16);
}

.cta-flex-container a.cta-btn-chatwork::before {
	content: "Chatwork";
	margin-right: 4px;
	font-weight: 800;
}

.cta-flex-container a.cta-btn-chatwork::after {
	content: "";
	position: absolute;
	left: 24px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	background-image: url('../img/common/Chatwork_RGB_symbol_color.svg');
	background-repeat: no-repeat;
	background-size: contain;
}

@media (max-width: 576px) {
	.cta-flex-container .flex-item2,
	.cta-flex-container .flex-item3 {
		flex: 0 0 100%;
	}
	.cta-flex-container a.cta-btn-tel {
		padding: 14px 20px;
	}
	.cta-flex-container a.cta-btn-tel .number {
		font-size: 24px;
	}
	.cta-flex-container a.cta-btn-mail,
	.cta-flex-container a.cta-btn-chatwork {
		min-height: 56px;
		padding: 12px 20px 12px 48px;
		font-size: 14px;
		border-radius: 28px;
	}
	.cta-flex-container a.cta-btn-mail::after,
	.cta-flex-container a.cta-btn-chatwork::after {
		left: 18px;
		width: 20px;
		height: 20px;
	}
}

.news-contact-bottom {
	background: #eb6100;
	padding: 60px 24px;
	color: var(--white);
	text-align: center;
}

.news-contact-bottom__inner {
	max-width: 800px;
	margin: 0 auto;
}

.news-contact-bottom__title {
	font-size: clamp(20px, 3vw, 26px);
	font-weight: 800;
	line-height: 1.45;
	margin: 0 0 25px 0;
	color: var(--white);
}

.news-contact-bottom__box {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.news-contact-bottom__icon {
	width: 54px;
	height: 54px;
	background: var(--white);
	color: #eb6100;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.news-contact-bottom__tel {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--white);
	text-decoration: none;
	flex-wrap: wrap;
	justify-content: center;
}

.news-contact-bottom__badge {
	background: #fffb75;
	color: #202020;
	font-size: 13px;
	font-weight: 800;
	padding: 4px 10px;
	border-radius: 4px;
	letter-spacing: 0.05em;
}

.news-contact-bottom__number {
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.02em;
}

.news-contact-bottom__meta {
	font-size: 14px;
	margin: 0;
	font-weight: 600;
	opacity: 0.9;
}

@media (max-width: 576px) {
	.news-contact-bottom {
		padding: 40px 16px;
	}
	.news-contact-bottom__box {
		flex-direction: column;
		gap: 12px;
	}
	.news-contact-bottom__tel {
		flex-direction: column;
		gap: 8px;
	}
	.news-contact-bottom__number {
		font-size: 36px;
	}
	.news-contact-bottom__br-sp {
		display: block;
	}
}


/* =========================================================
IMPLEMENTATION
========================================================= */
.implementation{
	padding: 100px 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.showcase-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  
  position: relative; 
}

.showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

.border-line {
  position: absolute;
  top: 0;
  left: 0;
	z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.border-line rect {
  fill: none;
  stroke: #ffa325;
  stroke-width: 2px;
  stroke-dasharray: 2000; 
  stroke-dashoffset: 2000;
}

.showcase-card:hover .border-line rect {
  animation: drawLine 2s ease-in-out forwards;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.card-preview {
  height: 220px;
  background: #f8fafc;
  border-bottom: 1px solid rgba(0, 0, 0, 0.02);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.card-preview--scroll .viewport-mockup {
  width: 140px;
  height: 150px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  padding: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.card-preview--scroll .scroll-bar {
  position: absolute;
  top: 0;
  right: 2px;
  width: 4px;
  height: 40px;
  background: #cbd5e1;
  border-radius: 999px;
  animation: scroll-bar-anim 4s infinite ease-in-out;
}
.card-preview--scroll .mock-item {
  height: 24px;
  background: #f1f5f9;
  border-radius: 6px;
  width: 100%;
  opacity: 0;
  transform: translateY(15px);
  will-change: transform, opacity;
}
.card-preview--scroll .mock-item--1 {
  background: linear-gradient(90deg, #818cf8 0%, #a78bfa 100%);
  width: 80%;
  animation: scroll-reveal-1 4s infinite ease-in-out;
}
.card-preview--scroll .mock-item--2 {
  background: linear-gradient(90deg, #f472b6 0%, #fb7185 100%);
  width: 90%;
  animation: scroll-reveal-2 4s infinite ease-in-out;
}
.card-preview--scroll .mock-item--3 {
  background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
  width: 60%;
  animation: scroll-reveal-3 4s infinite ease-in-out;
}
.card-preview--hover .preview-btn {
  background: #f57c00;
  color: #ffffff;
  padding: 0.8rem 1.8rem;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255,159,37,0.3);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.card-preview--hover:hover .preview-btn, .showcase-card:hover .card-preview--hover .preview-btn {
  background: #e65100;
  transform: scale(1.08) translateY(-4px);
}
.card-preview--slider .slide-mockup-wrap {
  position: relative;
  width: 150px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-preview--slider .slide-mockup {
  width: 90px;
  height: 60px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
  position: relative;
  z-index: 3;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.card-preview--slider .slide-stack {
  position: absolute;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.card-preview--slider .slide-stack--2 {
  width: 80px;
  height: 52px;
  z-index: 2;
  transform: translateY(-8px) scaleX(0.92);
}
.card-preview--slider .slide-stack--3 {
  width: 70px;
  height: 44px;
  z-index: 1;
  transform: translateY(-16px) scaleX(0.84);
}
.card-preview--slider .tip-text {
  position: absolute;
  bottom: -5px;
  font-size: 0.65rem;
  color: #94a3b8;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.card-preview--slider:hover .slide-mockup, .showcase-card:hover .card-preview--slider .slide-mockup {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}
.card-preview--slider:hover .slide-stack--2, .showcase-card:hover .card-preview--slider .slide-stack--2 {
  transform: translateY(-16px) scaleX(0.92);
}
.card-preview--slider:hover .slide-stack--3, .showcase-card:hover .card-preview--slider .slide-stack--3 {
  transform: translateY(-26px) scaleX(0.84);
}

@keyframes scroll-bar-anim {
  0%, 100% {
    top: 0px;
  }
  50% {
    top: 105px;
  }
}
@keyframes scroll-reveal-1 {
  0%, 100% {
    opacity: 0;
    transform: translateY(15px);
  }
  15% {
    opacity: 0;
    transform: translateY(15px);
  }
  35%, 65% {
    opacity: 1;
    transform: translateY(0);
  }
  80% {
    opacity: 0;
    transform: translateY(-10px);
  }
}
@keyframes scroll-reveal-2 {
  0%, 100% {
    opacity: 0;
    transform: translateY(15px);
  }
  25% {
    opacity: 0;
    transform: translateY(15px);
  }
  45%, 65% {
    opacity: 1;
    transform: translateY(0);
  }
  80% {
    opacity: 0;
    transform: translateY(-10px);
  }
}
@keyframes scroll-reveal-3 {
  0%, 100% {
    opacity: 0;
    transform: translateY(15px);
  }
  35% {
    opacity: 0;
    transform: translateY(15px);
  }
  55%, 65% {
    opacity: 1;
    transform: translateY(0);
  }
  80% {
    opacity: 0;
    transform: translateY(-10px);
  }
}
.card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.card-title-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.card-title-wrap .marker {
  width: 4px;
  align-self: stretch;
  border-radius: 99px;
}
.card-title-wrap .marker.purple-line {
  background: #4f46e5;
}
.card-title-wrap .marker.orange-line {
  background: #f97316;
}
.card-title-wrap .marker.black-line {
  background: #111827;
}
.card-title-wrap .titles {
  display: flex;
  flex-direction: column;
}
.card-title-wrap h3 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1e293b;
}
.card-title-wrap .en-sub {
  font-size: 0.72rem;
  color: #94a3b8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 0.2rem;
}

.description {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
}

.modal-container {
  background: #ffffff;
  border-radius: 24px;
  width: 92vw;
  max-width: 1100px;
  height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 10;
  overflow: hidden;
  transform: scale(0.92);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.modal-overlay.is-active .modal-container {
  transform: scale(1);
  opacity: 1;
}

.modal-header {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
}
.modal-header .modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
}
.modal-header .modal-close {
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 36px;
  text-align: center;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-header .modal-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.modal-body {
  flex-grow: 1;
  position: relative;
  background: #fff;
}

.modal-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #000;
  gap: 1rem;
  z-index: 5;
  transition: opacity 0.3s ease;
}
.modal-loader .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: #f57c00;
  border-radius: 50%;
  animation: spin 1s infinite linear;
}
.modal-loader span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #000;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.modal-iframe {
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  border: none;
}
