:root {
	/* Paleta de culori principală */
	--pe-bg-light: #f5f5f5;
	--pe-turquoise: #00bfa5;
	--pe-amber: #ffc107;
	--pe-charcoal: #263238;
	--pe-white: #ffffff;

	/* Culori auxiliare */
	--pe-gray-100: #f8f9fa;
	--pe-gray-200: #e9ecef;
	--pe-gray-300: #dee2e6;
	--pe-gray-400: #ced4da;
	--pe-gray-500: #adb5bd;
	--pe-gray-600: #6c757d;
	--pe-gray-700: #495057;
	--pe-gray-800: #343a40;
	--pe-gray-900: #212529;

	/* Culori de stare */
	--pe-success: #28a745;
	--pe-info: #17a2b8;
	--pe-warning: #ffc107;
	--pe-danger: #dc3545;

	/* Gradiente */
	--pe-gradient-turquoise: linear-gradient(
		135deg,
		var(--pe-turquoise),
		#26d0ce
	);
	--pe-gradient-amber: linear-gradient(135deg, var(--pe-amber), #ffd54f);
	--pe-gradient-light: linear-gradient(135deg, #ffffff, #f8f9fa);
	--pe-gradient-dark: linear-gradient(135deg, var(--pe-charcoal), #37474f);
	--pe-gradient-diagonal: linear-gradient(
		45deg,
		transparent 25%,
		rgba(0, 191, 165, 0.05) 25%,
		rgba(0, 191, 165, 0.05) 50%,
		transparent 50%,
		transparent 75%,
		rgba(0, 191, 165, 0.05) 75%
	);

	/* Tipografia */
	--pe-font-primary: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
	--pe-font-heading: 'Poppins', 'Inter', sans-serif;
	--pe-font-mono: 'Fira Code', 'Monaco', monospace;

	/* Dimensiuni font */
	--pe-text-xs: 0.75rem;
	--pe-text-sm: 0.875rem;
	--pe-text-base: 1rem;
	--pe-text-lg: 1.125rem;
	--pe-text-xl: 1.25rem;
	--pe-text-2xl: 1.5rem;
	--pe-text-3xl: 1.875rem;
	--pe-text-4xl: 2.25rem;
	--pe-text-5xl: 3rem;
	--pe-text-6xl: 3.75rem;

	/* Spacing */
	--pe-space-1: 0.25rem;
	--pe-space-2: 0.5rem;
	--pe-space-3: 0.75rem;
	--pe-space-4: 1rem;
	--pe-space-5: 1.25rem;
	--pe-space-6: 1.5rem;
	--pe-space-8: 2rem;
	--pe-space-10: 2.5rem;
	--pe-space-12: 3rem;
	--pe-space-16: 4rem;
	--pe-space-20: 5rem;
	--pe-space-24: 6rem;
	--pe-space-32: 8rem;

	/* Border radius */
	--pe-radius-none: 0;
	--pe-radius-sm: 0.125rem;
	--pe-radius-base: 0.25rem;
	--pe-radius-md: 0.375rem;
	--pe-radius-lg: 0.5rem;
	--pe-radius-xl: 0.75rem;
	--pe-radius-2xl: 1rem;
	--pe-radius-3xl: 1.5rem;
	--pe-radius-full: 9999px;

	/* Shadows */
	--pe-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--pe-shadow-base: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
		0 1px 2px 0 rgba(0, 0, 0, 0.06);
	--pe-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
		0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--pe-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
		0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--pe-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
		0 10px 10px -5px rgba(0, 0, 0, 0.04);
	--pe-shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	--pe-shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
	--pe-shadow-turquoise: 0 10px 25px -5px rgba(0, 191, 165, 0.25);
	--pe-shadow-amber: 0 10px 25px -5px rgba(255, 193, 7, 0.25);

	/* Glassmorphism */
	--pe-glass-bg: rgba(255, 255, 255, 0.25);
	--pe-glass-border: rgba(255, 255, 255, 0.18);
	--pe-glass-blur: blur(20px);

	/* Transitions */
	--pe-transition-fast: all 0.15s ease;
	--pe-transition-base: all 0.2s ease;
	--pe-transition-smooth: all 0.3s ease;
	--pe-transition-slow: all 0.5s ease;

	/* Z-index */
	--pe-z-dropdown: 1000;
	--pe-z-sticky: 1020;
	--pe-z-fixed: 1030;
	--pe-z-modal-backdrop: 1040;
	--pe-z-modal: 1050;
	--pe-z-popover: 1060;
	--pe-z-tooltip: 1070;
	--pe-z-toast: 1080;
}

/* ===== RESET GLOBAL ===== */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	margin: 0;
	font-family: var(--pe-font-primary);
	font-size: var(--pe-text-base);
	line-height: 1.6;
	color: var(--pe-charcoal);
	background-color: var(--pe-bg-light);
	overflow-x: hidden;
}

/* ===== TIPOGRAFIA ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--pe-font-heading);
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: var(--pe-space-4);
	color: var(--pe-charcoal);
}

h1 {
	font-size: var(--pe-text-5xl);
	font-weight: 800;
	letter-spacing: -0.025em;
}

h2 {
	font-size: var(--pe-text-4xl);
	font-weight: 700;
	letter-spacing: -0.015em;
}

h3 {
	font-size: var(--pe-text-3xl);
	font-weight: 600;
}

h4 {
	font-size: var(--pe-text-2xl);
	font-weight: 600;
}

h5 {
	font-size: var(--pe-text-xl);
	font-weight: 500;
}

h6 {
	font-size: var(--pe-text-lg);
	font-weight: 500;
}

p {
	margin-bottom: var(--pe-space-4);
	color: var(--pe-charcoal);
}

a {
	color: var(--pe-turquoise);
	text-decoration: none;
	transition: var(--pe-transition-fast);
}

a:hover {
	color: #00a693;
	text-decoration: underline;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

ul,
ol {
	margin-bottom: var(--pe-space-4);
	padding-left: var(--pe-space-6);
}

li {
	margin-bottom: var(--pe-space-2);
}

/* ===== CONTAINER SISTEM ===== */
.pe-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--pe-space-4);
}

.pe-container-wide {
	max-width: 1400px;
}

.pe-container-narrow {
	max-width: 800px;
}

/* ===== GRID SISTEM ===== */
.pe-grid {
	display: grid;
	gap: var(--pe-space-6);
}

.pe-grid-cols-1 {
	grid-template-columns: 1fr;
}

.pe-grid-cols-2 {
	grid-template-columns: repeat(2, 1fr);
}

.pe-grid-cols-3 {
	grid-template-columns: repeat(3, 1fr);
}

.pe-grid-cols-4 {
	grid-template-columns: repeat(4, 1fr);
}

.pe-grid-gap-sm {
	gap: var(--pe-space-4);
}

.pe-grid-gap-lg {
	gap: var(--pe-space-8);
}

/* ===== FLEXBOX UTILITIES ===== */
.pe-flex {
	display: flex;
}

.pe-flex-col {
	flex-direction: column;
}

.pe-flex-wrap {
	flex-wrap: wrap;
}

.pe-items-center {
	align-items: center;
}

.pe-items-start {
	align-items: flex-start;
}

.pe-items-end {
	align-items: flex-end;
}

.pe-justify-center {
	justify-content: center;
}

.pe-justify-between {
	justify-content: space-between;
}

.pe-justify-around {
	justify-content: space-around;
}

.pe-justify-start {
	justify-content: flex-start;
}

.pe-justify-end {
	justify-content: flex-end;
}

/* ===== SPACING UTILITIES ===== */
.pe-m-0 {
	margin: 0;
}
.pe-m-1 {
	margin: var(--pe-space-1);
}
.pe-m-2 {
	margin: var(--pe-space-2);
}
.pe-m-3 {
	margin: var(--pe-space-3);
}
.pe-m-4 {
	margin: var(--pe-space-4);
}
.pe-m-6 {
	margin: var(--pe-space-6);
}
.pe-m-8 {
	margin: var(--pe-space-8);
}

