/* ============================================================
   HOME PAGE STYLES - Rack Reporting
   ASEL-inspired design with brand colors
   ============================================================ */

/* ===== GENERAL SECTION STYLES ===== */
.rr-home-page {
	overflow-x: hidden;
}

.rr-section {
	padding: 80px 0;
	position: relative;
}

.rr-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	position: relative;
	z-index: 1;
}

.rr-section-header {
	text-align: center;
	margin-bottom: 56px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.rr-section-header h2 {
	font-size: 40px;
	line-height: 1.2;
	margin-bottom: 16px;
	color: var(--rr-primary);
}

.rr-section-header.rr-section-header-light h2 {
	color: #ffffff;
}

.rr-section-tag {
	display: inline-block;
	font-family: 'Roboto', Arial, sans-serif;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--rr-accent);
	background: rgba(34, 184, 209, 0.1);
	padding: 8px 20px;
	border-radius: 50px;
	margin-bottom: 16px;
}

.rr-tag-light {
	background: rgba(255, 255, 255, 0.15);
	color: #ffffff;
}

.rr-section-desc {
	font-size: 18px;
	line-height: 1.7;
	color: var(--rr-text-light);
}

.rr-text-white {
	color: #ffffff !important;
}

.rr-text-white-muted {
	color: rgba(255, 255, 255, 0.8) !important;
}

.rr-text-accent {
	color: var(--rr-accent);
}

/* ===== HERO SECTION ===== */
.rr-hero {
	position: relative;
	min-height: 85vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 120px 24px 80px;
	overflow: hidden;
	background: linear-gradient(135deg, #226d7a 0%, #1a5a65 35%, #22B8D1 100%);
}

.rr-hero-bg {
	position: absolute;
	inset: 0;
	background: 
		radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
		radial-gradient(ellipse at 80% 20%, rgba(34,184,209,0.15) 0%, transparent 50%),
		radial-gradient(ellipse at 50% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
	animation: heroBgPulse 8s ease-in-out infinite alternate;
}

@keyframes heroBgPulse {
	0% { transform: scale(1); opacity: 1; }
	100% { transform: scale(1.1); opacity: 0.8; }
}

.rr-hero-particles {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}

.rr-hero-particle {
	position: absolute;
	width: 6px;
	height: 6px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	animation: floatParticle 15s infinite;
}

@keyframes floatParticle {
	0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
	10% { opacity: 1; }
	90% { opacity: 1; }
	100% { transform: translateY(-100vh) translateX(100px); opacity: 0; }
}

.rr-hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	text-align: center;
}

.rr-hero-badge {
	display: inline-block;
	font-family: 'Roboto', Arial, sans-serif;
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.8);
	background: rgba(255, 255, 255, 0.12);
	padding: 8px 24px;
	border-radius: 50px;
	margin-bottom: 24px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
}

.rr-hero-title {
	font-size: 54px;
	line-height: 1.15;
	color: #ffffff;
	margin-bottom: 20px;
	font-weight: 900;
}

.rr-hero-subtitle {
	font-size: 19px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 40px;
	max-width: 650px;
	margin-left: auto;
	margin-right: auto;
}

.rr-hero-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 60px;
}

.rr-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'Roboto', Arial, sans-serif;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	text-decoration: none;
	padding: 16px 32px;
	border-radius: 6px;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	position: relative;
	overflow: hidden;
}

.rr-btn-primary {
	background: #22B8D1;
	color: #ffffff;
}

.rr-btn-primary:hover {
	background: #1a9aaf;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(34, 184, 209, 0.35);
}

.rr-btn-secondary {
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.rr-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.2);
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-2px);
}

.rr-btn-accent {
	background: #22B8D1;
	color: #ffffff;
}

.rr-btn-accent:hover {
	background: #ffffff;
	color: #226D7A;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.rr-btn-light {
	background: #ffffff;
	color: #226D7A;
}

.rr-btn-light:hover {
	background: #22B8D1;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

/* Hero Stats */
.rr-hero-stats {
	display: flex;
	gap: 40px;
	justify-content: center;
	flex-wrap: wrap;
}

.rr-stat-item {
	text-align: center;
}

.rr-stat-number {
	font-family: 'Roboto', Arial, sans-serif;
	font-size: 36px;
	font-weight: 900;
	color: #ffffff;
	display: inline;
}

.rr-stat-plus {
	font-family: 'Roboto', Arial, sans-serif;
	font-size: 28px;
	font-weight: 700;
	color: #22B8D1;
	margin-left: 2px;
}

.rr-stat-label {
	display: block;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
	letter-spacing: 0.5px;
	margin-top: 4px;
	font-weight: 500;
}

/* Hero bottom wave shape */
.rr-hero-shape {
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	line-height: 0;
	z-index: 2;
}

.rr-hero-shape svg {
	display: block;
	width: 100%;
	height: 80px;
}

/* ===== ABOUT SECTION ===== */
.rr-about {
	background: #E4F5FA;
	position: relative;
}

.rr-about::before {
	content: '';
	position: absolute;
	inset: 0;
	background: 
		radial-gradient(circle at 10% 90%, rgba(34,184,209,0.08) 0%, transparent 50%),
		radial-gradient(circle at 90% 10%, rgba(34,184,209,0.05) 0%, transparent 50%);
	pointer-events: none;
}

.rr-about-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}

