/* CodePopular homepage — modern light UI, brand #FF6D60, parent theme fonts */

.cp-home {
	--cp-ink: #1a2332;
	--cp-muted: #667085;
	--cp-line: #e9edf2;
	--cp-bg: #fbf8f7;
	--cp-surface: #ffffff;
	--cp-accent: #ff6d60;
	--cp-accent-dark: #e55548;
	--cp-accent-soft: #ffece9;
	--cp-accent-line: #ffd4ce;
	color: var(--cp-ink);
	background: #fff;
	overflow-x: clip;
}

.cp-home *,
.cp-home *::before,
.cp-home *::after {
	box-sizing: border-box;
}

.cp-container {
	width: min(var(--cp-shell-width, 1320px), calc(100% - (var(--cp-shell-gutter, 1.25rem) * 2)));
	max-width: var(--cp-shell-width, 1320px);
	margin-inline: auto;
}

.cp-section {
	padding: clamp(3.25rem, 7vw, 5.5rem) 0;
}

.cp-section__head {
	max-width: 44rem;
	margin: 0 auto 2.5rem;
	text-align: center;
}

.cp-section__head--split {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	max-width: none;
	text-align: left;
}

.cp-section__title {
	margin: 0 0 0.7rem;
	font-size: clamp(1.75rem, 3vw, 2.4rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.18;
	color: var(--cp-ink);
}

.cp-section__title--left {
	text-align: left;
}

.cp-section__lead {
	margin: 0;
	color: var(--cp-muted);
	font-size: 1.05rem;
	line-height: 1.7;
}

.cp-section__foot {
	margin: 2rem 0 0;
	text-align: center;
}

.cp-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0 0 0.85rem;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cp-accent-dark);
}

.cp-eyebrow--center {
	justify-content: center;
}

.cp-eyebrow__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--cp-accent);
	box-shadow: 0 0 0 4px var(--cp-accent-soft);
	animation: cp-pulse 2.2s ease-in-out infinite;
}

/* Buttons */
.cp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	min-height: 3rem;
	padding: 0.75rem 1.4rem;
	border-radius: 10px;
	font-size: 0.98rem;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.cp-btn:hover {
	transform: translateY(-2px);
	text-decoration: none;
}

.cp-btn--primary {
	color: #fff;
	background: var(--cp-accent);
	box-shadow: 0 10px 24px rgba(255, 109, 96, 0.28);
}

.cp-btn--primary:hover {
	color: #fff;
	background: var(--cp-accent-dark);
	box-shadow: 0 14px 28px rgba(255, 109, 96, 0.32);
}

.cp-btn--ghost {
	color: var(--cp-ink);
	background: #fff;
	border: 1px solid var(--cp-line);
}

.cp-btn--ghost:hover {
	border-color: var(--cp-accent);
	color: var(--cp-accent-dark);
}

.cp-btn--soft {
	min-height: 2.6rem;
	padding: 0.55rem 1rem;
	font-size: 0.9rem;
	color: var(--cp-accent-dark);
	background: var(--cp-accent-soft);
}

.cp-btn--soft:hover {
	color: #fff;
	background: var(--cp-accent);
}

.cp-btn--light {
	color: var(--cp-accent-dark);
	background: #fff;
}

.cp-btn--light:hover {
	color: var(--cp-accent-dark);
	background: #fff5f3;
}

.cp-text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: var(--cp-accent-dark);
	font-weight: 700;
	text-decoration: none;
}

.cp-text-link:hover {
	color: var(--cp-ink);
}

/* Reveal on scroll */
.cp-reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.65s ease, transform 0.65s ease;
	transition-delay: calc(var(--i, 0) * 70ms);
}

.cp-reveal--delay {
	transition-delay: 100ms;
}

.cp-reveal.is-visible {
	opacity: 1;
	transform: none;
}

/* ---------- Hero ---------- */
.cp-hero {
	position: relative;
	padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2.5rem, 5vw, 4rem);
	isolation: isolate;
}

