/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--rf-primary: #667eea; /* Modern Blue */
	--rf-primary-light: #764ba2;
	--rf-primary-dark: #5a67d8;
	--rf-secondary: #f093fb; /* Vibrant Pink */
	--rf-secondary-light: #f5576c;
	--rf-secondary-dark: #e91e63;
	--rf-accent: #4facfe; /* Bright Blue */
	--rf-accent-light: #00f2fe;
	--rf-accent-dark: #43e97b;
	--rf-success: #00d4aa;
	--rf-warning: #ffa726;
	--rf-danger: #ef5350;
	--rf-info: #42a5f5;
	
	--rf-bg: #0a0a0a; /* Dark background */
	--rf-bg-light: #1a1a1a;
	--rf-bg-lighter: #2a2a2a;
	--rf-bg-card: #1e1e1e;
	--rf-bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	--rf-bg-gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	--rf-bg-gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
	
	--rf-text: #ffffff;
	--rf-text-light: #b0b0b0;
	--rf-text-lighter: #808080;
	--rf-text-dark: #e0e0e0;
	
	--rf-border: #333333;
	--rf-border-light: #444444;
	--rf-border-lighter: #555555;
	
	--rf-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	--rf-shadow-light: 0 4px 16px rgba(0, 0, 0, 0.2);
	--rf-shadow-heavy: 0 16px 64px rgba(0, 0, 0, 0.4);
	--rf-shadow-glow: 0 0 20px rgba(102, 126, 234, 0.3);
	
	--rf-radius: 16px;
	--rf-radius-lg: 24px;
	--rf-radius-xl: 32px;
	--rf-radius-full: 50px;
	
	--rf-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	--rf-transition-fast: all 0.2s ease;
	--rf-transition-slow: all 0.6s ease;
	
	--rf-font-family: 'Barlow Condensed', sans-serif;
}

body {
	font-family: var(--rf-font-family);
	line-height: 1.6;
	color: var(--rf-text);
	background: var(--rf-bg);
	overflow-x: hidden;
	font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--rf-font-family);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 2rem); }

p {
	margin-bottom: 1rem;
	color: var(--rf-text-light);
	font-size: 1.1rem;
	line-height: 1.7;
}

/* Utility Classes */
.rf-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
}

.rf-section {
	padding: 8rem 0;
	position: relative;
}

.rf-section-header {
	text-align: center;
	margin-bottom: 5rem;
}

.rf-section-title {
	color: var(--rf-text);
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	margin-bottom: 1.5rem;
	background: var(--rf-bg-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
}

.rf-section-title::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 4px;
	background: var(--rf-bg-gradient);
	border-radius: 2px;
}

.rf-section-subtitle {
	color: var(--rf-text-light);
	font-size: 1.3rem;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

.rf-flex {
	display: flex;
}

.rf-items-center {
	align-items: center;
}

.rf-justify-center {
	justify-content: center;
}

.rf-justify-between {
	justify-content: space-between;
}

/* Header */
.rf-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(10, 10, 10, 0.95);
	backdrop-filter: blur(20px);
	z-index: 1000;
	padding: 1.5rem 0;
	border-bottom: 1px solid var(--rf-border);
	transition: var(--rf-transition);
}

.rf-navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.rf-navbar-brand a {
	text-decoration: none;
	color: var(--rf-text);
	font-weight: 800;
	font-size: 1.8rem;
	transition: var(--rf-transition);
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.rf-navbar-brand a:hover {
	color: var(--rf-primary);
}

.rf-logo {
	width: 40px;
	height: 40px;
	background: var(--rf-bg-gradient);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: var(--rf-text);
	transition: var(--rf-transition);
}

.rf-navbar-brand a:hover .rf-logo {
	transform: rotate(15deg) scale(1.1);
	box-shadow: var(--rf-shadow-glow);
}

.rf-brand-text {
	background: var(--rf-bg-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.rf-mobile-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	width: 30px;
	height: 25px;
	position: relative;
}

.rf-mobile-toggle span {
	width: 100%;
	height: 3px;
	background: var(--rf-text);
	border-radius: 3px;
	transition: var(--rf-transition);
	position: absolute;
}

.rf-mobile-toggle span:nth-child(1) { top: 0; }
.rf-mobile-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.rf-mobile-toggle span:nth-child(3) { bottom: 0; }

.rf-mobile-toggle.active span:nth-child(1) {
	transform: rotate(45deg);
	top: 50%;
}

.rf-mobile-toggle.active span:nth-child(2) {
	opacity: 0;
}

.rf-mobile-toggle.active span:nth-child(3) {
	transform: rotate(-45deg);
	bottom: 50%;
}

/* Mobile Menu */
.rf-mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.98);
	backdrop-filter: blur(20px);
	z-index: 999;
	display: none;
	align-items: center;
	justify-content: center;
}

.rf-mobile-menu.active {
	display: flex;
}

.rf-mobile-nav ul {
	list-style: none;
	text-align: center;
}

.rf-mobile-nav-item {
	margin: 2rem 0;
}

.rf-mobile-nav-link {
	color: var(--rf-text);
	text-decoration: none;
	font-size: 1.8rem;
	font-weight: 600;
	transition: var(--rf-transition);
	position: relative;
}

.rf-mobile-nav-link:hover {
	color: var(--rf-primary);
}

.rf-mobile-nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: var(--rf-bg-gradient);
	transition: var(--rf-transition);
}

.rf-mobile-nav-link:hover::after {
	width: 100%;
}

/* Hero Section */
.rf-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: var(--rf-bg);
	position: relative;
	overflow: hidden;
	padding: 2rem 0;
}

