/* ========== NIERUCHOMOŚCI LANDING PAGE ========== */
/* Color Palette: Emerald Green, Navy Blue, Gold */

/* ========== ROOT VARIABLES ========== */
:root {
	--emerald: #10B981;
	--emerald-light: #34D399;
	--gold: #F59E0B;
	--navy: #0A1628;
	--navy-surface: #111D32;
	--navy-card: #162236;
	--glow: rgba(16, 185, 129, 0.3);
	--text: #1A2744;
	--text-light: #E2E8F0;
	--text-muted: #8B9BB8;
	--white: #FFFFFF;
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	color: var(--text);
	background-color: var(--white);
	line-height: 1.6;
}

/* ========== CONTAINER & TYPOGRAPHY ========== */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.2;
}

h1 {
	font-size: 3.5rem;
	margin-bottom: 20px;
}

h2 {
	font-size: 2.5rem;
	margin-bottom: 15px;
}

h3 {
	font-size: 1.5rem;
	margin-bottom: 10px;
}

p {
	margin-bottom: 16px;
	font-size: 1rem;
}

a {
	color: var(--emerald);
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: var(--emerald-light);
}

/* ========== GRADIENT TEXT ========== */
.re-gradient-text {
	background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: inline-block;
}

/* ========== SECTIONS ========== */
.section {
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

.section--light {
	background-color: var(--white);
	color: var(--text);
}

.section--dark {
	background-color: var(--navy);
	color: var(--text-light);
}

.section--accent {
	background: linear-gradient(135deg, var(--navy), var(--navy-surface));
}

/* ========== SECTION BADGES ========== */
.section__badge {
	display: inline-block;
	padding: 8px 16px;
	background-color: rgba(16, 185, 129, 0.1);
	color: var(--emerald);
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 20px;
}

.section--dark .section__badge,
.section__badge--dark {
	background-color: var(--navy-card);
	color: var(--emerald-light);
}

/* ========== SECTION TITLES ========== */
.section__title {
	font-size: 2.5rem;
	margin-bottom: 15px;
	color: inherit;
}

.section__subtitle {
	font-size: 1.1rem;
	color: var(--text-muted);
	margin-bottom: 60px;
	max-width: 600px;
}

.section--dark .section__subtitle {
	color: rgba(226, 232, 240, 0.7);
}

/* ========== BUTTONS ========== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 32px;
	border: 2px solid transparent;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	white-space: nowrap;
}

.btn--primary {
	background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
	color: var(--white);
	border-color: var(--emerald);
}

.btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(16, 185, 129, 0.3);
}

.btn--ghost {
	border-color: var(--emerald);
	color: var(--emerald);
	background-color: transparent;
}

.btn--ghost:hover {
	background-color: rgba(16, 185, 129, 0.1);
}

.btn--ghost-white {
	border-color: rgba(255, 255, 255, 0.5);
	color: var(--white);
	background-color: transparent;
}

.btn--ghost-white:hover {
	border-color: var(--white);
	background-color: rgba(255, 255, 255, 0.1);
}

.btn--white {
	background-color: var(--white);
	color: var(--navy);
	border-color: var(--white);
	font-weight: 600;
}

.btn--white:hover {
	background-color: rgba(255, 255, 255, 0.95);
	transform: translateY(-2px);
}

.btn--glow {
	border-color: var(--emerald);
	color: var(--emerald);
	background-color: transparent;
	box-shadow: 0 0 20px var(--glow);
}

.btn--glow:hover {
	box-shadow: 0 0 40px var(--glow);
}

.btn__icon {
	display: inline-block;
	transition: transform 0.3s ease;
}

.btn:hover .btn__icon {
	transform: translateX(4px);
}

/* ========== HEADER ========== */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	padding: 10px 20px;
	background-color: transparent;
	z-index: 1000;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header.scrolled {
	background-color: rgba(10, 22, 40, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	padding: 10px 20px;
}

.header__logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--white);
	text-decoration: none;
	z-index: 1001;
}

.nav {
	display: flex;
	align-items: center;
	gap: 40px;
}

.nav__menu {
	display: flex;
	align-items: center;
	gap: 40px;
	transition: all 0.3s ease;
}

.nav__link {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.nav__link:hover {
	color: var(--emerald-light);
}

.nav__link--has-dropdown {
	display: flex;
	align-items: center;
	gap: 6px;
}

.nav__dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: var(--navy-card);
	border-radius: 8px;
	min-width: 200px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	margin-top: 10px;
	z-index: 999;
}