.cp-hero__bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	overflow: hidden;
	background:
		radial-gradient(ellipse 50% 45% at 85% 20%, rgba(255, 109, 96, 0.14), transparent 60%),
		radial-gradient(ellipse 40% 35% at 5% 90%, rgba(59, 130, 246, 0.07), transparent 55%),
		linear-gradient(180deg, #ffffff 0%, var(--cp-bg) 100%);
}

.cp-hero__dots {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0.5;
	mask-image: radial-gradient(ellipse 60% 60% at 75% 45%, #000 10%, transparent 70%);
}

.cp-hero__inner {
	display: grid;
	grid-template-columns: 1.4fr 0.9fr;
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: center;
}

.cp-hero__copy {
	animation: cp-in 0.75s ease both;
}

.cp-hero__visual {
	animation: cp-in 0.85s ease 0.1s both;
}

@keyframes cp-in {
	from { opacity: 0; transform: translateY(16px); }
	to { opacity: 1; transform: none; }
}

.cp-hero__title {
	margin: 0 0 1.1rem;
	font-size: clamp(2rem, 3.6vw, 3.25rem);
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.12;
	color: var(--cp-ink);
}

.cp-hero__title-line {
	display: block;
	white-space: nowrap;
}

.cp-hero__title em {
	font-style: normal;
	color: var(--cp-accent);
}

.cp-hero__text {
	margin: 0 0 1.6rem;
	max-width: 40rem;
	color: var(--cp-muted);
	font-size: 1.08rem;
	line-height: 1.7;
}

.cp-hero__text strong {
	color: var(--cp-ink);
	font-weight: 700;
}

.cp-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
}

.cp-hero__proof {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem 1.4rem;
	list-style: none;
	margin: 1.6rem 0 0;
	padding: 0;
}

.cp-hero__proof li {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	color: var(--cp-muted);
	font-size: 0.92rem;
	font-weight: 600;
}

/* Orbit visual */
.cp-orbit {
	--orbit-r: 175px;
	position: relative;
	width: min(100%, 460px);
	aspect-ratio: 1;
	margin-inline: auto;
	padding: 0;
}