.rf-hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 2;
}

.rf-hero-text {
	max-width: 600px;
}

.rf-hero-title {
	font-size: clamp(3rem, 6vw, 5rem);
	font-weight: 900;
	margin-bottom: 1.5rem;
	background: var(--rf-bg-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.1;
}

.rf-hero-subtitle {
	font-size: 1.4rem;
	color: var(--rf-text-light);
	margin-bottom: 2.5rem;
	line-height: 1.6;
}

.rf-hero-features {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 3rem;
}

.rf-feature-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	color: var(--rf-text-light);
	font-size: 1.1rem;
}

.rf-feature-item i {
	color: var(--rf-primary);
	font-size: 1.2rem;
	width: 24px;
}

.rf-hero-cta {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.rf-hero-visual {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.rf-hero-image {
	position: relative;
	z-index: 2;
}

.rf-hero-image img {
	max-width: 100%;
	height: auto;
	border-radius: var(--rf-radius-xl);
	box-shadow: var(--rf-shadow-heavy);
	transition: var(--rf-transition);
}

.rf-hero-image img:hover {
	transform: scale(1.05) rotate(2deg);
	box-shadow: var(--rf-shadow-glow);
}

.rf-floating-elements {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
}

.rf-float-element {
	position: absolute;
	width: 60px;
	height: 60px;
	background: var(--rf-bg-gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: var(--rf-text);
	animation: float 6s ease-in-out infinite;
}

.rf-float-element:nth-child(1) {
	top: 20%;
	left: 10%;
	animation-delay: 0s;
}

.rf-float-element:nth-child(2) {
	top: 60%;
	right: 20%;
	animation-delay: 2s;
}

.rf-float-element:nth-child(3) {
	bottom: 30%;
	left: 20%;
	animation-delay: 4s;
}

@keyframes float {
	0%, 100% { transform: translateY(0px) rotate(0deg); }
	50% { transform: translateY(-20px) rotate(180deg); }
}

.rf-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.rf-bg-shape {
	position: absolute;
	border-radius: 50%;
	background: var(--rf-bg-gradient);
	opacity: 0.1;
	filter: blur(40px);
}

.rf-bg-shape-1 {
	width: 400px;
	height: 400px;
	top: 10%;
	right: 10%;
	animation: pulse 8s ease-in-out infinite;
}

.rf-bg-shape-2 {
	width: 300px;
	height: 300px;
	bottom: 20%;
	left: 5%;
	background: var(--rf-bg-gradient-2);
	animation: pulse 8s ease-in-out infinite 2s;
}

.rf-bg-shape-3 {
	width: 200px;
	height: 200px;
	top: 50%;
	left: 50%;
	background: var(--rf-bg-gradient-3);
	animation: pulse 8s ease-in-out infinite 4s;
}

@keyframes pulse {
	0%, 100% { transform: scale(1); opacity: 0.1; }
	50% { transform: scale(1.2); opacity: 0.2; }
}

/* Buttons */
.rf-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2rem;
	border-radius: var(--rf-radius-full);
	text-decoration: none;
	font-weight: 600;
	text-align: center;
	transition: var(--rf-transition);
	border: none;
	cursor: pointer;
	font-size: 1rem;
	position: relative;
	overflow: hidden;
	white-space: nowrap;
}

.rf-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.6s;
}

.rf-btn:hover::before {
	left: 100%;
}

.rf-btn-primary {
	background: var(--rf-bg-gradient);
	color: var(--rf-text);
	box-shadow: var(--rf-shadow);
}

.rf-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: var(--rf-shadow-heavy), var(--rf-shadow-glow);
}

.rf-btn-outline {
	background: transparent;
	color: var(--rf-text);
	border: 2px solid var(--rf-border);
	position: relative;
}

.rf-btn-outline::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--rf-bg-gradient);
	border-radius: inherit;
	opacity: 0;
	transition: var(--rf-transition);
	z-index: -1;
}

.rf-btn-outline:hover {
	color: var(--rf-text);
	border-color: transparent;
	transform: translateY(-3px);
}

.rf-btn-outline:hover::after {
	opacity: 1;
}

.rf-btn-full {
	width: 100%;
	justify-content: center;
}

/* Transformation Section */
.rf-transformation {
	background: var(--rf-bg-light);
}

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

.rf-transformation-card {
	background: var(--rf-bg-card);
	border: 1px solid var(--rf-border);
	border-radius: var(--rf-radius-lg);
	padding: 2.5rem 2rem;
	text-align: center;
	position: relative;
	overflow: hidden;
	transition: var(--rf-transition);
}

.rf-transformation-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--rf-bg-gradient);
	transform: scaleX(0);
	transition: var(--rf-transition);
}

.rf-transformation-card:hover {
	transform: translateY(-10px);
	border-color: var(--rf-primary);
	box-shadow: var(--rf-shadow-heavy);
}

.rf-transformation-card:hover::before {
	transform: scaleX(1);
}

.rf-card-number {
	position: absolute;
	top: 1rem;
	right: 1rem;
	font-size: 3rem;
	font-weight: 900;
	color: var(--rf-primary);
	opacity: 0.2;
}

.rf-card-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
	background: var(--rf-bg-gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: var(--rf-text);
	transition: var(--rf-transition);
}

.rf-transformation-card:hover .rf-card-icon {
	transform: scale(1.1) rotate(10deg);
}