.pe-mt-0 {
	margin-top: 0;
}
.pe-mt-4 {
	margin-top: var(--pe-space-4);
}
.pe-mt-8 {
	margin-top: var(--pe-space-8);
}
.pe-mt-12 {
	margin-top: var(--pe-space-12);
}
.pe-mt-16 {
	margin-top: var(--pe-space-16);
}
.pe-mt-20 {
	margin-top: var(--pe-space-20);
}

.pe-mb-4 {
	margin-bottom: var(--pe-space-4);
}
.pe-mb-8 {
	margin-bottom: var(--pe-space-8);
}
.pe-mb-12 {
	margin-bottom: var(--pe-space-12);
}
.pe-mb-16 {
	margin-bottom: var(--pe-space-16);
}

.pe-p-0 {
	padding: 0;
}
.pe-p-4 {
	padding: var(--pe-space-4);
}
.pe-p-6 {
	padding: var(--pe-space-6);
}
.pe-p-8 {
	padding: var(--pe-space-8);
}

.pe-px-4 {
	padding-left: var(--pe-space-4);
	padding-right: var(--pe-space-4);
}
.pe-py-4 {
	padding-top: var(--pe-space-4);
	padding-bottom: var(--pe-space-4);
}
.pe-py-8 {
	padding-top: var(--pe-space-8);
	padding-bottom: var(--pe-space-8);
}
.pe-py-12 {
	padding-top: var(--pe-space-12);
	padding-bottom: var(--pe-space-12);
}
.pe-py-16 {
	padding-top: var(--pe-space-16);
	padding-bottom: var(--pe-space-16);
}
.pe-py-20 {
	padding-top: var(--pe-space-20);
	padding-bottom: var(--pe-space-20);
}

/* ===== TEXT UTILITIES ===== */
.pe-text-left {
	text-align: left;
}
.pe-text-center {
	text-align: center;
}
.pe-text-right {
	text-align: right;
}

.pe-text-xs {
	font-size: var(--pe-text-xs);
}
.pe-text-sm {
	font-size: var(--pe-text-sm);
}
.pe-text-base {
	font-size: var(--pe-text-base);
}
.pe-text-lg {
	font-size: var(--pe-text-lg);
}
.pe-text-xl {
	font-size: var(--pe-text-xl);
}

.pe-font-bold {
	font-weight: 700;
}
.pe-font-semibold {
	font-weight: 600;
}
.pe-font-medium {
	font-weight: 500;
}

.pe-text-turquoise {
	color: var(--pe-turquoise);
}
.pe-text-amber {
	color: var(--pe-amber);
}
.pe-text-charcoal {
	color: var(--pe-charcoal);
}
.pe-text-gray-600 {
	color: var(--pe-gray-600);
}
.pe-text-white {
	color: var(--pe-white);
}

/* ===== BACKGROUND UTILITIES ===== */
.pe-bg-white {
	background-color: var(--pe-white);
}
.pe-bg-turquoise {
	background-color: var(--pe-turquoise);
}
.pe-bg-amber {
	background-color: var(--pe-amber);
}
.pe-bg-light {
	background-color: var(--pe-bg-light);
}

/* ===== GLASSMORPHISM COMPONENTS ===== */
.pe-glass {
	background: var(--pe-glass-bg);
	backdrop-filter: var(--pe-glass-blur);
	-webkit-backdrop-filter: var(--pe-glass-blur);
	border: 1px solid var(--pe-glass-border);
	border-radius: var(--pe-radius-xl);
	box-shadow: var(--pe-shadow-lg);
}

.pe-glass-card {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--pe-radius-2xl);
	padding: var(--pe-space-8);
	transition: var(--pe-transition-smooth);
}

.pe-glass-card:hover {
	background: rgba(255, 255, 255, 0.25);
	transform: translateY(-5px);
	box-shadow: var(--pe-shadow-xl);
}

/* ===== BUTOANE ===== */
.pe-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	justify-content: center;
	padding: var(--pe-space-3) var(--pe-space-6);
	border: none;
	border-radius: var(--pe-radius-lg);
	font-family: var(--pe-font-heading);
	font-size: var(--pe-text-base);
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: var(--pe-transition-base);
	text-transform: none;
	letter-spacing: 0.025em;
}

.pe-btn:focus {
	outline: 2px solid var(--pe-turquoise);
	outline-offset: 2px;
}

.pe-btn-primary {
	background: var(--pe-gradient-turquoise);
	color: var(--pe-white);
	box-shadow: var(--pe-shadow-turquoise);
}

.pe-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 30px -5px rgba(0, 191, 165, 0.35);
	color: var(--pe-white);
	text-decoration: none;
}

.pe-btn-primary:active {
	transform: translateY(0);
}

.pe-btn-secondary {
	background: var(--pe-gradient-amber);
	color: var(--pe-charcoal);
	box-shadow: var(--pe-shadow-amber);
}

.pe-btn-secondary:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 30px -5px rgba(255, 193, 7, 0.35);
	color: var(--pe-charcoal);
	text-decoration: none;
}

.pe-btn-outline {
	background: transparent;
	color: var(--pe-amber);
	border: 2px solid var(--pe-amber);
	box-shadow: none;
}

.pe-btn-outline:hover {
	background: var(--pe-amber);
	color: var(--pe-charcoal);
	transform: translateY(-2px);
	box-shadow: var(--pe-shadow-amber);
	text-decoration: none;
}

.pe-btn-lg {
	padding: var(--pe-space-4) var(--pe-space-8);
	font-size: var(--pe-text-lg);
}

.pe-btn-sm {
	padding: var(--pe-space-2) var(--pe-space-4);
	font-size: var(--pe-text-sm);
}

.pe-btn-icon {
	width: 48px;
	height: 48px;
	padding: 0;
	border-radius: var(--pe-radius-full);
}

/* ===== HEADER ===== */
.pe-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: var(--pe-z-fixed);
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding: 1rem 0;
	transition: var(--pe-transition-smooth);
}

.pe-header.pe-scrolled {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: var(--pe-shadow-sm);
	padding: var(--pe-space-3) 0;
}

.pe-header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.pe-logo {
	font-family: var(--pe-font-heading);
	font-size: var(--pe-text-2xl);
	font-weight: 800;
	color: var(--pe-charcoal);
	text-decoration: none;
	transition: var(--pe-transition-fast);
}

.pe-logo:hover {
	color: var(--pe-turquoise);
	text-decoration: none;
	transform: scale(1.05);
}

.pe-nav {
	display: flex;
	align-items: center;
	gap: var(--pe-space-8);
}

.pe-nav-list {
	display: flex;
	list-style: none;
	align-items: center;
	margin: 0;
	padding: 0;
	gap: var(--pe-space-6);
}

.pe-nav-list li {
	margin-bottom: 0;
}

.pe-nav-link {
	color: var(--pe-charcoal);
	font-weight: 500;
	text-decoration: none;
	padding: var(--pe-space-2) var(--pe-space-3);
	border-radius: var(--pe-radius-md);
	transition: var(--pe-transition-fast);
	position: relative;
}

.pe-nav-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--pe-turquoise);
	transition: var(--pe-transition-fast);
	transform: translateX(-50%);
}

.pe-nav-link:hover {
	color: var(--pe-turquoise);
	text-decoration: none;
	background: rgba(0, 191, 165, 0.1);
}

.pe-nav-link:hover::after {
	width: 80%;
}

.pe-nav-link.pe-active {
	color: var(--pe-turquoise);
}

.pe-nav-link.pe-active::after {
	width: 80%;
}

/* ===== MOBILE MENU ===== */
.pe-mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
	background: none;
	border: none;
	cursor: pointer;
	padding: var(--pe-space-2);
}