.cp-orbit__ring {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.cp-orbit__ring--outer {
	animation: cp-spin 60s linear infinite;
}

.cp-orbit__ring--inner {
	animation: cp-spin 26s linear infinite reverse;
}

.cp-orbit__core {
	position: absolute;
	left: 50%;
	top: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.4rem;
	width: 150px;
	height: 150px;
	justify-content: center;
	border-radius: 50%;
	background: #fff;
	border: 1px solid var(--cp-accent-line);
	box-shadow: 0 22px 44px rgba(255, 109, 96, 0.16);
	transform: translate(-50%, -50%);
	animation: cp-bob 5.5s ease-in-out infinite;
}

.cp-orbit__core span {
	font-size: 0.86rem;
	font-weight: 800;
	letter-spacing: -0.01em;
	color: var(--cp-ink);
}

.cp-orbit__items {
	position: absolute;
	inset: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	animation: cp-spin 40s linear infinite;
}

.cp-orbit__item {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 0;
	height: 0;
	transform: rotate(calc(var(--n) * 72deg)) translate(var(--orbit-r)) rotate(calc(var(--n) * -72deg));
}

.cp-orbit__card {
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.35rem;
	width: 92px;
	padding: 0.6rem 0.4rem 0.55rem;
	border-radius: 16px;
	background: #fff;
	border: 1px solid var(--cp-line);
	box-shadow: 0 12px 28px rgba(26, 35, 50, 0.1);
	text-decoration: none;
	transform: translate(-50%, -50%);
	animation: cp-counter-spin 40s linear infinite;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cp-orbit__card:hover {
	border-color: var(--cp-accent);
	box-shadow: 0 16px 32px rgba(255, 109, 96, 0.22);
}

.cp-orbit:hover .cp-orbit__items,
.cp-orbit:hover .cp-orbit__card {
	animation-play-state: paused;
}

.cp-orbit__icon {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
}

.cp-orbit__icon img,
.cp-orbit__icon svg {
	width: 44px;
	height: 44px;
	object-fit: cover;
	border-radius: 12px;
}

.cp-orbit__label {
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--cp-ink);
	white-space: nowrap;
}

@keyframes cp-spin {
	to { transform: rotate(360deg); }
}

@keyframes cp-counter-spin {
	from { transform: translate(-50%, -50%) rotate(0deg); }
	to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes cp-bob {
	0%, 100% { transform: translate(-50%, -50%) translateY(0); }
	50% { transform: translate(-50%, -50%) translateY(-8px); }
}

@keyframes cp-pulse {
	0%, 100% { box-shadow: 0 0 0 4px var(--cp-accent-soft); }
	50% { box-shadow: 0 0 0 7px rgba(255, 109, 96, 0.12); }
}

.cp-spin-slow {
	animation: cp-spin 22s linear infinite;
	transform-box: fill-box;
	transform-origin: center;
}

/* ---------- Stats band ---------- */
.cp-stats-band {
	background: #fff;
	border-block: 1px solid var(--cp-line);
}

.cp-stats {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	list-style: none;
	margin: 0;
	padding: 1.6rem 0;
}

.cp-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.15rem;
	padding: 0.4rem 0.5rem;
	text-align: center;
	border-left: 1px solid var(--cp-line);
}

.cp-stat:first-child {
	border-left: 0;
}

.cp-stat strong {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	font-size: clamp(1.6rem, 2.6vw, 2.1rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.1;
	color: var(--cp-accent-dark);
}

.cp-stat span {
	color: var(--cp-muted);
	font-size: 0.9rem;
	font-weight: 600;
}

/* ---------- Products ---------- */
.cp-featured {
	background: var(--cp-bg);
}

.cp-product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.4rem;
}

.cp-product {
	display: flex;
	flex-direction: column;
	background: var(--cp-surface);
	border: 1px solid var(--cp-line);
	border-radius: 18px;
	overflow: hidden;
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.cp-product:hover {
	transform: translateY(-6px);
	border-color: var(--cp-accent-line);
	box-shadow: 0 20px 40px rgba(255, 109, 96, 0.12);
}

.cp-product__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	background: linear-gradient(145deg, var(--cp-accent-soft), #eef4ff);
	overflow: hidden;
}

.cp-product__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.cp-product:hover .cp-product__media img {
	transform: scale(1.04);
}

.cp-product__sale {
	position: absolute;
	top: 0.85rem;
	left: 0.85rem;
	z-index: 1;
	padding: 0.3rem 0.6rem;
	border-radius: 999px;
	background: var(--cp-accent);
	color: #fff;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.cp-product__body {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	padding: 1.2rem 1.3rem 1.35rem;
	flex: 1;
}

.cp-product__title {
	margin: 0;
	font-size: 1.2rem;
	font-weight: 800;
}

.cp-product__title a {
	color: inherit;
	text-decoration: none;
}

.cp-product__title a:hover {
	color: var(--cp-accent-dark);
}

.cp-product__subtitle {
	margin: 0;
	color: var(--cp-muted);
	font-size: 0.93rem;
}

.cp-product__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.7rem;
	margin-top: 0.6rem;
}

.cp-product__price,
.cp-product__price .amount,
.cp-product__price .woocommerce-Price-amount {
	color: var(--cp-ink);
	font-weight: 800;
	font-size: 1rem;
}

.cp-product__rating {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.cp-product__rating .star-rating {
	float: none;
	margin: 0;
	font-size: 0.8rem;
	color: #f59e0b;
}

.cp-product__rating-num {
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--cp-muted);
}

.cp-product__cta {
	align-self: flex-start;
	margin-top: 1rem;
}

/* ---------- Why ---------- */
.cp-why {
	background: #fff;
}

.cp-why__grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.cp-why__lead {
	margin: 0 0 1.5rem;
	color: var(--cp-muted);
	font-size: 1.05rem;
	line-height: 1.75;
}

.cp-why__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
}