.rf-transformation-card h3 {
	color: var(--rf-text);
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.rf-transformation-card p {
	color: var(--rf-text-light);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.rf-card-duration {
	display: inline-block;
	background: var(--rf-bg-gradient-2);
	color: var(--rf-text);
	padding: 0.5rem 1rem;
	border-radius: var(--rf-radius-full);
	font-size: 0.9rem;
	font-weight: 600;
}

/* Philosophy Section */
.rf-philosophy {
	background: var(--rf-bg);
}

.rf-philosophy-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.rf-philosophy-intro {
	font-size: 1.2rem;
	color: var(--rf-text-light);
	margin-bottom: 3rem;
	line-height: 1.8;
}

.rf-philosophy-pillars {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.rf-pillar {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	padding: 1.5rem;
	background: var(--rf-bg-card);
	border-radius: var(--rf-radius);
	border: 1px solid var(--rf-border);
	transition: var(--rf-transition);
}

.rf-pillar:hover {
	border-color: var(--rf-primary);
	transform: translateX(10px);
}

.rf-pillar-icon {
	width: 60px;
	height: 60px;
	background: var(--rf-bg-gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: var(--rf-text);
	flex-shrink: 0;
}

.rf-pillar h3 {
	color: var(--rf-text);
	margin-bottom: 0.5rem;
	font-size: 1.3rem;
}

.rf-pillar p {
	color: var(--rf-text-light);
	margin-bottom: 0;
	line-height: 1.6;
}

.rf-philosophy-visual {
	text-align: center;
}

.rf-philosophy-image {
	margin-bottom: 2rem;
}

.rf-philosophy-image img {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid var(--rf-border);
	transition: var(--rf-transition);
}

.rf-philosophy-image img:hover {
	border-color: var(--rf-primary);
	transform: scale(1.05);
}

.rf-philosophy-quote {
	background: var(--rf-bg-card);
	padding: 2rem;
	border-radius: var(--rf-radius);
	border: 1px solid var(--rf-border);
}

.rf-philosophy-quote blockquote {
	font-size: 1.2rem;
	font-style: italic;
	color: var(--rf-text);
	margin-bottom: 1rem;
	line-height: 1.6;
}

.rf-philosophy-quote cite {
	color: var(--rf-primary);
	font-weight: 600;
}

/* Journey Section */
.rf-journey {
	background: var(--rf-bg-light);
}

.rf-journey-paths {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 4rem;
}

.rf-path-card {
	background: var(--rf-bg-card);
	border: 1px solid var(--rf-border);
	border-radius: var(--rf-radius-lg);
	overflow: hidden;
	transition: var(--rf-transition);
	position: relative;
}

.rf-path-card:hover {
	transform: translateY(-10px);
	border-color: var(--rf-primary);
	box-shadow: var(--rf-shadow-heavy);
}

.rf-path-featured {
	border-color: var(--rf-secondary);
	transform: scale(1.05);
}

.rf-path-featured:hover {
	transform: scale(1.05) translateY(-10px);
}

.rf-path-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: var(--rf-bg-gradient-2);
	color: var(--rf-text);
	padding: 0.5rem 1rem;
	border-radius: var(--rf-radius-full);
	font-size: 0.875rem;
	font-weight: 600;
	z-index: 2;
}

.rf-path-header {
	padding: 2rem 2rem 1rem;
	text-align: center;
	background: linear-gradient(135deg, var(--rf-bg-lighter) 0%, var(--rf-bg-card) 100%);
	border-bottom: 1px solid var(--rf-border);
}

.rf-path-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 1rem;
	background: var(--rf-bg-gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: var(--rf-text);
}

.rf-path-header h3 {
	color: var(--rf-text);
	margin-bottom: 0.5rem;
}

.rf-path-level {
	display: inline-block;
	background: var(--rf-bg-gradient-3);
	color: var(--rf-text);
	padding: 0.25rem 0.75rem;
	border-radius: var(--rf-radius-full);
	font-size: 0.8rem;
	font-weight: 600;
}

.rf-path-content {
	padding: 2rem;
}

.rf-path-content p {
	color: var(--rf-text-light);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.rf-path-features {
	list-style: none;
	margin-bottom: 2rem;
}

.rf-path-features li {
	display: flex;
	align-items: center;
	margin-bottom: 0.75rem;
	color: var(--rf-text-light);
}

.rf-path-features i {
	color: var(--rf-success);
	margin-right: 0.75rem;
	font-size: 1.1rem;
}

.rf-path-cta {
	text-align: center;
}

.rf-path-cta .rf-btn {
	width: 100%;
	justify-content: center;
}

/* Community Section */
.rf-community {
	background: var(--rf-bg);
}

.rf-community-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.rf-community-intro {
	font-size: 1.2rem;
	color: var(--rf-text-light);
	margin-bottom: 3rem;
	line-height: 1.8;
}

.rf-community-features {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.rf-community-feature {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	padding: 1.5rem;
	background: var(--rf-bg-card);
	border-radius: var(--rf-radius);
	border: 1px solid var(--rf-border);
	transition: var(--rf-transition);
}

.rf-community-feature:hover {
	border-color: var(--rf-accent);
	transform: translateX(10px);
}

.rf-feature-icon {
	width: 60px;
	height: 60px;
	background: var(--rf-bg-gradient-3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: var(--rf-text);
	flex-shrink: 0;
}

.rf-feature-content h3 {
	color: var(--rf-text);
	margin-bottom: 0.5rem;
	font-size: 1.3rem;
}

.rf-feature-content p {
	color: var(--rf-text-light);
	margin-bottom: 0;
	line-height: 1.6;
}

.rf-community-visual {
	text-align: center;
}

.rf-community-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}



/* Testimonials Section */
.rf-testimonials {
	background: var(--rf-bg-light);
}

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

.rf-testimonial-card {
	background: var(--rf-bg-card);
	border: 1px solid var(--rf-border);
	border-radius: var(--rf-radius-lg);
	padding: 2rem;
	transition: var(--rf-transition);
}

.rf-testimonial-card:hover {
	transform: translateY(-5px);
	border-color: var(--rf-primary);
	box-shadow: var(--rf-shadow-heavy);
}

.rf-testimonial-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.rf-testimonial-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.rf-testimonial-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rf-testimonial-info h4 {
	color: var(--rf-text);
	margin-bottom: 0.25rem;
	font-size: 1.1rem;
}

.rf-testimonial-role {
	color: var(--rf-primary);
	font-weight: 500;
	margin-bottom: 0;
	font-size: 0.9rem;
}

.rf-testimonial-rating {
	display: flex;
	gap: 0.25rem;
	margin-left: auto;
}

.rf-testimonial-rating i {
	color: var(--rf-warning);
	font-size: 1rem;
}

.rf-testimonial-content {
	margin-bottom: 1.5rem;
}

.rf-testimonial-content p {
	color: var(--rf-text-light);
	line-height: 1.7;
	margin-bottom: 0;
	font-style: italic;
}

.rf-testimonial-transformation {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.rf-transformation-tag {
	background: var(--rf-bg-gradient);
	color: var(--rf-text);
	padding: 0.25rem 0.75rem;
	border-radius: var(--rf-radius-full);
	font-size: 0.8rem;
	font-weight: 500;
}

/* Contact Section */
.rf-contact {
	background: var(--rf-bg);
}

.rf-contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.rf-contact-intro {
	font-size: 1.2rem;
	color: var(--rf-text-light);
	margin-bottom: 3rem;
	line-height: 1.8;
}

.rf-contact-details {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.rf-contact-item {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 1.5rem;
	background: var(--rf-bg-card);
	border-radius: var(--rf-radius);
	border: 1px solid var(--rf-border);
	transition: var(--rf-transition);
}

.rf-contact-item:hover {
	border-color: var(--rf-primary);
	transform: translateX(10px);
}

.rf-contact-icon {
	width: 50px;
	height: 50px;
	background: var(--rf-bg-gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	color: var(--rf-text);
	flex-shrink: 0;
}

.rf-contact-item h4 {
	color: var(--rf-text);
	margin-bottom: 0.25rem;
	font-size: 1.1rem;
}

.rf-contact-item p {
	color: var(--rf-text-light);
	margin-bottom: 0;
}

.rf-contact-form-wrapper {
	background: var(--rf-bg-card);
	padding: 3rem;
	border-radius: var(--rf-radius-lg);
	border: 1px solid var(--rf-border);
}

.rf-contact-form {
	display: grid;
	gap: 1.5rem;
}

.rf-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.rf-form-group {
	display: flex;
	flex-direction: column;
}

.rf-form-group label {
	font-weight: 600;
	color: var(--rf-text);
	margin-bottom: 0.5rem;
}

.rf-form-group input,
.rf-form-group select,
.rf-form-group textarea {
	padding: 1rem;
	border: 2px solid var(--rf-border);
	border-radius: var(--rf-radius);
	font-size: 1rem;
	transition: var(--rf-transition);
	background: var(--rf-bg);
	color: var(--rf-text);
}

.rf-form-group input:focus,
.rf-form-group select:focus,
.rf-form-group textarea:focus {
	outline: none;
	border-color: var(--rf-primary);
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.rf-form-group textarea {
	resize: vertical;
	min-height: 100px;
}

/* Footer */
.rf-footer {
	background: var(--rf-bg-light);
	border-top: 1px solid var(--rf-border);
	padding: 4rem 0 2rem;
}

.rf-footer-content {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 4rem;
	margin-bottom: 3rem;
}

.rf-footer-brand {
	max-width: 300px;
}

.rf-footer-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--rf-text);
}

.rf-footer-logo i {
	width: 40px;
	height: 40px;
	background: var(--rf-bg-gradient);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: var(--rf-text);
}

.rf-footer-brand p {
	color: var(--rf-text-light);
	margin-bottom: 2rem;
	line-height: 1.6;
}

.rf-social-links {
	display: flex;
	gap: 1rem;
}

.rf-social-link {
	width: 45px;
	height: 45px;
	background: var(--rf-bg-card);
	border: 1px solid var(--rf-border);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--rf-text-light);
	text-decoration: none;
	transition: var(--rf-transition);
}

.rf-social-link:hover {
	background: var(--rf-bg-gradient);
	color: var(--rf-text);
	border-color: var(--rf-primary);
	transform: translateY(-3px);
}

.rf-footer-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.rf-footer-column h4 {
	color: var(--rf-text);
	margin-bottom: 1.5rem;
	font-size: 1.2rem;
}

.rf-footer-column ul {
	list-style: none;
}

.rf-footer-column li {
	margin-bottom: 0.75rem;
}

.rf-footer-column a {
	color: var(--rf-text-light);
	text-decoration: none;
	transition: var(--rf-transition);
}

.rf-footer-column a:hover {
	color: var(--rf-primary);
}

.rf-footer-bottom {
	border-top: 1px solid var(--rf-border);
	padding-top: 2rem;
	text-align: center;
}

.rf-footer-bottom p {
	color: var(--rf-text-lighter);
	margin-bottom: 0;
	font-size: 0.9rem;
}

/* Cookie Consent */
.rf-cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--rf-bg-card);
	border-top: 1px solid var(--rf-border);
	padding: 1.5rem 0;
	z-index: 1001;
	transform: translateY(100%);
	transition: var(--rf-transition);
}

.rf-cookie-consent.show {
	transform: translateY(0);
}

.rf-cookie-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}

.rf-cookie-text {
	flex: 1;
	min-width: 400px;
}

.rf-cookie-text p {
	margin-bottom: 0;
	color: var(--rf-text-light);
}

.rf-cookie-text a {
	color: var(--rf-primary);
	text-decoration: none;
}

.rf-cookie-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.rf-hero-content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 3rem;
	}
	
	.rf-philosophy-content,
	.rf-community-content,
	.rf-contact-content {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	
	.rf-footer-content {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	
	/* Page Content Tablet Styles */
	.rf-content-wrapper {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	
	.rf-content-sidebar {
		position: static;
	}
	
	.rf-info-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}
	
	.rf-security-features {
		grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	}
	
	.rf-rights-grid {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	}
	
	.rf-ip-features {
		grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	}
}

@media (max-width: 768px) {
	.rf-mobile-toggle {
		display: flex;
	}
	
	.rf-section {
		padding: 4rem 0;
	}
	
	.rf-container {
		padding: 0 1rem;
	}
	
	.rf-transformation-grid {
		grid-template-columns: 1fr;
	}
	
	.rf-journey-paths {
		grid-template-columns: 1fr;
	}
	
	.rf-path-featured {
		transform: none;
	}
	
	.rf-path-featured:hover {
		transform: translateY(-10px);
	}
	
	.rf-testimonials-grid {
		grid-template-columns: 1fr;
	}
	
	.rf-form-row {
		grid-template-columns: 1fr;
	}
	
	.rf-footer-links {
		grid-template-columns: 1fr;
		text-align: center;
	}
	
	.rf-cookie-content {
		flex-direction: column;
		text-align: center;
	}
	
	.rf-cookie-text {
		min-width: auto;
	}
	
	/* Page Header Mobile Styles */
	.rf-page-header {
		padding: 100px 0 40px;
	}
	
	.rf-page-header h1 {
		font-size: 2.5rem;
	}
	
	.rf-page-header p {
		font-size: 1.1rem;
	}
	
	.rf-page-breadcrumb {
		flex-direction: column;
		gap: 0.5rem;
	}
	
	/* Page Content Mobile Styles */
	.rf-content-wrapper {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.rf-content-main {
		padding: 2rem;
	}
	
	.rf-content-sidebar {
		position: static;
	}
	
	.rf-sidebar-widget {
		padding: 1.5rem;
	}
	
	/* Privacy Page Mobile Styles */
	.rf-info-grid {
		grid-template-columns: 1fr;
	}
	
	.rf-security-features {
		grid-template-columns: 1fr;
	}
	
	.rf-rights-grid {
		grid-template-columns: 1fr;
	}
	
	/* Terms Page Mobile Styles */
	.rf-ip-features {
		grid-template-columns: 1fr;
	}
	
	/* Cookies Page Mobile Styles */
	.rf-cookie-header {
		flex-direction: column;
		text-align: center;
	}
	
	/* Thank You Page Tablet Styles */
	.rf-thank-you {
		padding: 100px 0 60px;
	}
	
	.rf-thank-you-content {
		padding: 0 1rem;
	}
	
	.rf-thank-you-icon {
		font-size: 3rem;
	}
	
	.rf-thank-you h1 {
		font-size: 2.5rem;
	}
	
	.rf-thank-you-message {
		padding: 1.5rem;
	}
	
	.rf-step {
		flex-direction: column;
		text-align: center;
	}
	
	.rf-resources-grid {
		grid-template-columns: 1fr;
	}
	
	.rf-contact-method {
		flex-direction: column;
		text-align: center;
	}
	
	.rf-actions {
		flex-direction: column;
		align-items: center;
	}
	
	.rf-actions .rf-btn {
		min-width: 100%;
	}
}

@media (max-width: 480px) {
	.rf-hero-title {
		font-size: 2.5rem;
	}
	
	.rf-hero-subtitle {
		font-size: 1.2rem;
	}
	
	.rf-section-title {
		font-size: 2rem;
	}
	
	.rf-btn {
		padding: 0.875rem 1.5rem;
		font-size: 0.9rem;
	}
	
	.rf-transformation-card,
	.rf-path-card,
	.rf-testimonial-card {
		padding: 1.5rem;
	}
	
	.rf-contact-form-wrapper {
		padding: 2rem 1.5rem;
	}
	
	/* Page Header Mobile Styles */
	.rf-page-header {
		padding: 80px 0 30px;
	}
	
	.rf-page-header h1 {
		font-size: 2rem;
	}
	
	.rf-page-header p {
		font-size: 1rem;
	}
	
	/* Page Content Mobile Styles */
	.rf-content-main {
		padding: 1.5rem;
	}
	
	.rf-sidebar-widget {
		padding: 1rem;
	}
	
	.rf-content-section h2 {
		font-size: 1.5rem;
	}
	
	.rf-content-section h3 {
		font-size: 1.3rem;
	}
	
	/* Privacy Page Mobile Styles */
	.rf-info-card {
		padding: 1rem;
	}
	
	.rf-usage-item {
		padding: 1rem;
	}
	
	.rf-security-feature {
		padding: 1rem;
	}
	
	.rf-right-item {
		padding: 1rem;
	}
	
	/* Terms Page Mobile Styles */
	.rf-definition-item {
		padding: 1rem;
	}
	
	.rf-acceptance-list li {
		padding: 0.75rem 1rem;
	}
	
	.rf-usage-rules,
	.rf-prohibitions,
	.rf-ip-feature,
	.rf-limitations,
	.rf-termination-reasons {
		padding: 1rem;
	}
	
	/* Cookies Page Mobile Styles */
	.rf-cookie-header {
		padding: 1rem;
	}
	
	.rf-cookie-content {
		padding: 1rem;
	}
	
	.rf-cookie-usage,
	.rf-third-party-cookies,
	.rf-cookie-controls,
	.rf-consequences {
		padding: 1rem;
	}
	
	/* Thank You Page Mobile Styles */
	.rf-thank-you {
		padding: 80px 0 40px;
	}
	
	.rf-thank-you-icon {
		font-size: 2.5rem;
	}
	
	.rf-thank-you h1 {
		font-size: 2rem;
	}
	
	.rf-thank-you-message {
		padding: 1rem;
	}
	
	.rf-step {
		padding: 1rem;
	}
	
	.rf-resource-card {
		padding: 1.5rem;
	}
}

/* Page Header - Common for Privacy, Terms, Cookies */
.rf-page-header {
	padding: 120px 0 60px;
	background: var(--rf-bg-gradient);
	position: relative;
	overflow: hidden;
}

.rf-page-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.3);
	z-index: 1;
}

.rf-page-header-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.rf-page-header h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	color: var(--rf-text);
	margin-bottom: 1rem;
}

.rf-page-header p {
	font-size: 1.3rem;
	color: var(--rf-text-light);
	margin-bottom: 2rem;
	line-height: 1.6;
}

.rf-page-breadcrumb {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	font-size: 0.9rem;
	color: var(--rf-text-light);
}

.rf-page-breadcrumb a {
	color: var(--rf-text);
	text-decoration: none;
	transition: var(--rf-transition);
}

.rf-page-breadcrumb a:hover {
	color: var(--rf-primary);
}

.rf-page-breadcrumb i {
	font-size: 0.8rem;
	color: var(--rf-text-lighter);
}

/* Page Content Layout */
.rf-page-content {
	padding: 4rem 0;
	background: var(--rf-bg);
}

.rf-content-wrapper {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 4rem;
	align-items: start;
}

.rf-content-main {
	background: var(--rf-bg-card);
	padding: 3rem;
	border-radius: var(--rf-radius-lg);
	border: 1px solid var(--rf-border);
}

.rf-content-section {
	margin-bottom: 3rem;
}

.rf-content-section:last-child {
	margin-bottom: 0;
}

.rf-content-section h2 {
	font-size: 2rem;
	font-weight: 700;
	color: var(--rf-text);
	margin-bottom: 1.5rem;
	background: var(--rf-bg-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.rf-content-section h3 {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--rf-text);
	margin-bottom: 1rem;
	margin-top: 2rem;
}

.rf-content-section p {
	color: var(--rf-text-light);
	line-height: 1.7;
	margin-bottom: 1rem;
}

.rf-content-section ul {
	margin-bottom: 1rem;
	padding-left: 1.5rem;
}

.rf-content-section li {
	color: var(--rf-text-light);
	margin-bottom: 0.5rem;
	line-height: 1.6;
}

/* Sidebar */
.rf-content-sidebar {
	position: sticky;
	top: 120px;
}

.rf-sidebar-widget {
	background: var(--rf-bg-card);
	padding: 2rem;
	border-radius: var(--rf-radius);
	border: 1px solid var(--rf-border);
	margin-bottom: 2rem;
}

.rf-sidebar-widget:last-child {
	margin-bottom: 0;
}

.rf-sidebar-widget h4 {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--rf-text);
	margin-bottom: 1.5rem;
	background: var(--rf-bg-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.rf-sidebar-nav {
	list-style: none;
}

.rf-sidebar-nav li {
	margin-bottom: 0.75rem;
}

.rf-sidebar-nav a {
	color: var(--rf-text-light);
	text-decoration: none;
	transition: var(--rf-transition);
	display: block;
	padding: 0.5rem 0;
	border-radius: var(--rf-radius);
}

.rf-sidebar-nav a:hover {
	color: var(--rf-primary);
	background: var(--rf-bg-light);
	padding-left: 0.75rem;
}

/* Privacy Page Specific Styles */
.rf-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin: 2rem 0;
}

.rf-info-card {
	background: var(--rf-bg-light);
	padding: 1.5rem;
	border-radius: var(--rf-radius);
	border: 1px solid var(--rf-border);
}

.rf-info-card h4 {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--rf-text);
	margin-bottom: 1rem;
}

.rf-info-card ul {
	list-style: none;
	padding: 0;
}

.rf-info-card li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
	color: var(--rf-text-light);
}