.pe-mobile-toggle span {
	width: 25px;
	height: 3px;
	background: var(--pe-charcoal);
	border-radius: var(--pe-radius-full);
	transition: var(--pe-transition-fast);
}

.pe-mobile-toggle.pe-active span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.pe-mobile-toggle.pe-active span:nth-child(2) {
	opacity: 0;
}

.pe-mobile-toggle.pe-active span:nth-child(3) {
	transform: rotate(-45deg) translate(4px, -4px);
}

.pe-mobile-nav {
	position: fixed;
	top: 71px;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(20px);
	z-index: var(--pe-z-modal);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: var(--pe-transition-smooth);
}

.pe-mobile-nav.pe-active {
	opacity: 1;
	visibility: visible;
}

.pe-mobile-nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

.pe-mobile-nav-item {
	margin-bottom: var(--pe-space-8);
}

.pe-mobile-nav-link {
	font-size: var(--pe-text-2xl);
	font-weight: 600;
	color: var(--pe-charcoal);
	text-decoration: none;
	transition: var(--pe-transition-fast);
}

.pe-mobile-nav-link:hover {
	color: var(--pe-turquoise);
	text-decoration: none;
}

/* ===== HERO SECTION ===== */
.pe-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: var(--pe-bg-light);
	background-image: var(--pe-gradient-diagonal),
		linear-gradient(
			135deg,
			rgba(0, 191, 165, 0.1) 0%,
			rgba(255, 193, 7, 0.1) 100%
		);
	background-size: 40px 40px, 100% 100%;
	overflow: hidden;
}

.pe-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('assets/pe-hero.jpg');
	opacity: 0.3;
	z-index: 1;
}

.pe-hero-container {
	position: relative;
	z-index: 2;
	width: 100%;
}

.pe-hero-content {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.pe-hero-title {
	font-size: clamp(2.5rem, 8vw, 4rem);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: var(--pe-space-6);
	background: linear-gradient(135deg, var(--pe-charcoal), var(--pe-turquoise));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.pe-hero-subtitle {
	font-size: var(--pe-text-xl);
	color: var(--pe-gray-600);
	margin-bottom: var(--pe-space-8);
	line-height: 1.6;
}

.pe-hero-buttons {
	display: flex;
	gap: var(--pe-space-4);
	justify-content: center;
	flex-wrap: wrap;
}

.pe-hero-decoration {
	position: absolute;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: var(--pe-gradient-turquoise);
	opacity: 0.1;
	filter: blur(80px);
	z-index: 0;
}

.pe-hero-decoration:nth-child(1) {
	top: 10%;
	right: 10%;
}

.pe-hero-decoration:nth-child(2) {
	bottom: 10%;
	left: 10%;
	background: var(--pe-gradient-amber);
}

/* ===== SECTION GENERIC ===== */
.pe-section {
	padding: var(--pe-space-20) 0;
	position: relative;
}

.pe-section-title {
	font-size: var(--pe-text-4xl);
	font-weight: 700;
	text-align: center;
	margin-bottom: var(--pe-space-12);
	color: var(--pe-charcoal);
}

.pe-section-subtitle {
	font-size: var(--pe-text-lg);
	color: var(--pe-gray-600);
	text-align: center;
	margin-bottom: var(--pe-space-16);
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* ===== ABOUT SECTION ===== */
.pe-about {
	background: var(--pe-white);
}

.pe-about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--pe-space-12);
	align-items: center;
}

.pe-about-text {
	font-size: var(--pe-text-lg);
	line-height: 1.7;
	color: var(--pe-charcoal);
}

.pe-about-features {
	list-style: none;
	padding: 0;
	margin: var(--pe-space-6) 0;
}

.pe-about-features li {
	display: flex;
	align-items: center;
	margin-bottom: var(--pe-space-3);
	font-weight: 500;
}

.pe-about-features li::before {
	content: '✓';
	color: var(--pe-turquoise);
	font-weight: bold;
	margin-right: var(--pe-space-3);
	font-size: var(--pe-text-lg);
}

.pe-speakers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: var(--pe-space-6);
	margin-top: var(--pe-space-8);
}

.pe-speaker-card {
	text-align: center;
	padding: var(--pe-space-6);
	background: var(--pe-glass-bg);
	backdrop-filter: var(--pe-glass-blur);
	border: 1px solid var(--pe-glass-border);
	border-radius: var(--pe-radius-xl);
	transition: var(--pe-transition-smooth);
}

.pe-speaker-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--pe-shadow-xl);
}

.pe-speaker-avatar {
	width: 80px;
	height: 80px;
	margin: 0 auto var(--pe-space-4);
	background: var(--pe-gradient-turquoise);
	display: flex;
	align-items: center;
	border-radius: 50%;

	justify-content: center;
	color: var(--pe-white);
	font-size: var(--pe-text-2xl);
	font-weight: 700;
}

.pe-speaker-avatar img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	border-radius: 50%;
}

.pe-speaker-name {
	font-size: var(--pe-text-lg);
	font-weight: 600;
	margin-bottom: var(--pe-space-2);
	color: var(--pe-charcoal);
}

.pe-speaker-role {
	color: var(--pe-gray-600);
	font-size: var(--pe-text-sm);
}

/* ===== BENEFITS SECTION ===== */
.pe-benefits {
	background: var(--pe-bg-light);
}

.pe-benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--pe-space-8);
}

.pe-benefit-card {
	background: var(--pe-glass-bg);
	backdrop-filter: var(--pe-glass-blur);
	border: 1px solid var(--pe-glass-border);
	border-radius: var(--pe-radius-2xl);
	padding: var(--pe-space-8);
	text-align: center;
	transition: var(--pe-transition-smooth);
	position: relative;
	overflow: hidden;
}

.pe-benefit-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--pe-gradient-turquoise);
	transform: scaleX(0);
	transition: var(--pe-transition-smooth);
}

.pe-benefit-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--pe-shadow-xl);
}

.pe-benefit-card:hover::before {
	transform: scaleX(1);
}

.pe-benefit-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto var(--pe-space-6);
	background: var(--pe-gradient-turquoise);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--pe-white);
	font-size: var(--pe-text-2xl);
	box-shadow: var(--pe-shadow-turquoise);
}

.pe-benefit-title {
	font-size: var(--pe-text-xl);
	font-weight: 600;
	margin-bottom: var(--pe-space-4);
	color: var(--pe-charcoal);
}

.pe-benefit-description {
	color: var(--pe-gray-600);
	line-height: 1.6;
}

/* ===== EXPERTS SECTION ===== */
.pe-experts {
	background: var(--pe-white);
}

.pe-experts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--pe-space-8);
}

.pe-expert-card {
	background: var(--pe-white);
	border-radius: var(--pe-radius-2xl);
	padding: var(--pe-space-8);
	text-align: center;
	box-shadow: var(--pe-shadow-md);
	transition: var(--pe-transition-smooth);
	border: 1px solid var(--pe-gray-200);
}

.pe-expert-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--pe-shadow-xl);
	border-color: var(--pe-turquoise);
}

.pe-expert-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin: 0 auto var(--pe-space-6);
	background: var(--pe-gradient-turquoise);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--pe-white);
	font-size: var(--pe-text-3xl);
	font-weight: 700;
	box-shadow: var(--pe-shadow-lg);
}

.pe-expert-avatar img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.pe-expert-name {
	font-size: var(--pe-text-xl);
	font-weight: 700;
	margin-bottom: var(--pe-space-2);
	color: var(--pe-charcoal);
}

.pe-expert-role {
	color: var(--pe-turquoise);
	font-weight: 500;
	margin-bottom: var(--pe-space-4);
}

.pe-expert-bio {
	color: var(--pe-gray-600);
	line-height: 1.6;
	font-size: var(--pe-text-sm);
}

