:root {
	--cr-primary: #FF6B35;
	--cr-secondary: #E93C05;
	--cr-light: #FFF4F0;
	--cr-soft: #FFE6DA;
	--cr-dark: #1F2937;
	--cr-shadow: rgba(255, 107, 53, 0.2);
}

body {
	color: var(--cr-dark);
}

.cr-section {
	position: relative;
	overflow: hidden;
}

.cr-hero {
	position: relative;
	padding: 140px 0 100px;
	background: linear-gradient(135deg, rgba(255, 107, 53, 0.16), rgba(255, 244, 240, 0.85));
	overflow: hidden;
}

.cr-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 107, 53, 0.16), rgba(255, 255, 255, 0.75));
	pointer-events: none;
}

.cr-hero-circles {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.cr-circle {
	position: absolute;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 107, 53, 0.25), transparent 70%);
	animation: float 7s ease-in-out infinite;
}

.cr-circle-one {
	width: 220px;
	height: 220px;
	top: 12%;
	right: 8%;
}

.cr-circle-two {
	width: 160px;
	height: 160px;
	bottom: 10%;
	left: 6%;
	animation: floatSlow 9s ease-in-out infinite;
}

.cr-hero-pill {
	display: inline-flex;
	align-items: center;
	padding: 0.4rem 1rem;
	border-radius: 999px;
	background: rgba(255, 107, 53, 0.15);
	color: var(--cr-secondary);
	font-weight: 600;
	letter-spacing: 0.06em;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cr-hero-pill:hover {
	transform: scale(1.05);
	box-shadow: 0 12px 25px rgba(233, 60, 5, 0.2);
}

.cr-hero-title {
	color: var(--cr-dark);
	font-weight: 700;
}

.cr-hero-subtitle {
	font-size: 1.1rem;
	color: rgba(31, 41, 55, 0.75);
}

.cr-btn {
	position: relative;
	overflow: hidden;
	border-radius: 999px;
	padding: 0.75rem 2rem;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.cr-btn::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 240px;
	height: 240px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.45), transparent 70%);
	transform: translate(-50%, -50%) scale(0);
	opacity: 0;
	transition: transform 0.5s ease, opacity 0.5s ease;
	pointer-events: none;
}

.cr-btn:hover::after {
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
}

.cr-btn:hover {
	transform: scale(1.05);
}

.cr-btn-primary {
	background: linear-gradient(135deg, var(--cr-primary), var(--cr-secondary));
	border: none;
	box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
}

.cr-btn-outline {
	border: 2px solid rgba(255, 107, 53, 0.4);
	color: var(--cr-secondary);
	background: transparent;
}

.cr-hero-art {
	position: relative;
	min-height: 380px;
}

.cr-image-card {
	background: rgba(255, 255, 255, 0.6);
	border-radius: 24px;
	padding: 24px;
	backdrop-filter: blur(14px);
	box-shadow: 0 25px 60px rgba(255, 107, 53, 0.2);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cr-image-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 35px 70px rgba(255, 107, 53, 0.3);
}

.cr-image-card:hover .cr-image-caption i {
	animation: bounce 1.6s ease-in-out infinite;
}

.cr-image-placeholder {
	border: 2px dashed rgba(233, 60, 5, 0.5);
	border-radius: 18px;
	height: 240px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(233, 60, 5, 0.7);
	font-weight: 600;
	text-align: center;
	background: linear-gradient(135deg, rgba(255, 244, 240, 0.8), rgba(255, 255, 255, 0.9));
}

.cr-image-placeholder-sm {
	height: 180px;
}

.cr-image-caption {
	margin-top: 16px;
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--cr-secondary);
	font-weight: 600;
}

.cr-graffiti {
	position: absolute;
	padding: 8px 16px;
	border: 2px dashed rgba(233, 60, 5, 0.6);
	border-radius: 12px;
	font-weight: 600;
	color: var(--cr-secondary);
	background: rgba(255, 255, 255, 0.75);
	transition: transform 0.35s ease;
}

.cr-graffiti-top {
	top: -12px;
	right: 10px;
	transform: rotate(-8deg);
}