.cp-why__list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.cp-why__card {
	padding: 1.35rem 1.3rem;
	border-radius: 16px;
	background: var(--cp-bg);
	border: 1px solid var(--cp-line);
	transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.cp-why__card:nth-child(2),
.cp-why__card:nth-child(4) {
	transform: translateY(1.25rem);
}

.cp-why__card.is-visible:nth-child(2),
.cp-why__card.is-visible:nth-child(4) {
	transform: translateY(1.25rem);
}

.cp-why__card:hover {
	background: #fff;
	border-color: var(--cp-accent-line);
}

.cp-why__icon svg,
.cp-focus-card__icon svg,
.cp-trust-card__icon svg {
	width: 52px;
	height: 52px;
}

.cp-why__card h3,
.cp-focus-card h3,
.cp-trust-card h3 {
	margin: 0.9rem 0 0.4rem;
	font-size: 1.08rem;
	font-weight: 800;
}

.cp-why__card p,
.cp-focus-card p,
.cp-trust-card p {
	margin: 0;
	color: var(--cp-muted);
	font-size: 0.95rem;
	line-height: 1.65;
}

/* ---------- Focus ---------- */
.cp-focus {
	background: var(--cp-bg);
}

.cp-focus-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.cp-focus-card {
	position: relative;
	padding: 1.5rem 1.4rem;
	border-radius: 18px;
	background: #fff;
	border: 1px solid var(--cp-line);
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.cp-focus-card:hover {
	transform: translateY(-5px);
	border-color: var(--cp-accent-line);
	box-shadow: 0 18px 36px rgba(26, 35, 50, 0.08);
}

.cp-focus-card--cta {
	overflow: hidden;
	color: #fff;
	background: linear-gradient(135deg, var(--cp-accent) 0%, #ff8a7f 100%);
	border-color: transparent;
}

.cp-focus-card--cta h3,
.cp-focus-card--cta p {
	color: #fff;
}

.cp-focus-card--cta h3 {
	margin-top: 0;
	font-size: 1.35rem;
}

.cp-focus-card--cta p {
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 1.2rem;
}

.cp-focus-card__spark {
	position: absolute;
	right: -45px;
	bottom: -45px;
	width: 130px;
	height: 130px;
	opacity: 0.5;
	pointer-events: none;
}

/* ---------- Customers ---------- */
.cp-customers {
	background: #fff;
}

.cp-customers__grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.cp-customers__map {
	position: relative;
	margin: 0;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--cp-line);
	background: var(--cp-bg);
}

.cp-customers__map img {
	display: block;
	width: 100%;
	height: auto;
}

.cp-map-pin {
	position: absolute;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--cp-accent);
	box-shadow: 0 0 0 4px rgba(255, 109, 96, 0.25);
	animation: cp-ping 2.4s ease-out infinite;
}

.cp-map-pin--1 { left: 22%; top: 34%; }
.cp-map-pin--2 { left: 48%; top: 28%; animation-delay: 0.6s; }
.cp-map-pin--3 { left: 68%; top: 46%; animation-delay: 1.2s; }
.cp-map-pin--4 { left: 82%; top: 70%; animation-delay: 1.8s; }

@keyframes cp-ping {
	0% { box-shadow: 0 0 0 0 rgba(255, 109, 96, 0.45); }
	100% { box-shadow: 0 0 0 16px rgba(255, 109, 96, 0); }
}

.cp-customers__lead {
	margin: 0 0 1.5rem;
	color: var(--cp-muted);
	font-size: 1.05rem;
	line-height: 1.75;
}

.cp-customers__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin-bottom: 1.6rem;
}

.cp-badge-stat {
	display: flex;
	flex-direction: column;
	min-width: 140px;
	padding: 0.9rem 1.1rem;
	border-radius: 14px;
	background: var(--cp-accent-soft);
	border: 1px solid var(--cp-accent-line);
}

.cp-badge-stat strong {
	font-size: 1.8rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.1;
	color: var(--cp-accent-dark);
}

.cp-badge-stat span {
	color: var(--cp-muted);
	font-size: 0.9rem;
	font-weight: 600;
}

/* ---------- Trust ---------- */
.cp-trust {
	background: var(--cp-bg);
}

.cp-trust-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.2rem;
}

.cp-trust-card {
	padding: 1.6rem 1.5rem;
	border-radius: 18px;
	background: #fff;
	border: 1px solid var(--cp-line);
}