.nav__link--has-dropdown:hover .nav__dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nav__dropdown-item {
	display: block;
	padding: 12px 16px;
	color: var(--text-light);
	text-decoration: none;
	transition: color 0.3s ease;
}

.nav__dropdown-item:hover {
	color: var(--emerald-light);
}

.nav__cta {
	background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
	color: var(--white);
}

.nav__toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 1001;
}

.nav__toggle span {
	width: 24px;
	height: 2px;
	background-color: var(--white);
	transition: all 0.3s ease;
}

.nav__toggle.active span:nth-child(1) {
	transform: rotate(45deg) translateY(10px);
}

.nav__toggle.active span:nth-child(2) {
	opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translateY(-10px);
}

/* ========== HERO SECTION ========== */
.re-hero {
	min-height: 100vh;
	padding: 100px 0 0 0;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.re-hero__video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 1;
}

.re-hero__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(10, 22, 40, 0.75) 100%);
	z-index: 1;
}

.re-hero__orb {
	position: absolute;
	border-radius: 50%;
	opacity: 0.5;
	filter: blur(80px);
	z-index: 0;
}

.re-hero__orb--1 {
	width: 400px;
	height: 400px;
	background: var(--glow);
	top: -100px;
	left: -100px;
}

.re-hero__orb--2 {
	width: 300px;
	height: 300px;
	background: rgba(245, 158, 11, 0.2);
	bottom: 50px;
	right: -50px;
}

.re-hero__orb--3 {
	width: 250px;
	height: 250px;
	background: var(--glow);
	top: 50%;
	right: -100px;
}

.re-hero__particles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.re-hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.re-hero__content {
	color: var(--text-light);
}

.re-hero__badge {
	display: inline-block;
	padding: 8px 16px;
	background-color: rgba(16, 185, 129, 0.2);
	color: var(--emerald-light);
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 20px;
	border: 1px solid rgba(16, 185, 129, 0.4);
}

.re-hero__title {
	font-size: 3.5rem;
	line-height: 1.1;
	margin-bottom: 20px;
	color: var(--text-light);
}

.re-hero__subtitle {
	font-size: 1.125rem;
	line-height: 1.7;
	color: rgba(226, 232, 240, 0.85);
	margin-bottom: 40px;
}

.re-hero__actions {
	display: flex;
	gap: 16px;
	margin-bottom: 60px;
	flex-wrap: wrap;
}

.re-hero__stats {
	display: grid;
	gap: 40px;
	margin-top: 60px;
}

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

.re-hero__stat {
	text-align: center;
}

.re-hero__stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--emerald-light);
	display: block;
}

.re-hero__stat-label {
	font-size: 0.95rem;
	color: rgba(226, 232, 240, 0.7);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* ========== AGENCY MOCKUP ========== */
.re-agency-mockup {
	background: var(--navy-card);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(16, 185, 129, 0.2);
}

.re-agency-mockup__bar {
	background-color: var(--navy-surface);
	padding: 12px 16px;
	display: flex;
	align-items: center;
	gap: 12px;
	border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.re-agency-mockup__dots {
	display: flex;
	gap: 8px;
}

.re-agency-mockup__dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
}

.re-agency-mockup__dot--red {
	background-color: #FF5F56;
}

.re-agency-mockup__dot--yellow {
	background-color: #FFBD2E;
}

.re-agency-mockup__dot--green {
	background-color: #27C93F;
}

.re-agency-mockup__url {
	font-size: 0.875rem;
	color: var(--text-muted);
	margin-left: auto;
}

.re-agency-mockup__content {
	padding: 24px;
}

.re-agency-mockup__header {
	margin-bottom: 20px;
}

.re-agency-mockup__nav {
	display: flex;
	gap: 20px;
	margin-bottom: 24px;
	border-bottom: 1px solid rgba(16, 185, 129, 0.1);
	padding-bottom: 12px;
}

.re-agency-mockup__nav-item {
	font-size: 0.875rem;
	color: var(--text-muted);
	font-weight: 500;
	cursor: pointer;
	transition: color 0.3s ease;
}

.re-agency-mockup__nav-item:hover {
	color: var(--emerald-light);
}

.re-agency-mockup__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.re-agency-mockup__card {
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(22, 34, 54, 0.5));
	border-radius: 8px;
	padding: 12px;
	border: 1px solid rgba(16, 185, 129, 0.1);
}

.re-agency-mockup__card-title {
	font-size: 0.875rem;
	color: var(--text-light);
	margin-bottom: 6px;
	font-weight: 600;
}