.rr-about-card {
	background: #ffffff;
	padding: 36px 28px;
	border-radius: 16px;
	text-align: center;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(34,184,209,0.08);
	box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.rr-about-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #22B8D1, #226D7A);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.rr-about-card:hover::before {
	transform: scaleX(1);
}

.rr-about-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(34,184,209,0.15);
	border-color: rgba(34,184,209,0.2);
}

.rr-about-icon {
	margin-bottom: 20px;
	display: flex;
	justify-content: center;
}

.rr-about-icon svg {
	transition: transform 0.4s ease;
}

.rr-about-card:hover .rr-about-icon svg {
	transform: scale(1.15);
}

.rr-about-card h3 {
	font-size: 20px;
	margin-bottom: 12px;
	color: var(--rr-primary);
}

.rr-about-card p {
	font-size: 14px;
	line-height: 1.7;
	color: var(--rr-text-light);
}

/* ===== RACK REPORTING PRODUCT SECTION ===== */
.rr-product-rack {
	background: linear-gradient(135deg, #226d7a 0%, #1a5a65 50%, #1a4e58 100%);
	position: relative;
	overflow: hidden;
}

.rr-product-pattern {
	position: absolute;
	inset: 0;
	background-image: 
		radial-gradient(circle at 25% 25%, rgba(255,255,255,0.03) 1px, transparent 1px),
		radial-gradient(circle at 75% 75%, rgba(255,255,255,0.03) 1px, transparent 1px);
	background-size: 60px 60px;
	pointer-events: none;
}

.rr-product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-bottom: 48px;
}

.rr-product-card {
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 32px 24px;
	border-radius: 16px;
	text-align: center;
	transition: all 0.4s ease;
}

.rr-product-card:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(34,184,209,0.3);
	transform: translateY(-6px);
	box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.rr-product-icon {
	margin-bottom: 20px;
	display: flex;
	justify-content: center;
}

.rr-product-icon svg {
	transition: transform 0.4s ease;
}

.rr-product-card:hover .rr-product-icon svg {
	transform: scale(1.15) rotate(-5deg);
}

.rr-product-card h3 {
	font-size: 20px;
	margin-bottom: 12px;
	color: #ffffff;
}

.rr-product-card p {
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.75);
}

.rr-product-cta {
	text-align: center;
}

/* ===== RCCR CIVIL RECOVERY SECTION ===== */
.rr-product-rccr {
	background: #ffffff;
}

.rr-split-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.rr-split-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.rr-visual-box {
	position: relative;
	width: 100%;
	max-width: 440px;
	aspect-ratio: 1;
	background: linear-gradient(135deg, #E4F5FA, #b0e0e9);
	border-radius: 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px;
	border: 1px solid rgba(34,184,209,0.15);
}

.rr-visual-icon-wrap {
	margin-bottom: 32px;
}

.rr-visual-icon-wrap svg {
	animation: gentlePulse 3s ease-in-out infinite;
}

@keyframes gentlePulse {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.05); opacity: 0.9; }
}

.rr-visual-stats {
	display: flex;
	gap: 40px;
}

.rr-visual-stat {
	text-align: center;
}

.rr-visual-num {
	font-family: 'Roboto', Arial, sans-serif;
	font-size: 42px;
	font-weight: 900;
	color: #226D7A;
	display: inline;
}

.rr-visual-suffix {
	font-family: 'Roboto', Arial, sans-serif;
	font-size: 28px;
	font-weight: 700;
	color: #22B8D1;
}

.rr-visual-lbl {
	display: block;
	font-size: 13px;
	color: var(--rr-text-light);
	margin-top: 4px;
	font-weight: 500;
}

.rr-benefits-list {
	list-style: none;
	padding: 0;
	margin: 0 0 32px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.rr-benefit-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	font-size: 16px;
	line-height: 1.6;
	color: var(--rr-text);
	padding: 16px 20px;
	background: #f8fcfd;
	border-radius: 12px;
	border-left: 3px solid #22B8D1;
	transition: all 0.3s ease;
}

.rr-benefit-item:hover {
	background: #E4F5FA;
	transform: translateX(4px);
}

.rr-benefit-item svg {
	flex-shrink: 0;
	margin-top: 2px;
}

.rr-benefit-item strong {
	color: var(--rr-primary);
}

.rr-rccr-cta {
	margin-top: 8px;
}

/* ===== STATS SECTION ===== */
.rr-stats-section {
	background: linear-gradient(135deg, #1a4e58, #226d7a, #1a5a65);
	padding: 70px 0;
}

.rr-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}