/* ---------- Blog ---------- */
.cp-blog {
	background: #fff;
}

.cp-post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.4rem;
}

.cp-post {
	display: flex;
	flex-direction: column;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--cp-line);
	background: #fff;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cp-post:hover {
	transform: translateY(-5px);
	border-color: var(--cp-accent-line);
	box-shadow: 0 18px 36px rgba(26, 35, 50, 0.08);
}

.cp-post__media {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--cp-bg);
}

.cp-post__media img,
.cp-post__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cp-post__placeholder {
	background: linear-gradient(135deg, var(--cp-accent-soft), #eef4ff);
}

.cp-post__body {
	padding: 1.1rem 1.2rem 1.3rem;
}

.cp-post__cat {
	display: inline-block;
	margin-bottom: 0.5rem;
	padding: 0.2rem 0.6rem;
	border-radius: 999px;
	background: var(--cp-accent-soft);
	color: var(--cp-accent-dark);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
}

.cp-post__title {
	margin: 0 0 0.5rem;
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.4;
}

.cp-post__title a {
	color: var(--cp-ink);
	text-decoration: none;
}

.cp-post__title a:hover {
	color: var(--cp-accent-dark);
}

.cp-post__date {
	color: var(--cp-muted);
	font-size: 0.85rem;
}

/* ---------- Ecosystem marquee ---------- */
.cp-eco {
	padding: 1.6rem 0 1.9rem;
	background: #fff;
	border-bottom: 1px solid var(--cp-line);
	overflow: hidden;
}

.cp-eco__label {
	margin: 0 0 1.1rem;
	text-align: center;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--cp-muted);
}

.cp-eco__track {
	display: flex;
	width: max-content;
	gap: 0.8rem;
	animation: cp-marquee 38s linear infinite;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.cp-eco:hover .cp-eco__track {
	animation-play-state: paused;
}

.cp-eco__list {
	display: flex;
	gap: 0.8rem;
	list-style: none;
	margin: 0;
	padding: 0 0.4rem;
}

.cp-eco__chip {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.6rem 1.05rem;
	border-radius: 999px;
	border: 1px solid var(--cp-line);
	background: #fff;
	color: var(--cp-ink);
	font-size: 0.95rem;
	font-weight: 700;
	white-space: nowrap;
	transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cp-eco__chip:hover {
	border-color: var(--cp-accent-line);
	color: var(--cp-accent-dark);
	transform: translateY(-2px);
}

.cp-eco__chip i {
	font-size: 1.15rem;
	color: var(--cp-accent);
}

.cp-eco__chip svg {
	width: 20px;
	height: 20px;
	color: var(--cp-accent);
}

@keyframes cp-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* ---------- Reviews ---------- */
.cp-reviews {
	background:
		radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255, 109, 96, 0.08), transparent 70%),
		#fff;
}

.cp-rating-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin-top: 1.4rem;
	padding: 0.55rem 1rem 0.55rem 0.85rem;
	border-radius: 999px;
	border: 1px solid var(--cp-accent-line);
	background: #fff;
	color: var(--cp-muted);
	font-size: 0.92rem;
	text-decoration: none;
	box-shadow: 0 8px 20px rgba(255, 109, 96, 0.1);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cp-rating-pill:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 26px rgba(255, 109, 96, 0.16);
	text-decoration: none;
	color: var(--cp-accent-dark);
}

.cp-rating-pill__stars {
	display: inline-flex;
	gap: 1px;
}

.cp-rating-pill strong {
	color: var(--cp-ink);
	font-weight: 800;
}

/* 3-column grid; long reviews span two columns so every row fills edge to edge. */
.cp-review-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.cp-review--wide {
	grid-column: span 2;
}