/* ===== TESTIMONIALS SECTION ===== */
.pe-testimonials {
	background: var(--pe-bg-light);
}

.pe-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: var(--pe-space-8);
}

.pe-testimonial-card {
	background: var(--pe-white);
	border-radius: var(--pe-radius-2xl);
	padding: var(--pe-space-8);
	box-shadow: var(--pe-shadow-md);
	transition: var(--pe-transition-smooth);
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.pe-testimonial-card::before {
	content: '"';
	position: absolute;
	top: var(--pe-space-4);
	left: var(--pe-space-6);
	font-size: 4rem;
	color: var(--pe-turquoise);
	font-family: serif;
	line-height: 1;
	opacity: 0.3;
}

.pe-testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--pe-shadow-xl);
}

.pe-testimonial-content {
	margin-bottom: var(--pe-space-6);
	font-style: italic;
	line-height: 1.6;
	color: var(--pe-charcoal);
	position: relative;
	z-index: 1;
}

.pe-testimonial-author {
	display: flex;
	align-items: center;
	gap: var(--pe-space-4);
	flex-direction: column;
	flex-grow: 1;
	text-align: center;
}

.pe-author-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--pe-gradient-amber);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--pe-charcoal);
	font-weight: 700;
	margin-top: auto;
}

.pe-author-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.pe-author-info h4 {
	margin: 0;
	font-size: var(--pe-text-base);
	font-weight: 600;
	color: var(--pe-charcoal);
}

.pe-author-location {
	color: var(--pe-gray-600);
	font-size: var(--pe-text-sm);
	margin: 0;
}

/* ===== CONTACT SECTION ===== */
.pe-contact {
	background: var(--pe-white);
}

.pe-contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--pe-space-12);
	align-items: start;
}

.pe-contact-form {
	background: var(--pe-glass-bg);
	backdrop-filter: var(--pe-glass-blur);
	border: 1px solid var(--pe-glass-border);
	border-radius: var(--pe-radius-2xl);
	padding: var(--pe-space-8);
}

.pe-form-group {
	margin-bottom: var(--pe-space-6);
}

.pe-form-label {
	display: block;
	margin-bottom: var(--pe-space-2);
	font-weight: 600;
	color: var(--pe-charcoal);
}

.pe-form-input,
.pe-form-textarea {
	width: 100%;
	padding: var(--pe-space-4);
	border: 2px solid var(--pe-gray-300);
	border-radius: var(--pe-radius-lg);
	font-size: var(--pe-text-base);
	transition: var(--pe-transition-fast);
	background: var(--pe-white);
}

.pe-form-input:focus,
.pe-form-textarea:focus {
	outline: none;
	border-color: var(--pe-turquoise);
	box-shadow: 0 0 0 3px rgba(0, 191, 165, 0.1);
}

.pe-form-textarea {
	min-height: 120px;
	resize: vertical;
}

.pe-form-error {
	color: var(--pe-danger);
	font-size: var(--pe-text-sm);
	margin-top: var(--pe-space-1);
}

/* Map Section */
.pe-map {
	height: 100%;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.pe-map {
		height: 400px;
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.pe-contact-map {
	position: relative;
	height: 100%;

	/* flex: 1; */

	/* margin-top: 2rem; */
	/* border-radius: 10px; */
	/* overflow: hidden; */
}

.pe-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 1rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

.pe-error-message {
	display: block;
	color: #ff4444;
	font-size: 0.85rem;
	margin-top: 0.5rem;
}

/* ===== FOOTER ===== */
.pe-footer {
	background: var(--pe-charcoal);
	color: var(--pe-white);
	padding: var(--pe-space-20) 0 var(--pe-space-8);
}

.pe-footer-content {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--pe-space-12);
	margin-bottom: var(--pe-space-12);
}

.pe-footer-section h3 {
	color: var(--pe-white);
	margin-bottom: var(--pe-space-6);
	font-size: var(--pe-text-lg);
}

.pe-footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pe-footer-links li {
	margin-bottom: var(--pe-space-3);
}

.pe-footer-links a {
	color: var(--pe-gray-400);
	text-decoration: none;
	transition: var(--pe-transition-fast);
}

.pe-footer-links a:hover {
	color: var(--pe-turquoise);
	text-decoration: none;
}

.pe-footer-contact-item {
	display: flex;
	align-items: center;
	margin-bottom: var(--pe-space-3);
	color: var(--pe-gray-400);
}

.pe-footer-contact-item i {
	margin-right: var(--pe-space-3);
	color: var(--pe-turquoise);
	width: 20px;
}

.pe-footer-bottom {
	padding-top: var(--pe-space-8);
	border-top: 1px solid var(--pe-gray-700);
	text-align: center;
}

.pe-footer-bottom p {
	color: var(--pe-gray-400);
}

/* ===== COOKIE POPUP ===== */
.pe-cookie-popup {
	position: fixed;
	bottom: var(--pe-space-6);
	left: var(--pe-space-6);
	right: var(--pe-space-6);
	background: var(--pe-white);
	border-radius: var(--pe-radius-xl);
	box-shadow: var(--pe-shadow-xl);
	padding: var(--pe-space-6);
	z-index: var(--pe-z-toast);
	transform: translateY(100px);
	opacity: 0;
	display: none;
	transition: var(--pe-transition-smooth);
	border: 1px solid var(--pe-gray-200);
}

.pe-cookie-popup.pe-show {
	transform: translateY(0);
	opacity: 1;
	display: block;
}

.pe-cookie-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--pe-space-6);
}

.pe-cookie-text {
	flex: 1;
}

.pe-cookie-text h3 {
	margin: 0 0 var(--pe-space-2);
	font-size: var(--pe-text-lg);
	color: var(--pe-charcoal);
}

.pe-cookie-text p {
	margin: 0;
	color: var(--pe-gray-600);
	font-size: var(--pe-text-sm);
}