.re-agency-mockup__card-price {
	font-size: 1rem;
	color: var(--emerald-light);
	font-weight: 700;
}

/* ========== TRUST BAR ========== */
.re-trust-bar {
	background-color: var(--navy-surface);
	padding: 40px 0;
	border-top: 1px solid rgba(16, 185, 129, 0.1);
	border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.re-trust-bar__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 40px;
}

.re-trust-item {
	display: flex;
	align-items: center;
	gap: 12px;
	text-align: center;
	justify-content: center;
	color: var(--text-light);
}

.re-trust-item__icon {
	font-size: 1.5rem;
	color: var(--emerald-light);
}

.re-trust-item__label {
	font-size: 0.95rem;
	font-weight: 500;
	display: block;
	line-height: 1.3;
}

/* ========== PROBLEM SECTION ========== */
.re-problem {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-top: 60px;
}

.re-problem__card {
	padding: 40px;
	border-radius: 12px;
	border: 2px solid transparent;
	transition: all 0.3s ease;
}

.re-problem__card--bad {
	background-color: rgba(239, 68, 68, 0.05);
	border-color: rgba(239, 68, 68, 0.2);
	color: var(--text);
}

.re-problem__card--bad:hover {
	border-color: rgba(239, 68, 68, 0.4);
	transform: translateY(-8px);
}

.re-problem__card--good {
	background-color: rgba(16, 185, 129, 0.05);
	border-color: rgba(16, 185, 129, 0.2);
	color: var(--text);
}

.re-problem__card--good:hover {
	border-color: var(--emerald);
	transform: translateY(-8px);
	box-shadow: 0 12px 40px var(--glow);
}

.re-problem__title {
	font-size: 1.5rem;
	margin-bottom: 20px;
}

.re-problem__list {
	list-style: none;
}

.re-problem__list-item {
	padding: 12px 0;
	padding-left: 28px;
	position: relative;
	font-size: 1rem;
	line-height: 1.6;
}

.re-problem__list-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	background-color: currentColor;
	border-radius: 50%;
	opacity: 0.6;
}

/* ========== SERVICES GRID ========== */
.re-services {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-top: 60px;
}

.re-service-card {
	background-color: var(--navy-card);
	padding: 32px;
	border-radius: 12px;
	border: 1px solid rgba(16, 185, 129, 0.1);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.re-service-card:hover {
	border-color: var(--emerald);
	transform: translateY(-12px);
	box-shadow: 0 20px 60px var(--glow);
}

.re-service-card__icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: var(--white);
	margin-bottom: 20px;
}

.re-service-card__title {
	font-size: 1.25rem;
	margin-bottom: 12px;
	color: var(--text-light);
}

.re-service-card__description {
	color: rgba(226, 232, 240, 0.7);
	margin-bottom: 20px;
	flex-grow: 1;
}

.re-service-card__features {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.re-service-card__features-item {
	padding-left: 24px;
	position: relative;
	font-size: 0.95rem;
	color: rgba(226, 232, 240, 0.8);
}

.re-service-card__features-item::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--emerald-light);
	font-weight: 700;
}

/* ========== ECOSYSTEM SECTION ========== */
.re-ecosystem {
	position: relative;
}

.re-eco__tabs {
	display: flex;
	gap: 12px;
	margin-bottom: 40px;
	flex-wrap: wrap;
	justify-content: center;
}

.re-eco__tab {
	padding: 12px 24px;
	background-color: var(--navy-card);
	border: 2px solid rgba(16, 185, 129, 0.2);
	color: rgba(226, 232, 240, 0.7);
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 8px;
}

.re-eco__tab:hover {
	border-color: var(--emerald);
	color: var(--emerald-light);
}

.re-eco__tab--active {
	background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
	color: var(--white);
	border-color: var(--emerald);
}

.re-eco__panels {
	position: relative;
	min-height: 400px;
}

.re-eco__panel {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all 0.5s ease;
	z-index: 0;
}

.re-eco__panel--active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	z-index: 1;
}

.re-eco__flow {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	align-items: center;
}

.re-eco__flow-arrow {
	text-align: center;
	color: var(--emerald-light);
	font-size: 1.5rem;
	grid-column: auto;
}

.re-eco__flow-step {
	background-color: var(--navy-card);
	padding: 24px;
	border-radius: 12px;
	border: 1px solid rgba(16, 185, 129, 0.2);
	text-align: center;
	transition: all 0.3s ease;
}