.rf-info-card li::before {
	content: '•';
	color: var(--rf-primary);
	font-weight: bold;
}

.rf-usage-list {
	list-style: none;
	padding: 0;
}

.rf-usage-item {
	background: var(--rf-bg-light);
	padding: 1.5rem;
	border-radius: var(--rf-radius);
	border: 1px solid var(--rf-border);
	margin-bottom: 1rem;
}

.rf-usage-item h4 {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--rf-text);
	margin-bottom: 0.5rem;
}

.rf-usage-item p {
	margin-bottom: 0;
	color: var(--rf-text-light);
}

.rf-security-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.5rem;
	margin: 2rem 0;
}

.rf-security-feature {
	text-align: center;
	padding: 1.5rem;
	background: var(--rf-bg-light);
	border-radius: var(--rf-radius);
	border: 1px solid var(--rf-border);
}

.rf-security-feature i {
	font-size: 2rem;
	color: var(--rf-success);
	margin-bottom: 1rem;
}

.rf-security-feature h4 {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--rf-text);
	margin-bottom: 0.5rem;
}

.rf-rights-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	margin: 2rem 0;
}

.rf-right-item {
	background: var(--rf-bg-light);
	padding: 1.5rem;
	border-radius: var(--rf-radius);
	border: 1px solid var(--rf-border);
	text-align: center;
}