.pe-cookie-buttons {
	display: flex;
	gap: var(--pe-space-3);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
	.pe-container {
		padding: 0 var(--pe-space-6);
	}

	.pe-grid-cols-3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.pe-about-content,
	.pe-contact-content {
		grid-template-columns: 1fr;
		gap: var(--pe-space-8);
	}

	.pe-footer-content {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 820px) {
	.pe-nav {
		display: none;
	}

	.pe-mobile-toggle {
		display: flex;
	}
}

@media (max-width: 768px) {
	.pe-grid-cols-2,
	.pe-grid-cols-3,
	.pe-grid-cols-4 {
		grid-template-columns: 1fr;
	}

	.pe-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.pe-section {
		padding: var(--pe-space-16) 0;
	}

	.pe-section-title {
		font-size: var(--pe-text-3xl);
	}

	.pe-footer-content {
		grid-template-columns: 1fr;
		gap: var(--pe-space-8);
	}

	.pe-cookie-content {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}

	.pe-cookie-buttons {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.pe-container {
		padding: 0 var(--pe-space-4);
	}

	.pe-hero-title {
		font-size: var(--pe-text-3xl);
	}

	.pe-hero-subtitle {
		font-size: var(--pe-text-lg);
	}

	.pe-section-title {
		font-size: var(--pe-text-2xl);
	}

	.pe-glass-card,
	.pe-benefit-card,
	.pe-expert-card {
		padding: var(--pe-space-6);
	}

	.pe-cookie-popup {
		left: var(--pe-space-4);
		right: var(--pe-space-4);
		bottom: var(--pe-space-4);
	}
}

/* ===== UTILITY CLASSES ===== */
.pe-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.pe-transition {
	transition: var(--pe-transition-base);
}

.pe-shadow {
	box-shadow: var(--pe-shadow-md);
}

.pe-rounded {
	border-radius: var(--pe-radius-lg);
}

.pe-rounded-full {
	border-radius: var(--pe-radius-full);
}

/* ===== ANIMATIONS ===== */
@keyframes pe-fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pe-fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes pe-fadeInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes pe-scaleIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.pe-animate-fadeInUp {
	animation: pe-fadeInUp 0.6s ease-out;
}

.pe-animate-fadeInLeft {
	animation: pe-fadeInLeft 0.6s ease-out;
}

.pe-animate-fadeInRight {
	animation: pe-fadeInRight 0.6s ease-out;
}

.pe-animate-scaleIn {
	animation: pe-scaleIn 0.4s ease-out;
}

/* ===== HOVER EFFECTS ===== */
.pe-hover-glow:hover {
	box-shadow: 0 0 20px rgba(0, 191, 165, 0.3);
}

.pe-hover-scale:hover {
	transform: scale(1.05);
}

.pe-hover-lift:hover {
	transform: translateY(-5px);
}

/* ===== LOADING STATES ===== */
.pe-loading {
	opacity: 0.6;
	pointer-events: none;
}

.pe-spinner {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 2px solid var(--pe-gray-300);
	border-radius: 50%;
	border-top-color: var(--pe-turquoise);
	animation: pe-spin 1s ease-in-out infinite;
}

@keyframes pe-spin {
	to {
		transform: rotate(360deg);
	}
}

/* ===== FOCUS STATES ===== */
.pe-focus-ring:focus {
	outline: 2px solid var(--pe-turquoise);
	outline-offset: 2px;
}

/* ===== DARK MODE SUPPORT ===== */
/* @media (prefers-color-scheme: dark) {
	:root {
		--pe-bg-light: #1a1a1a;
		--pe-charcoal: #e0e0e0;
		--pe-white: #2d2d2d;
		--pe-gray-600: #a0a0a0;
	}
} */

/* ===== PRINT STYLES ===== */
@media print {
	.pe-header,
	.pe-footer,
	.pe-cookie-popup,
	.pe-mobile-toggle {
		display: none;
	}

	.pe-section {
		padding: var(--pe-space-8) 0;
	}

	* {
		box-shadow: none !important;
	}
}

.pe-countdown {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--pe-space-4);
	margin: var(--pe-space-8) 0;
	text-align: center;
}

.pe-countdown-item {
	background: var(--pe-glass-bg);
	backdrop-filter: var(--pe-glass-blur);
	border: 1px solid var(--pe-glass-border);
	border-radius: var(--pe-radius-xl);
	padding: var(--pe-space-6);
}

.pe-countdown-number {
	display: block;
	font-size: var(--pe-text-4xl);
	font-weight: 800;
	color: var(--pe-turquoise);
	margin-bottom: var(--pe-space-2);
}

.pe-countdown-label {
	font-size: var(--pe-text-sm);
	color: var(--pe-gray-600);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.pe-program-list {
	list-style: none;
	padding: 0;
	margin: var(--pe-space-8) 0;
}

.pe-program-item {
	background: var(--pe-white);
	border-radius: var(--pe-radius-xl);
	padding: var(--pe-space-6);
	margin-bottom: var(--pe-space-4);
	box-shadow: var(--pe-shadow-md);
	border-left: 4px solid var(--pe-turquoise);
	transition: var(--pe-transition-smooth);
}

.pe-program-item:hover {
	transform: translateX(10px);
	box-shadow: var(--pe-shadow-lg);
}

.pe-program-time {
	font-weight: 700;
	color: var(--pe-turquoise);
	font-size: var(--pe-text-lg);
	margin-bottom: var(--pe-space-2);
}

.pe-program-title {
	font-size: var(--pe-text-xl);
	font-weight: 600;
	margin-bottom: var(--pe-space-3);
	color: var(--pe-charcoal);
}

.pe-program-description {
	color: var(--pe-gray-600);
	line-height: 1.6;
}

.pe-speaker-bio-card {
	background: var(--pe-white);
	border-radius: var(--pe-radius-2xl);
	padding: var(--pe-space-8);
	box-shadow: var(--pe-shadow-md);
	margin-bottom: var(--pe-space-6);
	transition: var(--pe-transition-smooth);
}

.pe-speaker-bio-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--pe-shadow-xl);
}

.pe-speaker-bio-header {
	display: flex;
	align-items: center;
	gap: var(--pe-space-6);
	margin-bottom: var(--pe-space-6);
}

.pe-speaker-bio-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: var(--pe-gradient-turquoise);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--pe-white);
	font-size: var(--pe-text-2xl);
	font-weight: 700;
	flex-shrink: 0;
}

.pe-speaker-bio-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.pe-speaker-bio-info h3 {
	margin: 0 0 var(--pe-space-2);
	font-size: var(--pe-text-xl);
	color: var(--pe-charcoal);
}

.pe-speaker-bio-role {
	color: var(--pe-turquoise);
	font-weight: 500;
	margin: 0;
}

.pe-speaker-bio-text {
	line-height: 1.7;
	color: var(--pe-charcoal);
}

@media (max-width: 768px) {
	.pe-countdown {
		grid-template-columns: repeat(2, 1fr);
	}

	.pe-speaker-bio-header {
		flex-direction: column;
		text-align: center;
	}
}

.pe-benefit-detail-card {
	background: var(--pe-white);
	border-radius: var(--pe-radius-2xl);
	padding: var(--pe-space-8);
	margin-bottom: var(--pe-space-8);
	box-shadow: var(--pe-shadow-md);
	transition: var(--pe-transition-smooth);
	border-left: 6px solid var(--pe-turquoise);
}

.pe-benefit-detail-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--pe-shadow-xl);
}

.pe-benefit-detail-header {
	display: flex;
	align-items: center;
	gap: var(--pe-space-4);
	margin-bottom: var(--pe-space-6);
}

.pe-benefit-detail-icon {
	width: 60px;
	height: 60px;
	background: var(--pe-gradient-turquoise);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--pe-white);
	font-size: var(--pe-text-xl);
	flex-shrink: 0;
}

.pe-benefit-detail-title {
	font-size: var(--pe-text-2xl);
	font-weight: 700;
	color: var(--pe-charcoal);
	margin: 0;
}

.pe-benefit-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: var(--pe-space-4);
	margin: var(--pe-space-6) 0;
	padding: var(--pe-space-6);
	background: var(--pe-bg-light);
	border-radius: var(--pe-radius-lg);
}

.pe-stat-item {
	text-align: center;
}

.pe-stat-number {
	font-size: var(--pe-text-2xl);
	font-weight: 800;
	color: var(--pe-turquoise);
	display: block;
}

.pe-stat-label {
	font-size: var(--pe-text-sm);
	color: var(--pe-gray-600);
	margin-top: var(--pe-space-1);
}

.pe-infographic {
	background: var(--pe-gradient-light);
	border-radius: var(--pe-radius-xl);
	padding: var(--pe-space-6);
	margin: var(--pe-space-6) 0;
	text-align: center;
}

.pe-company-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: var(--pe-space-4);
	margin: var(--pe-space-6) 0;
}

.pe-company-card {
	background: var(--pe-white);
	border-radius: var(--pe-radius-lg);
	padding: var(--pe-space-4);
	text-align: center;
	box-shadow: var(--pe-shadow-sm);
	transition: var(--pe-transition-fast);
}

.pe-company-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--pe-shadow-md);
}

.pe-risk-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--pe-space-6);
	margin: var(--pe-space-6) 0;
}

.pe-risk-item {
	background: var(--pe-glass-bg);
	backdrop-filter: var(--pe-glass-blur);
	border: 1px solid var(--pe-glass-border);
	border-radius: var(--pe-radius-lg);
	padding: var(--pe-space-4);
}

.pe-risk-high {
	border-left: 4px solid var(--pe-danger);
}

.pe-risk-low {
	border-left: 4px solid var(--pe-success);
}