.cp-review {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	margin: 0;
	padding: 1.6rem 1.5rem 1.4rem;
	border-radius: 18px;
	border: 1px solid var(--cp-line);
	background: #fff;
	box-shadow: 0 12px 30px rgba(26, 35, 50, 0.05);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cp-review:hover {
	transform: translateY(-4px);
	border-color: var(--cp-accent-line);
	box-shadow: 0 18px 40px rgba(255, 109, 96, 0.14);
}

.cp-review__quote {
	position: absolute;
	top: 1.1rem;
	right: 1.2rem;
	width: 34px;
	height: 34px;
	color: var(--cp-accent-soft);
}

.cp-review__stars {
	display: inline-flex;
	gap: 2px;
}

.cp-review__title {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.3;
	color: var(--cp-ink);
}

.cp-review__text {
	flex: 1;
	margin: 0;
	padding: 0;
	border: 0;
	font-style: normal;
}

.cp-review__text p {
	margin: 0;
	color: var(--cp-ink);
	font-size: 0.98rem;
	line-height: 1.65;
}

.cp-review__meta {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding-top: 0.9rem;
	border-top: 1px dashed var(--cp-line);
}

.cp-review__meta strong {
	display: block;
	color: var(--cp-ink);
	font-size: 0.95rem;
	line-height: 1.2;
}

.cp-review__meta a {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin-top: 0.15rem;
	color: var(--cp-muted);
	font-size: 0.8rem;
	text-decoration: none;
}

.cp-review__meta a:hover {
	color: var(--cp-accent-dark);
}

.cp-review__avatar {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--cp-accent) 0%, #ff9a90 100%);
	color: #fff;
	font-weight: 800;
	font-size: 1rem;
}

/* ---------- Motion safety ---------- */
@media (prefers-reduced-motion: reduce) {
	.cp-eco__track,
	.cp-reveal,
	.cp-orbit__ring,
	.cp-orbit__items,
	.cp-orbit__card,
	.cp-orbit__core,
	.cp-spin-slow,
	.cp-map-pin,
	.cp-eyebrow__dot {
		animation: none !important;
		opacity: 1;
		transition: none;
	}
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
	.cp-orbit {
		--orbit-r: 150px;
	}
}

@media (max-width: 1100px) {
	.cp-review-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.cp-review--wide:not(:first-child) {
		grid-column: span 1;
	}
}

@media (max-width: 960px) {
	.cp-hero__inner,
	.cp-why__grid,
	.cp-customers__grid {
		grid-template-columns: 1fr;
	}

	.cp-hero__title-line {
		white-space: normal;
	}

	.cp-hero__visual {
		order: -1;
	}

	.cp-orbit {
		--orbit-r: 140px;
		width: min(100%, 380px);
		margin-bottom: 1rem;
	}

	.cp-stats {
		grid-template-columns: repeat(3, 1fr);
		gap: 1rem 0;
	}

	.cp-stat:nth-child(4) {
		border-left: 0;
	}

	.cp-product-grid,
	.cp-focus-grid,
	.cp-trust-grid,
	.cp-post-grid {
		grid-template-columns: 1fr 1fr;
	}

	.cp-why__card:nth-child(2),
	.cp-why__card:nth-child(4),
	.cp-why__card.is-visible:nth-child(2),
	.cp-why__card.is-visible:nth-child(4) {
		transform: none;
	}

	.cp-section__head--split {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 640px) {
	.cp-product-grid,
	.cp-focus-grid,
	.cp-trust-grid,
	.cp-post-grid,
	.cp-why__list {
		grid-template-columns: 1fr;
	}

	.cp-review-grid {
		grid-template-columns: 1fr;
	}

	.cp-review--wide {
		grid-column: span 1;
	}

	.cp-stats {
		grid-template-columns: 1fr 1fr;
	}

	.cp-rating-pill {
		flex-wrap: wrap;
		justify-content: center;
	}

	.cp-stat {
		border-left: 0;
	}

	.cp-hero__actions .cp-btn {
		width: 100%;
	}

	.cp-orbit {
		--orbit-r: 112px;
		width: min(100%, 300px);
	}

	.cp-orbit__core {
		width: 110px;
		height: 110px;
	}

	.cp-orbit__card {
		width: 78px;
	}

	.cp-orbit__icon,
	.cp-orbit__icon img,
	.cp-orbit__icon svg {
		width: 36px;
		height: 36px;
	}
}