.rf-right-item i {
	font-size: 2rem;
	color: var(--rf-primary);
	margin-bottom: 1rem;
}

.rf-right-item h4 {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--rf-text);
	margin-bottom: 0.5rem;
}

.rf-right-item p {
	font-size: 0.9rem;
	color: var(--rf-text-light);
	margin-bottom: 0;
}

.rf-contact-info {
	background: var(--rf-bg-light);
	padding: 2rem;
	border-radius: var(--rf-radius);
	border: 1px solid var(--rf-border);
	margin-top: 2rem;
}

.rf-contact-info h3 {
	margin-top: 0;
}

/* Terms Page Specific Styles */
.rf-definitions-grid {
	display: grid;
	gap: 1.5rem;
	margin: 2rem 0;
}

.rf-definition-item {
	background: var(--rf-bg-light);
	padding: 1.5rem;
	border-radius: var(--rf-radius);
	border: 1px solid var(--rf-border);
}

.rf-definition-item h4 {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--rf-primary);
	margin-bottom: 0.5rem;
}

.rf-definition-item p {
	margin-bottom: 0;
}

.rf-acceptance-list {
	list-style: none;
	padding: 0;
}

.rf-acceptance-list li {
	background: var(--rf-bg-light);
	padding: 1rem 1.5rem;
	border-radius: var(--rf-radius);
	border: 1px solid var(--rf-border);
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.rf-acceptance-list li::before {
	content: '✓';
	color: var(--rf-success);
	font-weight: bold;
	font-size: 1.2rem;
}

.rf-usage-rules {
	background: var(--rf-bg-light);
	padding: 2rem;
	border-radius: var(--rf-radius);
	border: 1px solid var(--rf-border);
	margin: 2rem 0;
}

.rf-usage-rules h4 {
	margin-top: 0;
}

.rf-prohibitions {
	background: var(--rf-bg-light);
	padding: 2rem;
	border-radius: var(--rf-radius);
	border: 1px solid var(--rf-danger);
	margin: 2rem 0;
}

.rf-prohibitions h4 {
	color: var(--rf-danger);
	margin-top: 0;
}

.rf-prohibitions ul {
	list-style: none;
	padding: 0;
}

.rf-prohibitions li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
	color: var(--rf-text-light);
}