.re-eco__flow-step:hover {
	border-color: var(--emerald);
	transform: translateY(-8px);
}

.re-eco__flow-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	color: var(--white);
	margin: 0 auto 16px;
}

.re-eco__flow-content h4 {
	color: var(--text-light);
	margin-bottom: 8px;
}

.re-eco__flow-content p {
	font-size: 0.9rem;
	color: rgba(226, 232, 240, 0.7);
}

.re-eco__numbers {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.re-eco__number-card {
	background-color: var(--navy-card);
	padding: 32px;
	border-radius: 12px;
	border: 1px solid rgba(16, 185, 129, 0.2);
	text-align: center;
	transition: all 0.3s ease;
}

.re-eco__number-card:hover {
	border-color: var(--emerald);
	transform: translateY(-8px);
	box-shadow: 0 20px 40px var(--glow);
}

.re-eco__number-value {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--emerald-light);
	display: block;
	line-height: 1;
}

.re-eco__number-label {
	font-size: 0.95rem;
	color: var(--text-light);
	margin-top: 8px;
	font-weight: 600;
}

.re-eco__number-change {
	font-size: 0.85rem;
	color: rgba(226, 232, 240, 0.6);
	margin-top: 8px;
}

.re-eco__tools {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 40px;
}

.re-eco__tool {
	background-color: var(--navy-card);
	padding: 20px;
	border-radius: 8px;
	border: 1px solid rgba(16, 185, 129, 0.2);
	color: var(--text-light);
	text-align: center;
	font-weight: 600;
	transition: all 0.3s ease;
	cursor: default;
}

.re-eco__tool:hover {
	border-color: var(--emerald);
	background-color: rgba(16, 185, 129, 0.05);
	transform: translateY(-4px);
}

.re-eco__cta {
	text-align: center;
	margin-top: 40px;
}

/* ========== PROCESS SECTION ========== */
.re-process__list {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	margin-top: 60px;
}

.re-process__item {
	position: relative;
	padding: 30px;
	background-color: var(--white);
	border-radius: 12px;
	border: 2px solid rgba(16, 185, 129, 0.1);
	transition: all 0.3s ease;
	text-align: center;
}

.re-process__item:hover {
	border-color: var(--emerald);
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(16, 185, 129, 0.15);
}

.re-process__step {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--white);
	margin: 0 auto 16px;
}

.re-process__content {
	text-align: center;
}

.re-process__title {
	font-size: 1.25rem;
	margin-bottom: 8px;
	color: var(--text);
}

.re-process__description {
	font-size: 0.95rem;
	color: var(--text-muted);
	line-height: 1.5;
}

/* ========== RESULTS SECTION ========== */
.re-results {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	margin-top: 60px;
}

.re-result-card {
	background-color: var(--navy-card);
	padding: 40px;
	border-radius: 12px;
	border: 1px solid rgba(16, 185, 129, 0.2);
	text-align: center;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.re-result-card:hover {
	border-color: var(--emerald);
	transform: translateY(-12px);
	box-shadow: 0 20px 60px var(--glow);
}

.re-result-card__number {
	font-size: 3.5rem;
	font-weight: 700;
	color: var(--emerald-light);
	line-height: 1;
	display: block;
}

.re-result-card__label {
	font-size: 1.1rem;
	color: var(--text-light);
	margin: 12px 0;
	font-weight: 600;
}

.re-result-card__description {
	font-size: 0.9rem;
	color: rgba(226, 232, 240, 0.6);
}

/* ========== FAQ SECTION ========== */
.re-faq {
	max-width: 700px;
	margin: 60px auto 0;
}

.re-faq__item {
	background-color: var(--white);
	border: 2px solid rgba(16, 185, 129, 0.1);
	border-radius: 8px;
	margin-bottom: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.re-faq__item:hover {
	border-color: var(--emerald);
	box-shadow: 0 8px 20px rgba(16, 185, 129, 0.1);
}

.re-faq__question {
	width: 100%;
	padding: 20px;
	background: none;
	border: none;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1rem;
	font-weight: 600;
	color: var(--text);
	transition: color 0.3s ease;
}

.re-faq__question:hover {
	color: var(--emerald);
}

.re-faq__question i {
	transition: transform 0.3s ease;
	color: var(--emerald);
}

.re-faq__item.active .re-faq__question i {
	transform: rotate(180deg);
}

.re-faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease, padding 0.5s ease;
	color: var(--text-muted);
	line-height: 1.6;
}

.re-faq__item.active .re-faq__answer {
	max-height: 500px;
	padding: 0 20px 20px;
	border-top: 1px solid rgba(16, 185, 129, 0.1);
}

.re-faq__answer p {
	margin: 0;
}

/* ========== CTA BANNER ========== */
.re-cta-banner {
	background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.re-cta-banner::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	filter: blur(60px);
}

.re-cta-banner::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 400px;
	height: 400px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	filter: blur(60px);
}