.pe-chart-placeholder {
	background: var(--pe-gradient-turquoise);
	height: 200px;
	border-radius: var(--pe-radius-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--pe-white);
	font-size: var(--pe-text-lg);
	font-weight: 600;
	margin: var(--pe-space-4) 0;
}

@media (max-width: 768px) {
	.pe-risk-grid {
		grid-template-columns: 1fr;
	}

	.pe-benefit-detail-header {
		flex-direction: column;
		text-align: center;
	}
}

.pe-myth-card {
	background: var(--pe-white);
	border-radius: var(--pe-radius-2xl);
	margin-bottom: var(--pe-space-8);
	box-shadow: var(--pe-shadow-md);
	overflow: hidden;
	transition: var(--pe-transition-smooth);
}

.pe-myth-card:hover {
	box-shadow: var(--pe-shadow-xl);
}

.pe-myth-header {
	background: var(--pe-gradient-light);
	padding: var(--pe-space-6);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-left: 6px solid var(--pe-danger);
}

.pe-myth-header.pe-truth {
	border-left-color: var(--pe-success);
}

.pe-myth-title {
	display: flex;
	align-items: center;
	gap: var(--pe-space-4);
	margin: 0;
	font-size: var(--pe-text-xl);
	font-weight: 700;
}

.pe-myth-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	color: var(--pe-white);
	font-size: var(--pe-text-lg);
}

.pe-myth-icon.pe-danger {
	background: var(--pe-danger);
}

.pe-myth-icon.pe-success {
	background: var(--pe-success);
}

.pe-myth-toggle {
	color: var(--pe-turquoise);
	font-size: var(--pe-text-2xl);
	transition: var(--pe-transition-fast);
}

.pe-myth-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease, padding 0.5s ease;
}

.pe-myth-card.pe-active .pe-myth-content {
	max-height: 6000px !important;
	padding: var(--pe-space-6);
}

.pe-myth-card.pe-active .pe-myth-toggle {
	transform: rotate(180deg);
}

.pe-comparison-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--pe-space-6);
	margin: var(--pe-space-6) 0;
}

.pe-comparison-item {
	padding: var(--pe-space-4);
	border-radius: var(--pe-radius-lg);
}

.pe-comparison-myth {
	background: rgba(244, 67, 54, 0.1);
	border-left: 4px solid var(--pe-danger);
}

.pe-comparison-truth {
	background: rgba(76, 175, 80, 0.1);
	border-left: 4px solid var(--pe-success);
}

.pe-example-card {
	background: var(--pe-glass-bg);
	backdrop-filter: var(--pe-glass-blur);
	border: 1px solid var(--pe-glass-border);
	border-radius: var(--pe-radius-xl);
	padding: var(--pe-space-6);
	margin: var(--pe-space-6) 0;
}

.pe-strategy-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--pe-space-6);
	margin: var(--pe-space-8) 0;
}

.pe-strategy-card {
	background: var(--pe-white);
	border-radius: var(--pe-radius-xl);
	padding: var(--pe-space-6);
	box-shadow: var(--pe-shadow-md);
	transition: var(--pe-transition-smooth);
	border-top: 4px solid var(--pe-turquoise);
}

.pe-strategy-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--pe-shadow-xl);
}

.pe-warning-box {
	background: rgba(255, 193, 7, 0.1);
	border: 1px solid var(--pe-amber);
	border-radius: var(--pe-radius-lg);
	padding: var(--pe-space-4);
	margin: var(--pe-space-4) 0;
}

.pe-success-box {
	background: rgba(76, 175, 80, 0.1);
	border: 1px solid var(--pe-success);
	border-radius: var(--pe-radius-lg);
	padding: var(--pe-space-4);
	margin: var(--pe-space-4) 0;
}

@media (max-width: 768px) {
	.pe-comparison-grid {
		grid-template-columns: 1fr;
	}

	.pe-myth-title {
		font-size: var(--pe-text-lg);
	}
}

.pe-contact-hero {
	position: relative;
	min-height: 60vh;
	display: flex;
	align-items: center;
	background: var(--pe-bg-light);
	background-image: var(--pe-gradient-diagonal),
		linear-gradient(
			135deg,
			rgba(0, 191, 165, 0.1) 0%,
			rgba(255, 193, 7, 0.1) 100%
		);
	background-size: 40px 40px, 100% 100%;
	overflow: hidden;
	padding-top: 120px;
}

.pe-contact-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%2300BFA5" fill-opacity="0.05"><circle cx="30" cy="30" r="4"/></g></svg>');
	z-index: 1;
}

/* Contact Main Section */
.pe-contact-main {
	background: var(--pe-white);
	position: relative;
	z-index: 2;
	margin-top: -40px;
}

.pe-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--pe-space-12);
	align-items: start;
}

/* Contact Form Section */
.pe-contact-form-section {
	position: relative;
}

.pe-contact-form-title {
	font-size: var(--pe-text-2xl);
	font-weight: 700;
	color: var(--pe-charcoal);
	margin-bottom: var(--pe-space-4);
	display: flex;
	align-items: center;
	gap: var(--pe-space-3);
}

.pe-contact-form-subtitle {
	color: var(--pe-gray-600);
	margin-bottom: var(--pe-space-8);
	line-height: 1.6;
}

.pe-contact-form {
	display: flex;
	flex-direction: column;
	gap: var(--pe-space-6);
}

.pe-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--pe-space-4);
}

.pe-form-group {
	display: flex;
	flex-direction: column;
	gap: var(--pe-space-2);
}

.pe-form-label {
	font-weight: 600;
	color: var(--pe-charcoal);
	font-size: var(--pe-text-sm);
}

.pe-form-input,
.pe-form-select,
.pe-form-textarea {
	padding: var(--pe-space-4);
	border: 2px solid var(--pe-gray-300);
	border-radius: var(--pe-radius-lg);
	font-size: var(--pe-text-base);
	transition: var(--pe-transition-fast);
	background: var(--pe-white);
	color: var(--pe-charcoal);
	font-family: var(--pe-font-primary);
}

.pe-form-input:focus,
.pe-form-select:focus,
.pe-form-textarea:focus {
	outline: none;
	border-color: var(--pe-turquoise);
	box-shadow: 0 0 0 3px rgba(0, 191, 165, 0.1);
}

.pe-form-input.pe-error,
.pe-form-select.pe-error,
.pe-form-textarea.pe-error {
	border-color: var(--pe-danger);
}

.pe-form-textarea {
	resize: vertical;
	min-height: 120px;
}

.pe-form-select {
	cursor: pointer;
}

.pe-form-checkbox {
	display: flex;
	align-items: flex-start;
	gap: var(--pe-space-3);
	margin: var(--pe-space-4) 0;
}

.pe-checkbox {
	width: 18px;
	height: 18px;
	margin: 0;
	cursor: pointer;
	accent-color: var(--pe-turquoise);
}

.pe-checkbox-label {
	font-size: var(--pe-text-sm);
	color: var(--pe-gray-600);
	line-height: 1.5;
	cursor: pointer;
}

.pe-link {
	color: var(--pe-turquoise);
	text-decoration: none;
	font-weight: 500;
}

.pe-link:hover {
	text-decoration: underline;
}

.pe-btn-full {
	width: 100%;
}

.pe-form-success {
	background: var(--pe-glass-bg);
	backdrop-filter: var(--pe-glass-blur);
	border: 1px solid var(--pe-success);
	border-radius: var(--pe-radius-lg);
	padding: var(--pe-space-4);
	color: var(--pe-success);
	display: flex;
	align-items: center;
	gap: var(--pe-space-3);
	margin-top: var(--pe-space-4);
}

.pe-form-error {
	color: var(--pe-danger);
	font-size: var(--pe-text-xs);
	margin-top: var(--pe-space-1);
}

/* Contact Info Section */
.pe-contact-info-section {
	display: flex;
	flex-direction: column;
	gap: var(--pe-space-8);
}