.rf-prohibitions li::before {
	content: '✗';
	color: var(--rf-danger);
	font-weight: bold;
}

.rf-ip-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.5rem;
	margin: 2rem 0;
}

.rf-ip-feature {
	text-align: center;
	padding: 1.5rem;
	background: var(--rf-bg-light);
	border-radius: var(--rf-radius);
	border: 1px solid var(--rf-border);
}

.rf-ip-feature i {
	font-size: 2rem;
	color: var(--rf-accent);
	margin-bottom: 1rem;
}

.rf-ip-feature h4 {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--rf-text);
	margin-bottom: 0.5rem;
}

.rf-limitations {
	background: var(--rf-bg-light);
	padding: 2rem;
	border-radius: var(--rf-radius);
	border: 1px solid var(--rf-warning);
	margin: 2rem 0;
}

.rf-limitations h4 {
	color: var(--rf-warning);
	margin-top: 0;
}

.rf-termination-reasons {
	background: var(--rf-bg-light);
	padding: 2rem;
	border-radius: var(--rf-radius);
	border: 1px solid var(--rf-border);
	margin: 2rem 0;
}

.rf-termination-reasons ul {
	list-style: none;
	padding: 0;
}

.rf-termination-reasons li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
	color: var(--rf-text-light);
}

.rf-termination-reasons li::before {
	content: '⚠';
	color: var(--rf-warning);
	font-weight: bold;
}