.re-cta-banner__content {
	position: relative;
	z-index: 1;
	text-align: center;
}

.re-cta-banner__title {
	font-size: 2.5rem;
	margin-bottom: 12px;
	color: var(--white);
}

.re-cta-banner__subtitle {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 40px;
}

.re-cta-banner__actions {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

/* ========== CONTACT SECTION ========== */
.re-contact {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	margin-top: 60px;
	align-items: start;
}

.re-contact__info {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.re-contact__info-item {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.re-contact__info-item i {
	font-size: 1.5rem;
	color: var(--emerald-light);
	margin-top: 4px;
}

.re-contact__label {
	display: block;
	font-size: 0.85rem;
	text-transform: uppercase;
	color: rgba(226, 232, 240, 0.6);
	font-weight: 600;
	letter-spacing: 0.5px;
	margin-bottom: 4px;
}

.re-contact__value {
	color: var(--text-light);
	font-size: 1.1rem;
	line-height: 1.6;
	margin: 0;
}

.re-contact__form {
	background-color: var(--navy-card);
	padding: 40px;
	border-radius: 12px;
	border: 1px solid rgba(16, 185, 129, 0.2);
}

.re-contact__group {
	margin-bottom: 24px;
}

.re-contact__label-text {
	display: block;
	margin-bottom: 8px;
	color: var(--text-light);
	font-weight: 600;
	font-size: 0.95rem;
}

.re-contact__input,
.re-contact__textarea {
	width: 100%;
	padding: 12px 16px;
	background-color: rgba(26, 39, 68, 0.5);
	border: 1px solid rgba(16, 185, 129, 0.2);
	border-radius: 6px;
	color: var(--text-light);
	font-family: inherit;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.re-contact__input::placeholder,
.re-contact__textarea::placeholder {
	color: var(--text-muted);
}

.re-contact__input:focus,
.re-contact__textarea:focus {
	outline: none;
	border-color: var(--emerald);
	background-color: rgba(26, 39, 68, 0.8);
	box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.re-contact__textarea {
	resize: vertical;
	min-height: 120px;
}

.re-contact__checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
}

.re-contact__checkbox input {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	cursor: pointer;
	accent-color: var(--emerald);
}

.re-contact__checkbox-label {
	font-size: 0.9rem;
	color: rgba(226, 232, 240, 0.8);
	line-height: 1.5;
}

.re-contact__submit {
	width: 100%;
	padding: 14px 32px;
	background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
	color: var(--white);
	border: none;
	border-radius: 6px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 8px;
}

.re-contact__submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(16, 185, 129, 0.3);
}

.re-contact__submit:active {
	transform: translateY(0);
}

/* ========== DATA ANIMATIONS ========== */
[data-animate] {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

[data-animate].is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ========== ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* ========== RESPONSIVE: 1024px ========== */
@media (max-width: 1024px) {
	.re-hero__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.re-agency-mockup {
		display: none;
	}

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

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

	.re-eco__flow {
		grid-template-columns: 1fr;
	}

	.re-eco__flow-arrow {
		transform: rotate(90deg);
		margin: 10px 0;
	}

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

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

	.re-process__list {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

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

	.re-contact {
		grid-template-columns: 1fr;
	}

	.re-trust-bar__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.re-problem {
		grid-template-columns: 1fr;
	}
}

/* ========== RESPONSIVE: 768px ========== */
@media (max-width: 768px) {
	.header {
		padding: 5px 10px;
	}

	.header.scrolled {
		padding: 5px 10px;
	}

	.nav__toggle {
		display: flex;
	}

	.nav__menu {
		position: fixed;
		top: 71px;
		left: 0;
		right: 0;
		bottom: 0;
		flex-direction: column;
		height: calc(100vh - 71px);
		background-color: var(--navy);
		z-index: 99999999999999;
		gap: 0;
		padding: 20px;
		border-top: 1px solid rgba(16, 185, 129, 0.1);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(-20px);
		transition: all 0.3s ease;
		overflow-y: auto;
	}

	.nav__menu.active,
	.nav__menu.nav__menu--open {
		opacity: 1 !important;
		visibility: visible !important;
		pointer-events: auto !important;
		transform: translateY(0) !important;
	}

	.nav__link {
		display: block;
		padding: 12px 0;
		border-bottom: 1px solid rgba(16, 185, 129, 0.1);
	}

	.nav__dropdown {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		background: none;
		margin: 0;
		padding: 12px 0 12px 16px;
		border: none;
	}

	.nav__dropdown-item {
		padding: 8px 0;
	}

	.re-hero__title {
		font-size: 2.3rem;
	}

	.re-hero__subtitle {
		font-size: 1rem;
	}

	.re-hero__actions {
		flex-direction: column;
	}

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

	.re-hero__stats--3 {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.section {
		padding: 60px 0;
	}

	.section__title {
		font-size: 2rem;
	}

	.section__subtitle {
		margin-bottom: 40px;
	}

	.re-services {
		grid-template-columns: 1fr;
	}

	.re-process__list {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.re-process__item {
		padding: 20px;
	}

	.re-results {
		grid-template-columns: 1fr;
	}

	.re-faq {
		max-width: 100%;
	}

	.re-contact {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.re-cta-banner {
		padding: 60px 0;
	}

	.re-cta-banner__title {
		font-size: 2rem;
	}

	.re-trust-bar__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.re-trust-item {
		text-align: left;
		justify-content: flex-start;
	}

	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 1.75rem;
	}

	h3 {
		font-size: 1.25rem;
	}
}

/* ========== RESPONSIVE: 480px ========== */
@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}

	.section {
		padding: 40px 0;
	}

	.section__title {
		font-size: 1.5rem;
	}

	.section__subtitle {
		font-size: 0.95rem;
		margin-bottom: 30px;
	}

	.re-hero {
		padding-top: 60px;
		min-height: 100vh;
	}

	.re-hero__title {
		font-size: 1.75rem;
	}

	.re-hero__subtitle {
		font-size: 0.95rem;
		margin-bottom: 30px;
	}

	.re-hero__stats {
		margin-top: 40px;
	}

	.re-hero__stat-number {
		font-size: 2rem;
	}

	.re-hero__stat-label {
		font-size: 0.8rem;
	}

	.re-service-card {
		padding: 20px;
	}

	.re-service-card__icon {
		width: 48px;
		height: 48px;
		font-size: 1.25rem;
		margin-bottom: 16px;
	}

	.re-service-card__title {
		font-size: 1.1rem;
	}

	.re-service-card__description {
		font-size: 0.9rem;
	}

	.re-eco__tabs {
		flex-direction: column;
		gap: 10px;
	}

	.re-eco__tab {
		width: 100%;
		padding: 10px 16px;
		font-size: 0.9rem;
	}

	.re-eco__numbers {
		grid-template-columns: 1fr;
	}

	.re-eco__tools {
		grid-template-columns: 1fr;
	}

	.re-result-card {
		padding: 24px;
	}

	.re-result-card__number {
		font-size: 2.5rem;
	}

	.re-result-card__label {
		font-size: 1rem;
	}

	.re-process__item {
		padding: 16px;
	}

	.re-process__step {
		width: 48px;
		height: 48px;
		font-size: 1.25rem;
	}

	.re-process__title {
		font-size: 1.1rem;
	}

	.re-process__description {
		font-size: 0.85rem;
	}

	.re-contact__form {
		padding: 24px;
	}

	.re-contact__group {
		margin-bottom: 16px;
	}

	.re-contact__input,
	.re-contact__textarea {
		padding: 10px 12px;
		font-size: 0.95rem;
	}

	.re-cta-banner {
		padding: 40px 0;
	}

	.re-cta-banner__title {
		font-size: 1.5rem;
	}

	.re-cta-banner__subtitle {
		font-size: 1rem;
		margin-bottom: 24px;
	}

	.btn {
		padding: 10px 24px;
		font-size: 0.9rem;
	}

	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.35rem;
	}

	h3 {
		font-size: 1.1rem;
	}

	.nav {
		gap: 20px;
	}

	.header__logo {
		font-size: 1.25rem;
	}

	.re-faq__question {
		padding: 16px;
		font-size: 0.95rem;
	}

	.re-faq__item.active .re-faq__answer {
		padding: 0 16px 16px;
	}

	.re-trust-item {
		gap: 8px;
	}

	.re-trust-item__icon {
		font-size: 1.25rem;
		flex-shrink: 0;
	}

	.re-trust-item__label {
		font-size: 0.85rem;
	}
}