.pe-contact-info-cards {
	display: flex;
	flex-direction: column;
	gap: var(--pe-space-6);
}

.pe-contact-info-card {
	background: var(--pe-glass-bg);
	backdrop-filter: var(--pe-glass-blur);
	border: 1px solid var(--pe-glass-border);
	border-radius: var(--pe-radius-xl);
	/* padding: var(--pe-space-6); */
	display: flex;
	align-items: flex-start;
	gap: var(--pe-space-4);
	transition: var(--pe-transition-smooth);
}

.pe-contact-info-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--pe-shadow-lg);
}

.pe-contact-icon {
	width: 50px;
	height: 50px;
	background: var(--pe-gradient-turquoise);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--pe-white);
	font-size: var(--pe-text-lg);
	flex-shrink: 0;
}

.pe-contact-details h3 {
	font-size: var(--pe-text-lg);
	font-weight: 600;
	color: var(--pe-charcoal);
	margin: 0 0 var(--pe-space-2);
}

.pe-contact-details p {
	color: var(--pe-gray-600);
	margin: 0 0 var(--pe-space-2);
	line-height: 1.5;
}

.pe-text-small {
	font-size: var(--pe-text-sm);
	color: var(--pe-gray-500);
}

.pe-contact-link {
	color: var(--pe-turquoise);
	text-decoration: none;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: var(--pe-space-2);
	transition: var(--pe-transition-fast);
}

.pe-contact-link:hover {
	color: #00a693;
	text-decoration: none;
}

/* Map Container */
.pe-map-container {
	background: var(--pe-white);
	border-radius: var(--pe-radius-2xl);
	overflow: hidden;
	box-shadow: var(--pe-shadow-md);
	border: 1px solid var(--pe-gray-200);
}

.pe-map-header {
	padding: var(--pe-space-6);
	background: var(--pe-bg-light);
	border-bottom: 1px solid var(--pe-gray-200);
}

.pe-map-header h3 {
	font-size: var(--pe-text-xl);
	font-weight: 600;
	color: var(--pe-charcoal);
	margin: 0 0 var(--pe-space-2);
	display: flex;
	align-items: center;
	gap: var(--pe-space-3);
}

.pe-map-header p {
	color: var(--pe-gray-600);
	margin: 0;
	font-size: var(--pe-text-sm);
}

.pe-map-frame {
	height: 350px;
	position: relative;
}

.pe-map-frame iframe {
	width: 100%;
	height: 100%;
	border: none;
}

/* FAQ Section */
.pe-contact-faq {
	background: var(--pe-bg-light);
}

.pe-faq-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--pe-space-6);
}

.pe-faq-item {
	background: var(--pe-white);
	border-radius: var(--pe-radius-xl);
	box-shadow: var(--pe-shadow-sm);
	overflow: hidden;
	transition: var(--pe-transition-smooth);
}

.pe-faq-item:hover {
	box-shadow: var(--pe-shadow-md);
}

.pe-faq-question {
	padding: var(--pe-space-6);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: var(--pe-white);
	transition: var(--pe-transition-fast);
}

.pe-faq-question:hover {
	background: var(--pe-bg-light);
}

.pe-faq-question h3 {
	font-size: var(--pe-text-lg);
	font-weight: 600;
	color: var(--pe-charcoal);
	margin: 0;
}

.pe-faq-question i {
	color: var(--pe-turquoise);
	transition: var(--pe-transition-fast);
}

.pe-faq-item.pe-active .pe-faq-question i {
	transform: rotate(180deg);
}

.pe-faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: var(--pe-transition-smooth);
	background: var(--pe-bg-light);
}

.pe-faq-item.pe-active .pe-faq-answer {
	max-height: 200px;
}

.pe-faq-answer p {
	padding: var(--pe-space-6);
	margin: 0;
	color: var(--pe-gray-600);
	line-height: 1.6;
}

/* Office Hours Section */
.pe-office-hours {
	background: var(--pe-white);
}

.pe-office-hours-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--pe-space-12);
	align-items: center;
}

.pe-office-hours-info h2 {
	font-size: var(--pe-text-3xl);
	font-weight: 700;
	color: var(--pe-charcoal);
	margin-bottom: var(--pe-space-4);
	display: flex;
	align-items: center;
	gap: var(--pe-space-3);
}

.pe-office-subtitle {
	color: var(--pe-gray-600);
	margin-bottom: var(--pe-space-8);
	line-height: 1.6;
}

.pe-schedule-grid {
	display: flex;
	flex-direction: column;
	gap: var(--pe-space-4);
	margin-bottom: var(--pe-space-8);
}

.pe-schedule-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: var(--pe-space-4);
	background: var(--pe-bg-light);
	border-radius: var(--pe-radius-lg);
	border-left: 4px solid var(--pe-turquoise);
}

.pe-schedule-item.pe-schedule-closed {
	border-left-color: var(--pe-gray-400);
	opacity: 0.7;
}

.pe-schedule-day {
	font-weight: 600;
	color: var(--pe-charcoal);
}

.pe-schedule-time {
	color: var(--pe-gray-600);
	font-weight: 500;
}

.pe-office-note {
	display: flex;
	align-items: flex-start;
	gap: var(--pe-space-3);
	padding: var(--pe-space-4);
	background: rgba(255, 193, 7, 0.1);
	border-radius: var(--pe-radius-lg);
	border-left: 4px solid var(--pe-amber);
}

.pe-office-note p {
	margin: 0;
	color: var(--pe-gray-700);
	font-size: var(--pe-text-sm);
	line-height: 1.5;
}

.pe-office-cta {
	position: relative;
}

.pe-office-icon {
	font-size: 3rem;
	color: var(--pe-turquoise);
	margin-bottom: var(--pe-space-4);
}

.pe-office-cta h3 {
	font-size: var(--pe-text-xl);
	font-weight: 700;
	color: var(--pe-charcoal);
	margin-bottom: var(--pe-space-4);
}

.pe-office-cta p {
	color: var(--pe-gray-600);
	margin-bottom: var(--pe-space-6);
	line-height: 1.6;
}

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
	.pe-contact-grid,
	.pe-office-hours-content {
		grid-template-columns: 1fr;
		gap: var(--pe-space-8);
	}

	.pe-faq-grid {
		grid-template-columns: 1fr;
	}

	.pe-map-frame {
		height: 300px;
	}
}

@media (max-width: 768px) {
	.pe-form-row {
		grid-template-columns: 1fr;
	}

	.pe-contact-hero {
		min-height: 50vh;
		padding-top: 100px;
	}

	.pe-contact-form-title {
		font-size: var(--pe-text-xl);
	}

	.pe-office-hours-info h2 {
		font-size: var(--pe-text-2xl);
	}

	.pe-schedule-item {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--pe-space-2);
	}

	.pe-office-note {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.pe-contact-main {
		margin-top: -20px;
	}

	.pe-glass-card {
		padding: var(--pe-space-6);
	}

	.pe-contact-info-card {
		flex-direction: column;
		text-align: center;
		justify-content: center;
		align-items: center;
		padding: 1rem;
	}

	.pe-map-frame {
		height: 250px;
	}

	.pe-faq-question h3 {
		font-size: var(--pe-text-base);
	}

	.pe-office-icon {
		font-size: 2rem;
	}
}

@media (max-width: 578px) {
	.pe-testimonials-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.pe-strategy-grid {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	}

	.pe-myth-content h3 {
		font-size: 1.5rem;
	}

	.pe-myth-header {
		padding: 1rem;
	}
	.pe-about-features li {
		flex-direction: column;
	}

	.pe-about-schedule h3 {
		text-align: center;
	}

	.pe-glass-card h3,
	.pe-glass-card p {
		text-align: center;
	}

	.pe-hero {
		height: 120vh;
	}

	.pe-chart-placeholder {
		padding: 1rem;
	}

	.pe-infographic h3 {
		font-size: 1.5rem;
	}
}