.cr-graffiti-bottom {
	bottom: 10px;
	left: -4px;
	transform: rotate(10deg);
}

.cr-graffiti:hover {
	transform: rotate(5deg) scale(1.1);
}

.cr-orbit {
	position: absolute;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	border: 2px dashed rgba(255, 107, 53, 0.4);
	top: 50%;
	left: -40px;
	pointer-events: none;
}

.cr-checklist {
	list-style: none;
	padding: 0;
	margin: 0;
}

.cr-checklist li {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
	font-weight: 500;
	color: rgba(31, 41, 55, 0.8);
	transition: transform 0.3s ease, color 0.3s ease;
}

.cr-checklist li i {
	color: var(--cr-primary);
}

.cr-checklist li:hover {
	transform: translateX(8px);
	color: var(--cr-secondary);
}

.cr-visual-card {
	background: #fff;
	border-radius: 24px;
	padding: 30px;
	box-shadow: 0 20px 45px rgba(255, 107, 53, 0.12);
	position: relative;
	overflow: hidden;
}

.cr-mini-card {
	padding: 10px 12px;
	border-radius: 12px;
	background: var(--cr-light);
	color: rgba(31, 41, 55, 0.8);
	font-size: 0.92rem;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cr-mini-card i {
	color: var(--cr-secondary);
}

.cr-mini-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 25px rgba(255, 107, 53, 0.2);
}

.cr-feature-card {
	background: #fff;
	padding: 32px;
	border-radius: 24px;
	box-shadow: 0 24px 50px rgba(255, 107, 53, 0.12);
}

.cr-art-panel {
	position: relative;
	border-radius: 30px;
	background: linear-gradient(140deg, rgba(255, 107, 53, 0.2), rgba(255, 255, 255, 0.9));
	padding: 40px;
	overflow: hidden;
	min-height: 320px;
}

.cr-art-grid {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(255, 107, 53, 0.12) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 107, 53, 0.12) 1px, transparent 1px);
	background-size: 26px 26px;
	opacity: 0.6;
	pointer-events: none;
}

.cr-art-chart {
	display: flex;
	gap: 20px;
	margin-bottom: 24px;
}

.cr-art-chart span {
	width: 60px;
	height: 160px;
	border-radius: 18px;
	background: linear-gradient(180deg, var(--cr-primary), rgba(255, 107, 53, 0.2));
	animation: pulse 4s ease-in-out infinite;
}

.cr-art-chart span:nth-child(2) {
	height: 120px;
	animation-delay: 0.5s;
}

.cr-art-chart span:nth-child(3) {
	height: 190px;
	animation-delay: 1s;
}

.cr-art-copy {
	position: relative;
	z-index: 1;
}

.cr-need-card,
.cr-process-card,
.cr-benefit-card {
	background: #fff;
	padding: 28px;
	border-radius: 20px;
	height: 100%;
	box-shadow: 0 18px 40px rgba(255, 107, 53, 0.1);
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
	border: 1px solid rgba(255, 107, 53, 0.12);
	position: relative;
	overflow: hidden;
}

.cr-need-card i,
.cr-benefit-card i {
	font-size: 2rem;
	color: var(--cr-primary);
	margin-bottom: 16px;
	display: inline-flex;
}

.cr-need-card:hover,
.cr-process-card:hover,
.cr-benefit-card:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: 0 28px 55px rgba(255, 107, 53, 0.2);
	border-color: rgba(255, 107, 53, 0.4);
}

.cr-need-card::after,
.cr-process-card::after,
.cr-benefit-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(130deg, rgba(255, 107, 53, 0.12), transparent 60%);
	opacity: 0;
	transition: opacity 0.35s ease;
	pointer-events: none;
}

.cr-need-card:hover::after,
.cr-process-card:hover::after,
.cr-benefit-card:hover::after {
	opacity: 1;
}

.cr-step {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--cr-light);
	color: var(--cr-secondary);
	font-weight: 700;
	margin-bottom: 16px;
	transition: transform 0.35s ease, background 0.35s ease;
}