.rr-stats-item {
	text-align: center;
	padding: 32px 20px;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: all 0.4s ease;
}

.rr-stats-item:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-4px);
	border-color: rgba(34,184,209,0.3);
}

.rr-stats-item svg {
	margin-bottom: 16px;
	display: inline-block;
}

.rr-stats-number {
	display: block;
	font-family: 'Roboto', Arial, sans-serif;
	font-size: 44px;
	font-weight: 900;
	color: #ffffff;
	line-height: 1;
	margin-bottom: 4px;
}

.rr-stats-plus {
	font-family: 'Roboto', Arial, sans-serif;
	font-size: 30px;
	font-weight: 700;
	color: #22B8D1;
	display: inline;
	margin-left: 2px;
}

.rr-stats-label {
	display: block;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.75);
	font-weight: 500;
	margin-top: 8px;
}

/* ===== TESTIMONIALS SECTION ===== */
.rr-testimonials {
	background: #b0e0e9;
	position: relative;
}

.rr-testimonials-bg-shape {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	pointer-events: none;
}

.rr-testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.rr-testimonial-card {
	background: #ffffff;
	padding: 36px 28px;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.05);
	transition: all 0.4s ease;
	border: 1px solid rgba(34,184,209,0.08);
}

.rr-testimonial-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 40px rgba(34,184,209,0.12);
}

.rr-quote-icon {
	margin-bottom: 16px;
}

.rr-quote-icon svg {
	opacity: 0.8;
}

.rr-testimonial-card p {
	font-size: 15px;
	line-height: 1.8;
	color: var(--rr-text);
	margin-bottom: 24px;
	font-style: italic;
}

.rr-testimonial-author {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-top: 16px;
	border-top: 1px solid #E4F5FA;
}

.rr-author-avatar {
	flex-shrink: 0;
}

.rr-author-info strong {
	display: block;
	font-family: 'Roboto', Arial, sans-serif;
	font-size: 15px;
	color: var(--rr-primary);
	margin-bottom: 2px;
}

.rr-author-info span {
	font-size: 13px;
	color: var(--rr-text-light);
}

/* ===== CTA SECTION ===== */
.rr-cta-section {
	background: #ffffff;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.rr-cta-bg-shapes {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

.rr-cta-shape-1 {
	position: absolute;
	top: -80px;
	right: -80px;
}

.rr-cta-shape-2 {
	position: absolute;
	bottom: -60px;
	left: -60px;
}

.rr-cta-content {
	max-width: 700px;
	margin: 0 auto;
}

.rr-cta-content h2 {
	font-size: 42px;
	line-height: 1.2;
	margin-bottom: 20px;
	color: var(--rr-primary);
}

.rr-cta-content p {
	font-size: 18px;
	line-height: 1.7;
	color: var(--rr-text-light);
	margin-bottom: 36px;
}

.rr-cta-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ===== REVEAL ANIMATIONS ===== */
.rr-reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.rr-reveal.rr-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
	.rr-about-grid,
	.rr-product-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.rr-stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.rr-testimonial-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.rr-split-layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.rr-split-visual {
		order: -1;
	}

	.rr-hero-title {
		font-size: 40px;
	}

	.rr-section-header h2 {
		font-size: 32px;
	}

	.rr-cta-content h2 {
		font-size: 34px;
	}
}

@media (max-width: 768px) {
	.rr-hero {
		padding: 100px 20px 60px;
		min-height: auto;
	}

	.rr-hero-title {
		font-size: 32px;
	}

	.rr-hero-subtitle {
		font-size: 16px;
	}

	.rr-hero-actions {
		flex-direction: column;
		align-items: center;
	}

	.rr-hero-stats {
		gap: 24px;
	}

	.rr-stat-number {
		font-size: 28px;
	}

	.rr-section {
		padding: 60px 0;
	}

	.rr-about-grid,
	.rr-product-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.rr-stats-grid {
		grid-template-columns: 1fr 1fr;
		gap: 16px;
	}

	.rr-stats-item {
		padding: 24px 16px;
	}

	.rr-stats-number {
		font-size: 32px;
	}

	.rr-testimonial-grid {
		grid-template-columns: 1fr;
	}

	.rr-visual-stats {
		gap: 24px;
	}

	.rr-visual-num {
		font-size: 32px;
	}

	.rr-benefit-item {
		padding: 14px 16px;
		font-size: 14px;
	}

	.rr-cta-content h2 {
		font-size: 28px;
	}

	.rr-section-header h2 {
		font-size: 28px;
	}

	.rr-btn {
		padding: 14px 24px;
		font-size: 14px;
		width: 100%;
		justify-content: center;
	}

	.rr-cta-actions {
		flex-direction: column;
		align-items: center;
	}
}

@media (max-width: 480px) {
	.rr-hero-title {
		font-size: 26px;
	}

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

	.rr-hero-shape svg {
		height: 40px;
	}

	.rr-section {
		padding: 40px 0;
	}
}