.pe-privacy-hero {
	position: relative;
	min-height: 60vh;
	display: flex;
	align-items: center;
	background: var(--pe-bg-light);
	background-image: var(--pe-gradient-diagonal),
		linear-gradient(
			135deg,
			rgba(0, 191, 165, 0.1) 0%,
			rgba(255, 193, 7, 0.1) 100%
		);
	background-size: 40px 40px, 100% 100%;
	overflow: hidden;
	padding-top: 120px;
}

.pe-privacy-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%2300BFA5" fill-opacity="0.05"><circle cx="30" cy="30" r="4"/></g></svg>');
	z-index: 1;
}

.pe-privacy-info {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--pe-space-3);
	margin-top: var(--pe-space-6);
	padding: var(--pe-space-4);
	background: var(--pe-glass-bg);
	backdrop-filter: var(--pe-glass-blur);
	border: 1px solid var(--pe-glass-border);
	border-radius: var(--pe-radius-xl);
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
}

.pe-privacy-info p {
	margin-bottom: 0;
}

.pe-privacy-icon {
	font-size: var(--pe-text-2xl);
	color: var(--pe-turquoise);
}

/* Privacy Content */
.pe-privacy-content {
	background: var(--pe-white);
	position: relative;
	z-index: 2;
	margin-top: -40px;
}

.pe-policy-intro {
	margin-bottom: var(--pe-space-12);
	text-align: center;
}

.pe-policy-intro h2 {
	color: var(--pe-charcoal);
	margin-bottom: var(--pe-space-6);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--pe-space-3);
}

.pe-policy-sections {
	display: flex;
	flex-direction: column;
	gap: var(--pe-space-8);
	margin-bottom: var(--pe-space-12);
}

.pe-policy-section {
	background: var(--pe-white);
	border-radius: var(--pe-radius-2xl);
	box-shadow: var(--pe-shadow-md);
	overflow: hidden;
	transition: var(--pe-transition-smooth);
	border: 1px solid var(--pe-gray-200);
}

.pe-policy-section:hover {
	transform: translateY(-3px);
	box-shadow: var(--pe-shadow-lg);
	border-color: var(--pe-turquoise);
}

.pe-policy-header {
	padding: var(--pe-space-6);
	background: var(--pe-bg-light);
	border-bottom: 1px solid var(--pe-gray-200);
	display: flex;
	align-items: center;
	gap: var(--pe-space-4);
}

.pe-policy-header h3 {
	color: var(--pe-charcoal);
	margin: 0;
	font-size: var(--pe-text-xl);
	font-weight: 700;
}

.pe-policy-icon {
	width: 50px;
	height: 50px;
	background: var(--pe-gradient-turquoise);
	border-radius: 50%;
	display: flex !important;
	align-items: center;
	justify-content: center;
	color: var(--pe-white);
	font-size: 1.5rem;
	flex-shrink: 0;
}

.pe-policy-content {
	padding: var(--pe-space-8);
}

.pe-policy-content p {
	color: var(--pe-charcoal);
	line-height: 1.7;
	margin-bottom: var(--pe-space-4);
}

.pe-policy-content ul {
	margin: var(--pe-space-4) 0;
	padding-left: var(--pe-space-6);
}

.pe-policy-content li {
	color: var(--pe-charcoal);
	margin-bottom: var(--pe-space-3);
	line-height: 1.6;
}

.pe-policy-content li strong {
	color: var(--pe-turquoise);
	font-weight: 600;
}

.pe-policy-contact {
	background: var(--pe-glass-bg);
	backdrop-filter: var(--pe-glass-blur);
	border: 1px solid var(--pe-glass-border);
	text-align: center;
}

.pe-policy-contact h3 {
	color: var(--pe-charcoal);
	margin-bottom: var(--pe-space-6);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--pe-space-3);
}

.pe-contact-details {
	text-align: left;
	max-width: 400px;
	margin: 0 auto;
}

.pe-contact-details p {
	margin-bottom: var(--pe-space-3);
	color: var(--pe-charcoal);
	display: flex;
	align-items: center;
	gap: var(--pe-space-3);
}

.pe-contact-details i {
	color: var(--pe-turquoise);
	width: 20px;
	text-align: center;
}

/* Cookie Settings */
.pe-cookie-settings {
	background: var(--pe-bg-light);
}

.pe-cookie-preferences {
	margin-bottom: var(--pe-space-8);
}

.pe-cookie-preferences h2 {
	text-align: center;
	margin-bottom: var(--pe-space-6);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--pe-space-3);
}

.pe-cookie-controls {
	display: flex;
	flex-direction: column;
	gap: var(--pe-space-6);
	margin: var(--pe-space-8) 0;
}

.pe-cookie-type {
	padding: var(--pe-space-6);
	background: var(--pe-white);
	border-radius: var(--pe-radius-lg);
	border: 1px solid var(--pe-gray-200);
	transition: var(--pe-transition-fast);
}

.pe-cookie-type:hover {
	border-color: var(--pe-turquoise);
	box-shadow: var(--pe-shadow-sm);
}

.pe-cookie-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: var(--pe-space-3);
}

.pe-cookie-header h4 {
	color: var(--pe-charcoal);
	font-size: var(--pe-text-lg);
	font-weight: 600;
	margin: 0;
}

.pe-switch-container {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 24px;
}

.pe-switch-container input {
	opacity: 0;
	width: 0;
	height: 0;
}

.pe-switch {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--pe-gray-400);
	transition: var(--pe-transition-fast);
	border-radius: 24px;
}

.pe-switch:before {
	position: absolute;
	content: '';
	height: 18px;
	width: 18px;
	left: 3px;
	bottom: 3px;
	background-color: var(--pe-white);
	transition: var(--pe-transition-fast);
	border-radius: 50%;
}

.pe-switch-container input:checked + .pe-switch {
	background-color: var(--pe-turquoise);
}

.pe-switch-container input:checked + .pe-switch:before {
	transform: translateX(26px);
}

.pe-switch-container input:disabled + .pe-switch {
	background-color: var(--pe-gray-300);
	cursor: not-allowed;
}

.pe-cookie-type p {
	color: var(--pe-gray-600);
	font-size: var(--pe-text-sm);
	line-height: 1.5;
	margin: 0;
}

.pe-cookie-actions {
	display: flex;
	gap: var(--pe-space-4);
	justify-content: center;
	margin-top: var(--pe-space-6);
}

/* Link Styling */
.pe-link {
	color: var(--pe-turquoise);
	text-decoration: none;
	font-weight: 500;
	transition: var(--pe-transition-fast);
}

.pe-link:hover {
	color: #00a693;
	text-decoration: underline;
}

/* Responsive Design for Policy Pages */
@media (max-width: 768px) {
	.pe-privacy-hero {
		min-height: 50vh;
		padding-top: 100px;
	}

	.pe-hero-title {
		font-size: var(--pe-text-3xl);
	}

	.pe-policy-header {
		flex-direction: column;
		text-align: center;
		gap: var(--pe-space-3);
	}

	.pe-policy-header h3 {
		font-size: var(--pe-text-lg);
	}

	.pe-cookie-actions {
		flex-direction: column;
	}

	.pe-contact-details p {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--pe-space-2);
	}
}

@media (max-width: 480px) {
	.pe-policy-header,
	.pe-policy-content {
		padding: var(--pe-space-4);
	}

	.pe-policy-icon {
		width: 40px;
		height: 40px;
		font-size: var(--pe-text-base);
	}

	.pe-privacy-info {
		flex-direction: column;
		text-align: center;
	}

	.pe-cookie-type {
		padding: var(--pe-space-4);
	}

	.pe-cookie-header {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--pe-space-2);
	}

	.pe-cookie-buttons {
		flex-direction: column;
	}
}