.cr-process-card:hover .cr-step {
	background: var(--cr-primary);
	color: #fff;
	transform: scale(1.15) rotate(5deg);
}

.cr-problem-list {
	display: grid;
	gap: 14px;
}

.cr-problem-item {
	padding: 14px 18px;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 12px 28px rgba(255, 107, 53, 0.12);
	display: flex;
	align-items: center;
	gap: 10px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cr-problem-item i {
	color: var(--cr-secondary);
	font-size: 1.1rem;
	transition: transform 0.3s ease;
}

.cr-problem-item:hover {
	transform: translateX(6px);
	box-shadow: 0 18px 34px rgba(255, 107, 53, 0.18);
}

.cr-problem-item:hover i {
	transform: scale(1.3);
}

.cr-problem-visual {
	position: relative;
	border-radius: 28px;
	padding: 30px;
	background: #fff;
	box-shadow: 0 26px 55px rgba(255, 107, 53, 0.18);
	overflow: hidden;
}

.cr-shimmer-line {
	position: absolute;
	top: 20px;
	left: -40%;
	width: 40%;
	height: 3px;
	background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.7), transparent);
	animation: shimmer 3.5s linear infinite;
}

.cr-problem-badge {
	position: absolute;
	bottom: 20px;
	right: 20px;
	background: var(--cr-primary);
	color: #fff;
	padding: 8px 16px;
	border-radius: 999px;
	font-weight: 600;
	animation: float 6s ease-in-out infinite;
}

.cr-accordion .accordion-item {
	border: none;
	margin-bottom: 16px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 14px 32px rgba(255, 107, 53, 0.12);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cr-accordion .accordion-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 22px 38px rgba(255, 107, 53, 0.18);
}

.cr-accordion .accordion-button {
	font-weight: 600;
	color: var(--cr-dark);
}

.cr-cta-card {
	position: relative;
	padding: 50px;
	border-radius: 32px;
	background: linear-gradient(140deg, var(--cr-primary), var(--cr-secondary));
	color: #fff;
	overflow: hidden;
	box-shadow: 0 30px 60px rgba(255, 107, 53, 0.35);
}

.cr-cta-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.35), transparent 55%);
	opacity: 0.6;
	pointer-events: none;
}

.cr-cta-ring {
	position: absolute;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	border: 2px dashed rgba(255, 255, 255, 0.35);
	top: -40px;
	right: -60px;
	animation: floatSlow 9s ease-in-out infinite;
	pointer-events: none;
}

.cr-cta-content {
	position: relative;
	z-index: 1;
}

.cr-bounce-icon {
	animation: bounce 2.6s ease-in-out infinite;
}

.cr-float {
	animation: float 6s ease-in-out infinite;
}

.cr-float-slow {
	animation: floatSlow 9s ease-in-out infinite;
}

.cr-pulse {
	animation: pulse 4s ease-in-out infinite;
}

.cr-shimmer {
	animation: shimmer 3.5s linear infinite;
}

.cr-fade-up {
	animation: fadeInUp 0.8s ease both;
}

.cr-scale-in {
	animation: scaleIn 0.8s ease both;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-20px);
	}
}

@keyframes floatSlow {
	0%,
	100% {
		transform: translate(0, 0);
	}
	50% {
		transform: translate(12px, -18px);
	}
}

@keyframes pulse {
	0%,
	100% {
		opacity: 0.6;
		transform: scale(1);
	}
	50% {
		opacity: 1;
		transform: scale(1.05);
	}
}

@keyframes shimmer {
	0% {
		transform: translateX(-40%);
	}
	100% {
		transform: translateX(240%);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.92);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes bounce {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-12px);
	}
}

@media (max-width: 991px) {
	.cr-hero {
		padding-top: 120px;
	}

	.cr-hero-art {
		margin-top: 40px;
	}

	.cr-cta-card {
		padding: 36px;
	}
}

@media (max-width: 767px) {
	.cr-hero {
		padding-top: 110px;
	}

	.cr-hero-title {
		font-size: 2.2rem;
	}

	.cr-image-placeholder {
		height: 200px;
	}

	.cr-cta-card {
		padding: 30px;
	}
}