/* Cookies Page Specific Styles */
.rf-cookies-grid {
	display: grid;
	gap: 2rem;
	margin: 2rem 0;
}

.rf-cookie-type {
	background: var(--rf-bg-light);
	border-radius: var(--rf-radius);
	border: 1px solid var(--rf-border);
	overflow: hidden;
}

.rf-cookie-header {
	background: var(--rf-bg-gradient-2);
	padding: 1.5rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.rf-cookie-icon {
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: var(--rf-text);
}

.rf-cookie-header h4 {
	margin-bottom: 0;
	color: var(--rf-text);
}

.rf-cookie-content {
	padding: 1.5rem;
}

.rf-cookie-content p {
	margin-bottom: 1rem;
}

.rf-cookie-content ul {
	list-style: none;
	padding: 0;
	margin-bottom: 1rem;
}

.rf-cookie-content li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
	color: var(--rf-text-light);
}

.rf-cookie-content li::before {
	content: '•';
	color: var(--rf-secondary);
	font-weight: bold;
}

.rf-cookie-duration {
	display: inline-block;
	background: var(--rf-bg-gradient-3);
	color: var(--rf-text);
	padding: 0.5rem 1rem;
	border-radius: var(--rf-radius-full);
	font-size: 0.9rem;
	font-weight: 600;
}

.rf-cookie-usage {
	background: var(--rf-bg-light);
	padding: 2rem;
	border-radius: var(--rf-radius);
	border: 1px solid var(--rf-border);
	margin: 2rem 0;
}

.rf-third-party-cookies {
	background: var(--rf-bg-light);
	padding: 2rem;
	border-radius: var(--rf-radius);
	border: 1px solid var(--rf-border);
	margin: 2rem 0;
}

.rf-third-party-cookies ul {
	list-style: none;
	padding: 0;
}

.rf-third-party-cookies li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
	color: var(--rf-text-light);
}

.rf-third-party-cookies li::before {
	content: '🔗';
	font-size: 1.2rem;
}

.rf-cookie-controls {
	background: var(--rf-bg-light);
	padding: 2rem;
	border-radius: var(--rf-radius);
	border: 1px solid var(--rf-border);
	margin: 2rem 0;
	text-align: center;
}

.rf-cookie-controls .rf-btn {
	margin: 1rem 0;
}

.rf-consequences {
	background: var(--rf-bg-light);
	padding: 2rem;
	border-radius: var(--rf-radius);
	border: 1px solid var(--rf-warning);
	margin: 2rem 0;
}

.rf-consequences h4 {
	color: var(--rf-warning);
	margin-top: 0;
}

/* Thank You Page */
.rf-thank-you {
	padding: 120px 0 80px;
	background: var(--rf-bg);
	min-height: 100vh;
}

.rf-thank-you-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.rf-thank-you-icon {
	font-size: 4rem;
	color: var(--rf-success);
	margin-bottom: 2rem;
	animation: pulse 2s infinite;
}

.rf-thank-you h1 {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 700;
	background: var(--rf-bg-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1rem;
}

.rf-thank-you-subtitle {
	font-size: 1.2rem;
	color: var(--rf-text-light);
	margin-bottom: 2rem;
}

.rf-thank-you-message {
	background: var(--rf-bg-card);
	padding: 2rem;
	border-radius: var(--rf-radius-lg);
	margin-bottom: 3rem;
	border: 1px solid var(--rf-border);
}

.rf-thank-you-message p {
	font-size: 1.1rem;
	line-height: 1.6;
	color: var(--rf-text);
}

.rf-next-steps {
	margin-bottom: 3rem;
}

.rf-next-steps h3 {
	font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: var(--rf-text);
}

.rf-steps-grid {
	display: grid;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.rf-step {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	background: var(--rf-bg-card);
	padding: 1.5rem;
	border-radius: var(--rf-radius);
	border: 1px solid var(--rf-border);
	text-align: left;
}

.rf-step-number {
	background: var(--rf-bg-gradient);
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.1rem;
	flex-shrink: 0;
}

.rf-step-content h4 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--rf-text);
}

.rf-step-content p {
	color: var(--rf-text-light);
	line-height: 1.5;
}

.rf-while-waiting {
	margin-bottom: 3rem;
}

.rf-while-waiting h3 {
	font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--rf-text);
}

.rf-while-waiting > p {
	color: var(--rf-text-light);
	margin-bottom: 2rem;
	font-size: 1.1rem;
}

.rf-resources-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.rf-resource-card {
	background: var(--rf-bg-card);
	padding: 2rem;
	border-radius: var(--rf-radius);
	border: 1px solid var(--rf-border);
	text-align: center;
	transition: var(--rf-transition);
}

.rf-resource-card:hover {
	transform: translateY(-5px);
	border-color: var(--rf-primary);
	box-shadow: var(--rf-shadow-glow);
}

.rf-resource-icon {
	font-size: 2.5rem;
	color: var(--rf-primary);
	margin-bottom: 1rem;
}

.rf-resource-card h4 {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--rf-text);
}

.rf-resource-card p {
	color: var(--rf-text-light);
	margin-bottom: 1.5rem;
	line-height: 1.5;
}

.rf-contact-info {
	margin-bottom: 3rem;
}

.rf-contact-info h3 {
	font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--rf-text);
}

.rf-contact-info > p {
	color: var(--rf-text-light);
	margin-bottom: 2rem;
	font-size: 1.1rem;
}

.rf-contact-methods {
	display: grid;
	gap: 1.5rem;
}

.rf-contact-method {
	display: flex;
	align-items: center;
	gap: 1rem;
	background: var(--rf-bg-card);
	padding: 1.5rem;
	border-radius: var(--rf-radius);
	border: 1px solid var(--rf-border);
}

.rf-contact-icon {
	background: var(--rf-bg-gradient-2);
	color: white;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	flex-shrink: 0;
}

.rf-contact-method h4 {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--rf-text);
}

.rf-contact-method p {
	color: var(--rf-text);
	margin-bottom: 0.25rem;
}

.rf-response-time {
	font-size: 0.9rem;
	color: var(--rf-text-lighter);
}

.rf-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.rf-actions .rf-btn {
	min-width: 200px;
}

/* Smooth Scrolling */
html {
	scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
.rf-btn:focus,
.rf-form-group input:focus,
.rf-form-group select:focus,
.rf-form-group textarea:focus,
.rf-mobile-nav-link:focus {
	outline: 2px solid var(--rf-primary);
	outline-offset: 2px;
}

/* Loading States */
.rf-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.rf-btn:disabled:hover {
	transform: none;
	box-shadow: var(--rf-shadow);
}

/* Print Styles */
@media print {
	.rf-header,
	.rf-mobile-menu,
	.rf-cookie-consent {
		display: none;
	}
	
	.rf-hero {
		min-height: auto;
		padding: 2rem 0;
	}
	
	.rf-section {
		padding: 2rem 0;
	}
	
	.rf-btn {
		border: 1px solid var(--rf-text);
		background: none;
		color: var(--rf-text);
	}
}

