@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700&family=Roboto:wght@300;400;500;700&display=swap');

/* ============================================
   GLOBAL VARIABLES & RESET
   ============================================ */
:root {
	--pf-bg-primary: #0b0e11;
	--pf-bg-secondary: #161a1f;
	--pf-bg-elevated: #20252b;
	--pf-accent-green: #00d4a1;
	--pf-accent-blue: #2979ff;
	--pf-text-primary: #e2e6eb;
	--pf-text-secondary: #9fa5af;
	--pf-text-heading: #ffffff;
	--pf-border: #20252b;
	--pf-error: #ff4757;
	--pf-success: #00d4a1;
	--pf-transition: 0.45s ease-in-out;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Roboto', sans-serif;
	background-color: var(--pf-bg-primary);
	color: var(--pf-text-primary);
	line-height: 1.7;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--pf-transition);
}

ul {
	list-style: none;
}

button {
	cursor: pointer;
	border: none;
	background: none;
	font-family: inherit;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.pf-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}

.pf-container-narrow {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 40px;
}

.pf-section {
	padding: 120px 0;
	position: relative;
}

.pf-section-alt {
	background-color: var(--pf-bg-secondary);
}

.pf-grid-2 {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
	gap: 60px;
	align-items: center;
}

.pf-grid-3 {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 40px;
}

.pf-grid-4 {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 40px;
}

.pf-text-center {
	text-align: center;
}

.pf-mb-20 {
	margin-bottom: 20px;
}

.pf-mb-40 {
	margin-bottom: 40px;
}

.pf-mb-60 {
	margin-bottom: 60px;
}

.pf-mt-40 {
	margin-top: 40px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Orbitron', sans-serif;
	color: var(--pf-text-heading);
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 20px;
}

.pf-heading-xl {
	font-size: 4rem;
	font-weight: 700;
	letter-spacing: -1px;
	text-transform: uppercase;
	background: linear-gradient(
		135deg,
		var(--pf-accent-green),
		var(--pf-accent-blue)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.pf-heading-lg {
	font-size: 3rem;
	font-weight: 600;
	letter-spacing: -0.5px;
}

.pf-heading-md {
	font-size: 2.5rem;
	font-weight: 600;
}

.pf-heading-sm {
	font-size: 2rem;
	font-weight: 600;
}

.pf-heading-xs {
	font-size: 1.5rem;
	font-weight: 600;
}

.pf-text-lg {
	font-size: 1.25rem;
	line-height: 1.8;
	color: var(--pf-text-secondary);
}

.pf-text-md {
	font-size: 1.125rem;
	line-height: 1.7;
}

.pf-text-sm {
	font-size: 0.95rem;
	line-height: 1.6;
}

.pf-text-accent {
	color: var(--pf-accent-green);
	font-weight: 500;
}

.pf-text-gradient {
	background: linear-gradient(
		135deg,
		var(--pf-accent-green),
		var(--pf-accent-blue)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ============================================
   BUTTONS
   ============================================ */
.pf-btn {
	display: inline-block;
	padding: 16px 40px;
	font-size: 1rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 4px;
	transition: var(--pf-transition);
	position: relative;
	overflow: hidden;
}

.pf-btn-primary {
	background: linear-gradient(
		135deg,
		var(--pf-accent-green),
		var(--pf-accent-blue)
	);
	color: var(--pf-bg-primary);
	box-shadow: 0 0 20px rgba(0, 212, 161, 0.3);
}

.pf-btn-primary:hover {
	box-shadow: 0 0 40px rgba(0, 212, 161, 0.6);
	transform: translateY(-2px);
}

.pf-btn-secondary {
	background-color: transparent;
	border: 2px solid var(--pf-accent-green);
	color: var(--pf-accent-green);
}

.pf-btn-secondary:hover {
	background-color: var(--pf-accent-green);
	color: var(--pf-bg-primary);
	box-shadow: 0 0 20px rgba(0, 212, 161, 0.4);
}

.pf-btn-ghost {
	background-color: rgba(255, 255, 255, 0.05);
	color: var(--pf-text-primary);
	border: 1px solid var(--pf-border);
}

.pf-btn-ghost:hover {
	background-color: rgba(255, 255, 255, 0.1);
	border-color: var(--pf-accent-green);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.pf-header {
	background-color: var(--pf-bg-secondary);
	border-bottom: 1px solid var(--pf-border);
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 4px 20px rgba(0, 212, 161, 0.1);
}

.pf-header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 20px;
	max-width: 1400px;
	margin: 0 auto;
}

.pf-logo {
	font-family: 'Orbitron', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--pf-accent-blue);
	text-shadow: 0 0 20px rgba(41, 121, 255, 0.5);
	text-transform: uppercase;
	letter-spacing: 2px;
}

.pf-logo:hover {
	text-shadow: 0 0 40px rgba(41, 121, 255, 0.8);
}

.pf-nav {
	display: flex;
	gap: 40px;
	align-items: center;
}

.pf-nav-link {
	color: var(--pf-text-secondary);
	font-weight: 500;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	position: relative;
}

.pf-nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(
		90deg,
		var(--pf-accent-green),
		var(--pf-accent-blue)
	);
	transition: width var(--pf-transition);
}

.pf-nav-link:hover,
.pf-nav-link.pf-active {
	color: var(--pf-text-heading);
}

.pf-nav-link:hover::after,
.pf-nav-link.pf-active::after {
	width: 100%;
}

.pf-social-icons {
	display: flex;
	gap: 20px;
}

.pf-social-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.05);
	color: var(--pf-text-secondary);
	font-size: 1rem;
	transition: var(--pf-transition);
}

.pf-social-icon:hover {
	background-color: var(--pf-accent-green);
	color: var(--pf-bg-primary);
	box-shadow: 0 0 20px rgba(0, 212, 161, 0.5);
	transform: translateY(-3px);
}

/* Mobile Menu Toggle */
.pf-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	z-index: 1001;
}

.pf-menu-toggle span {
	width: 30px;
	height: 3px;
	background-color: var(--pf-accent-green);
	transition: var(--pf-transition);
	border-radius: 2px;
}

.pf-menu-toggle.pf-active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.pf-menu-toggle.pf-active span:nth-child(2) {
	opacity: 0;
}

.pf-menu-toggle.pf-active span:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.pf-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(
		135deg,
		var(--pf-bg-primary) 0%,
		var(--pf-bg-secondary) 100%
	);
}

.pf-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('assets/pf-hero.webp') center/cover;
	opacity: 0.3;
	z-index: 0;
}

.pf-hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 1000px;
	padding: 0 40px;
}

.pf-hero-subtitle {
	font-size: 1.25rem;
	color: var(--pf-text-secondary);
	margin-bottom: 40px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.pf-hero-cta {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-top: 40px;
}

/* ============================================
   CARDS
   ============================================ */
.pf-card {
	background-color: var(--pf-bg-secondary);
	border: 1px solid var(--pf-border);
	border-radius: 8px;
	padding: 40px;
	transition: var(--pf-transition);
	position: relative;
	overflow: hidden;
}

.pf-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(
		90deg,
		var(--pf-accent-green),
		var(--pf-accent-blue)
	);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--pf-transition);
}

.pf-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(0, 212, 161, 0.2);
	border-color: var(--pf-accent-green);
}

.pf-card:hover::before {
	transform: scaleX(1);
}

.pf-card-icon {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(
		135deg,
		var(--pf-accent-green),
		var(--pf-accent-blue)
	);
	border-radius: 8px;
	font-size: 1.75rem;
	color: var(--pf-bg-primary);
	margin-bottom: 24px;
}

.pf-card-title {
	font-size: 1.5rem;
	margin-bottom: 16px;
}

.pf-card-text {
	color: var(--pf-text-secondary);
	line-height: 1.7;
	margin-bottom: 24px;
}

.pf-card-link {
	color: var(--pf-accent-green);
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.pf-card-link:hover {
	gap: 12px;
}

/* ============================================
   TEAM CARDS
   ============================================ */
.pf-team-card {
	text-align: center;
	background-color: var(--pf-bg-secondary);
	border: 1px solid var(--pf-border);
	border-radius: 8px;
	padding: 40px;
	transition: var(--pf-transition);
}

.pf-team-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 212, 161, 0.15);
}

.pf-team-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin: 0 auto 24px;
	border: 3px solid var(--pf-accent-green);
	background-color: var(--pf-bg-elevated);
}

.pf-team-avatar img {
	width: 100%;
	border-radius: 50%;
	height: 100%;
	object-fit: cover;
}

.pf-team-name {
	font-size: 1.25rem;
	margin-bottom: 8px;
}

.pf-team-role {
	color: var(--pf-accent-green);
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 16px;
}

.pf-team-bio {
	color: var(--pf-text-secondary);
	font-size: 0.95rem;
	line-height: 1.6;
}

/* ============================================
   FORMS
   ============================================ */
.pf-form {
	display: grid;
	gap: 24px;
}

.pf-form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.pf-form-label {
	font-weight: 500;
	font-size: 0.95rem;
	color: var(--pf-text-primary);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.pf-form-input,
.pf-form-textarea {
	background-color: var(--pf-bg-elevated);
	border: 1px solid var(--pf-border);
	border-radius: 4px;
	padding: 14px 16px;
	color: var(--pf-text-primary);
	font-size: 1rem;
	font-family: 'Roboto', sans-serif;
	transition: var(--pf-transition);
}

.pf-form-input:focus,
.pf-form-textarea:focus {
	outline: none;
	border-color: var(--pf-accent-green);
	box-shadow: 0 0 0 3px rgba(0, 212, 161, 0.1);
}

.pf-form-input.pf-error,
.pf-form-textarea.pf-error {
	border-color: var(--pf-error);
}

.pf-form-error-msg {
	color: var(--pf-error);
	font-size: 0.85rem;
	margin-top: 4px;
	display: none;
}

.pf-form-error-msg.pf-show {
	display: block;
}

.pf-form-textarea {
	min-height: 150px;
	resize: vertical;
}

.pf-form-submit {
	width: 100%;
	margin-top: 16px;
}

/* ============================================
   TABLE
   ============================================ */
.pf-table-wrapper {
	overflow-x: auto;
	border-radius: 8px;
	border: 1px solid var(--pf-border);
}

.pf-table {
	width: 100%;
	border-collapse: collapse;
	background-color: var(--pf-bg-secondary);
}

.pf-table thead {
	background-color: var(--pf-bg-elevated);
}

.pf-table th {
	padding: 16px;
	text-align: left;
	font-weight: 600;
	color: var(--pf-accent-green);
	text-transform: uppercase;
	font-size: 0.9rem;
	letter-spacing: 0.5px;
}

.pf-table td {
	padding: 16px;
	border-top: 1px solid var(--pf-border);
	color: var(--pf-text-secondary);
}

.pf-table tr:hover td {
	background-color: rgba(0, 212, 161, 0.05);
}

/* ============================================
   ACCORDION
   ============================================ */
.pf-accordion {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.pf-accordion-item {
	background-color: var(--pf-bg-secondary);
	border: 1px solid var(--pf-border);
	border-radius: 8px;
	overflow: hidden;
}

.pf-accordion-header {
	padding: 24px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: var(--pf-transition);
	background-color: var(--pf-bg-secondary);
}

.pf-accordion-header:hover {
	background-color: var(--pf-bg-elevated);
}

.pf-accordion-title {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0;
	color: var(--pf-text-heading);
}

.pf-accordion-icon {
	font-size: 1.25rem;
	color: var(--pf-accent-green);
	transition: transform var(--pf-transition);
}

.pf-accordion-item.pf-active .pf-accordion-icon {
	transform: rotate(180deg);
}

.pf-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height var(--pf-transition);
}

.pf-accordion-content-inner {
	padding: 1rem 24px 24px;
	color: var(--pf-text-secondary);
	line-height: 1.7;
}

/* ============================================
   TABS
   ============================================ */
.pf-tabs {
	margin-bottom: 40px;
}

.pf-tabs-nav {
	display: flex;
	gap: 4px;
	border-bottom: 2px solid var(--pf-border);
	margin-bottom: 40px;
}

.pf-tab-button {
	padding: 16px 32px;
	font-weight: 500;
	color: var(--pf-text-secondary);
	background: none;
	border: none;
	border-bottom: 2px solid transparent;
	cursor: pointer;
	transition: var(--pf-transition);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 0.95rem;
}

.pf-tab-button:hover {
	color: var(--pf-text-primary);
}

.pf-tab-button.pf-active {
	color: var(--pf-accent-green);
	border-bottom-color: var(--pf-accent-green);
}

.pf-tab-content {
	display: none;
}

.pf-tab-content.pf-active {
	display: block;
	animation: pf-fade-in 0.5s ease-in-out;
}

/* ============================================
   MAP
   ============================================ */
.pf-map-container {
	width: 100%;
	height: 100%;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid var(--pf-border);
}

.pf-map {
	height: 100%;
	min-height: 400px;

	border-radius: 0.5rem;

	overflow: hidden;
}

@media (max-width: 768px) {
	.pf-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.pf-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 0.5rem;
	/* overflow: hidden; */
}

.pf-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 0.5rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

/* ============================================
   COOKIE POPUP
   ============================================ */
.pf-cookie-popup {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--pf-bg-secondary);
	border-top: 2px solid var(--pf-accent-green);
	padding: 24px 40px;
	z-index: 9999;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
	transform: translateY(100%);
	transition: transform 0.5s ease-in-out;
}

.pf-cookie-popup.pf-show {
	transform: translateY(0);
}

.pf-cookie-content {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
}

.pf-cookie-text {
	flex: 1;
	color: var(--pf-text-secondary);
	line-height: 1.6;
}

.pf-cookie-text a {
	color: var(--pf-accent-green);
	text-decoration: underline;
}

.pf-cookie-actions {
	display: flex;
	gap: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.pf-footer {
	background-color: var(--pf-bg-primary);
	border-top: 1px solid var(--pf-border);
	padding-top: 80px;
	padding-bottom: 40px;
}

.pf-footer-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 60px;
	margin-bottom: 60px;
}

.pf-footer-section h3 {
	font-size: 1.125rem;
	margin-bottom: 24px;
	color: var(--pf-accent-green);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.pf-footer-text {
	color: var(--pf-text-secondary);
	line-height: 1.7;
	margin-bottom: 24px;
}

.pf-footer-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.pf-footer-link {
	color: var(--pf-text-secondary);
	font-size: 0.95rem;
	transition: var(--pf-transition);
	display: flex;
	align-items: center;
	gap: 8px;
}

.pf-footer-link:hover {
	color: var(--pf-accent-green);
	padding-left: 8px;
}

.pf-footer-social {
	display: flex;
	gap: 16px;
}

.pf-footer-bottom {
	padding-top: 40px;
	border-top: 1px solid var(--pf-border);
	text-align: center;
	color: var(--pf-text-secondary);
	font-size: 0.9rem;
}

/* ============================================
   CONTACT INFO
   ============================================ */
.pf-contact-info {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.pf-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.pf-contact-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(
		135deg,
		var(--pf-accent-green),
		var(--pf-accent-blue)
	);
	border-radius: 50%;
	font-size: 1.125rem;
	color: var(--pf-bg-primary);
	flex-shrink: 0;
}

.pf-contact-details h4 {
	font-size: 1rem;
	margin-bottom: 4px;
	color: var(--pf-text-heading);
}

.pf-contact-details p {
	color: var(--pf-text-secondary);
	font-size: 0.95rem;
	line-height: 1.6;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes pf-fade-in {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pf-scale-up {
	from {
		opacity: 0;
		transform: scale(0.95);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes pf-slide-in-bottom {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pf-glow-pulse {
	0%,
	100% {
		box-shadow: 0 0 20px rgba(0, 212, 161, 0.3);
	}
	50% {
		box-shadow: 0 0 40px rgba(0, 212, 161, 0.6);
	}
}

.pf-animate-fade-in {
	animation: pf-fade-in 0.8s ease-out forwards;
	opacity: 0;
}

.pf-animate-scale-up {
	animation: pf-scale-up 0.6s ease-out forwards;
	opacity: 0;
}

.pf-animate-slide-in {
	animation: pf-slide-in-bottom 0.8s ease-out forwards;
	opacity: 0;
}

.pf-delay-1 {
	animation-delay: 0.2s;
}

.pf-delay-2 {
	animation-delay: 0.4s;
}

.pf-delay-3 {
	animation-delay: 0.6s;
}

.pf-delay-4 {
	animation-delay: 0.8s;
}

/* ============================================
   IMAGE STYLES
   ============================================ */
.pf-img-wrapper {
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid var(--pf-border);
	background-color: var(--pf-bg-elevated);
	height: 100%;
}

.pf-img-full {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ============================================
   QUOTE BLOCK
   ============================================ */
.pf-quote {
	background-color: var(--pf-bg-secondary);
	border-left: 4px solid var(--pf-accent-green);
	padding: 40px;
	border-radius: 8px;
	margin: 40px 0;
}

.pf-quote-text {
	font-size: 1.25rem;
	font-style: italic;
	color: var(--pf-text-primary);
	line-height: 1.7;
	margin-bottom: 20px;
}

.pf-quote-author {
	display: flex;
	align-items: center;
	gap: 16px;
}

.pf-quote-avatar {
	width: 60px;
	display: flex;
	flex-shrink: 0;
	height: 60px;
	border-radius: 50%;
	background-color: var(--pf-bg-elevated);
	border: 2px solid var(--pf-accent-green);
}

.pf-quote-avatar img {
	border-radius: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pf-quote-info h4 {
	font-size: 1rem;
	margin-bottom: 4px;
	color: var(--pf-text-heading);
}

.pf-quote-info p {
	font-size: 0.9rem;
	color: var(--pf-text-secondary);
}

/* ============================================
   BREADCRUMB
   ============================================ */
.pf-breadcrumb {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 20px 0;
	font-size: 0.9rem;
	color: var(--pf-text-secondary);
}

.pf-breadcrumb a {
	color: var(--pf-text-secondary);
	transition: color 0.3s;
}

.pf-breadcrumb a:hover {
	color: var(--pf-accent-green);
}

.pf-breadcrumb-separator {
	color: var(--pf-border);
}

.pf-breadcrumb-current {
	color: var(--pf-accent-green);
}

/* ============================================
   CHECKLIST
   ============================================ */
.pf-checklist {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.pf-checklist-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 16px;
	background-color: var(--pf-bg-secondary);
	border-radius: 4px;
	border-left: 3px solid var(--pf-accent-green);
}

.pf-checklist-icon {
	color: var(--pf-accent-green);
	font-size: 1.25rem;
	flex-shrink: 0;
}

.pf-checklist-text {
	color: var(--pf-text-secondary);
	line-height: 1.6;
}

/* ============================================
   STATS
   ============================================ */
.pf-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
}

.pf-stat-item {
	text-align: center;
	padding: 30px;
	background-color: var(--pf-bg-secondary);
	border-radius: 8px;
	border: 1px solid var(--pf-border);
	transition: var(--pf-transition);
}

.pf-stat-item:hover {
	border-color: var(--pf-accent-green);
	box-shadow: 0 10px 30px rgba(0, 212, 161, 0.15);
}

.pf-stat-number {
	font-size: 3rem;
	font-weight: 700;
	font-family: 'Orbitron', sans-serif;
	background: linear-gradient(
		135deg,
		var(--pf-accent-green),
		var(--pf-accent-blue)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 8px;
}

.pf-stat-label {
	color: var(--pf-text-secondary);
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.pf-process {
	position: relative;
}

.pf-process-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	position: relative;
	z-index: 1;
}

.pf-process-step {
	text-align: center;
}

.pf-process-number {
	width: 80px;
	height: 80px;
	margin: 0 auto 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(
		135deg,
		var(--pf-accent-green),
		var(--pf-accent-blue)
	);
	border-radius: 50%;
	font-size: 2rem;
	font-weight: 700;
	font-family: 'Orbitron', sans-serif;
	color: var(--pf-bg-primary);
	box-shadow: 0 10px 30px rgba(0, 212, 161, 0.3);
}

.pf-process-title {
	font-size: 1.25rem;
	margin-bottom: 12px;
}

.pf-process-text {
	color: var(--pf-text-secondary);
	line-height: 1.6;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
	.pf-header,
	.pf-footer,
	.pf-cookie-popup,
	.pf-btn,
	.pf-social-icons {
		display: none;
	}

	body {
		background-color: white;
		color: black;
	}

	.pf-section {
		page-break-inside: avoid;
	}
}

/* ============================================
   UTILITY SPACING
   ============================================ */
.pf-pt-60 {
	padding-top: 60px;
}

.pf-pb-60 {
	padding-bottom: 60px;
}

.pf-my-60 {
	margin-top: 60px;
	margin-bottom: 60px;
}

.pf-gap-20 {
	gap: 20px;
}

.pf-gap-40 {
	gap: 40px;
}

/* ============================================
   ADDITIONAL PAGE-SPECIFIC STYLES
   ============================================ */

/* Modeling Page */
.pf-timeline {
	position: relative;
	padding-left: 40px;
}

.pf-timeline::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(
		180deg,
		var(--pf-accent-green),
		var(--pf-accent-blue)
	);
}

.pf-timeline-item {
	position: relative;
	padding-bottom: 40px;
}

.pf-timeline-item::before {
	content: '';
	position: absolute;
	left: -45px;
	top: 8px;
	width: 12px;
	height: 12px;
	background-color: var(--pf-accent-green);
	border-radius: 50%;
	box-shadow: 0 0 20px rgba(0, 212, 161, 0.6);
}

.pf-timeline-year {
	font-family: 'Orbitron', sans-serif;
	font-size: 1.125rem;
	color: var(--pf-accent-green);
	margin-bottom: 8px;
}

.pf-timeline-content {
	background-color: var(--pf-bg-secondary);
	padding: 24px;
	border-radius: 8px;
	border-left: 3px solid var(--pf-accent-blue);
}

/* CNC Page */
.pf-code-block {
	background-color: var(--pf-bg-primary);
	border: 1px solid var(--pf-accent-green);
	border-radius: 8px;
	padding: 24px;
	font-family: 'Courier New', monospace;
	font-size: 0.9rem;
	color: var(--pf-accent-green);
	overflow-x: auto;
	margin: 30px 0;
}

.pf-code-block pre {
	margin: 0;
	white-space: pre-wrap;
	word-wrap: break-word;
}

/* Automation Page */
.pf-feature-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.pf-feature-item {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	padding: 24px;
	background-color: var(--pf-bg-secondary);
	border-radius: 8px;
	border: 1px solid var(--pf-border);
	transition: var(--pf-transition);
}

.pf-feature-item:hover {
	border-color: var(--pf-accent-green);
	box-shadow: 0 10px 30px rgba(0, 212, 161, 0.15);
}

.pf-feature-icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(
		135deg,
		var(--pf-accent-green),
		var(--pf-accent-blue)
	);
	border-radius: 8px;
	font-size: 1.5rem;
	color: var(--pf-bg-primary);
	flex-shrink: 0;
}

.pf-feature-content h3 {
	font-size: 1.125rem;
	margin-bottom: 8px;
}

.pf-feature-content p {
	color: var(--pf-text-secondary);
	line-height: 1.6;
	font-size: 0.95rem;
}

/* Thank You Page */
.pf-thank-you {
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.pf-thank-you-icon {
	width: 100px;
	height: 100px;
	margin: 0 auto 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(
		135deg,
		var(--pf-accent-green),
		var(--pf-accent-blue)
	);
	border-radius: 50%;
	font-size: 3rem;
	color: var(--pf-bg-primary);
	box-shadow: 0 20px 60px rgba(0, 212, 161, 0.3);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
	.pf-nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 80%;
		max-width: 400px;
		height: 100vh;
		background-color: var(--pf-bg-secondary);
		flex-direction: column;
		padding: 100px 40px 40px;
		gap: 30px;
		transition: right var(--pf-transition);
		box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
		z-index: 999;
	}

	.pf-nav.pf-active {
		right: 0;
	}

	.pf-menu-toggle {
		display: flex;
	}
}

@media (max-width: 1024px) {
	.pf-container {
		padding: 0 30px;
	}

	.pf-section {
		padding: 80px 0;
	}

	.pf-heading-xl {
		font-size: 3rem;
	}

	.pf-heading-lg {
		font-size: 2.5rem;
	}

	.pf-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.pf-footer-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}
}

/* Mobile Landscape & Small Tablets (481px - 767px) */
@media (max-width: 767px) {
	.pf-social-icons {
		margin-left: 0;
		margin-top: 20px;
	}

	.pf-heading-xl {
		font-size: 2.5rem;
	}

	.pf-heading-lg {
		font-size: 2rem;
	}

	.pf-heading-md {
		font-size: 1.75rem;
	}

	.pf-section {
		padding: 60px 0;
	}

	.pf-grid-2,
	.pf-grid-3,
	.pf-grid-4 {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.pf-hero-cta {
		flex-direction: column;
		align-items: stretch;
	}

	.pf-footer-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.pf-cookie-content {
		flex-direction: column;
		gap: 20px;
	}

	.pf-cookie-actions {
		width: 100%;
	}

	.pf-cookie-actions .pf-btn {
		flex: 1;
	}

	.pf-tabs-nav {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.pf-tab-button {
		white-space: nowrap;
		padding: 12px 20px;
		font-size: 0.85rem;
	}
}

/* Mobile Portrait (up to 480px) */
@media (max-width: 480px) {
	.pf-container {
		padding: 0 20px;
	}

	.pf-grid-2,
	.pf-grid-3,
	.pf-grid-4,
	.pf-feature-list {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.pf-logo {
		font-size: 0.8rem;
	}

	.pf-feature-item {
		flex-direction: column;
	}

	.pf-heading-xl {
		font-size: 1.5rem;
	}

	.pf-heading-lg {
		font-size: 1.75rem;
	}

	.pf-text-lg {
		font-size: 1.125rem;
	}

	.pf-section {
		padding: 50px 0;
	}

	.pf-card,
	.pf-team-card {
		padding: 30px 20px;
	}

	.pf-btn {
		padding: 14px 30px;
		font-size: 0.9rem;
	}

	.pf-tabs-nav {
		flex-direction: column;
	}
}

.pf-legal-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 60px 24px 80px;
}

/* === Hero Section === */
.pf-legal-hero {
	position: relative;
	text-align: center;
	padding: 80px 20px 60px;
	margin-bottom: 60px;
	overflow: hidden;
}

.pf-legal-hero-glow {
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	width: 600px;
	height: 600px;
	background: radial-gradient(
		circle,
		rgba(0, 212, 161, 0.15) 0%,
		rgba(0, 212, 161, 0) 70%
	);
	pointer-events: none;
	z-index: 0;
}

.pf-legal-title {
	font-size: 52px;
	font-weight: 800;
	color: #ffffff;
	letter-spacing: -0.02em;
	margin-bottom: 16px;
	position: relative;
	z-index: 1;
	text-shadow: 0 0 40px rgba(0, 212, 161, 0.3);
}

.pf-legal-subtitle {
	font-size: 18px;
	color: #9fa5af;
	font-weight: 400;
	position: relative;
	z-index: 1;
}

/* === Content Area === */
.pf-legal-content {
	background: #161a1f;
	border-radius: 16px;
	padding: 50px 45px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
	border: 1px solid #20252b;
	position: relative;
}

.pf-legal-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #00d4a1 0%, #2979ff 100%);
	border-radius: 16px 16px 0 0;
}

.pf-legal-intro {
	font-size: 18px;
	line-height: 1.8;
	color: #c8cdd5;
	padding: 0 0 40px 0;
	border-bottom: 2px solid #20252b;
	margin-bottom: 50px;
}

/* === Sections === */
.pf-legal-section {
	margin-bottom: 50px;
	padding-bottom: 50px;
	border-bottom: 1px solid #20252b;
}

.pf-legal-section:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.pf-legal-section-header {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 24px;
}

.pf-legal-section-number {
	font-size: 20px;
	font-weight: 700;
	color: #00d4a1;
	background: rgba(0, 212, 161, 0.1);
	border: 2px solid rgba(0, 212, 161, 0.3);
	padding: 8px 16px;
	border-radius: 8px;
	min-width: 60px;
	text-align: center;
	box-shadow: 0 0 20px rgba(0, 212, 161, 0.2);
}

.pf-legal-section-title {
	font-size: 28px;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: -0.01em;
	flex: 1;
}

.pf-legal-section-content {
	padding-left: 80px;
}

.pf-legal-section-content p {
	margin-bottom: 20px;
	color: #c8cdd5;
	font-size: 16px;
	line-height: 1.8;
}

.pf-legal-section-content p:last-child {
	margin-bottom: 0;
}

.pf-legal-section-content p strong {
	color: #ffffff;
	font-weight: 600;
}

/* === Contact Box === */
.pf-legal-contact-box {
	background: #0b0e11;
	border: 2px solid #20252b;
	border-left: 4px solid #2979ff;
	border-radius: 12px;
	padding: 24px 28px;
	margin: 30px 0;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.pf-legal-contact-box p {
	margin-bottom: 8px;
	color: #e2e6eb;
	font-size: 15px;
}

.pf-legal-contact-box p:last-child {
	margin-bottom: 0;
}

.pf-legal-contact-box strong {
	color: #00d4a1;
	font-size: 18px;
	font-weight: 600;
}

/* === Footer Note === */
.pf-legal-footer-note {
	background: rgba(0, 212, 161, 0.05);
	border: 1px solid rgba(0, 212, 161, 0.15);
	border-radius: 12px;
	padding: 28px 32px;
	margin-top: 50px;
	text-align: center;
}

.pf-legal-footer-note p {
	color: #9fa5af;
	font-size: 14px;
	line-height: 1.7;
	margin: 0;
}

/* === Responsive Design === */
@media screen and (max-width: 768px) {
	.pf-legal-container {
		padding: 40px 16px 60px;
	}

	.pf-legal-hero {
		padding: 60px 16px 40px;
		margin-bottom: 40px;
	}

	.pf-legal-hero-glow {
		width: 400px;
		height: 400px;
	}

	.pf-legal-title {
		font-size: 2rem;
	}

	.pf-legal-subtitle {
		font-size: 16px;
	}

	.pf-legal-content {
		padding: 35px 24px;
		border-radius: 12px;
	}

	.pf-legal-intro {
		font-size: 16px;
		padding-bottom: 30px;
		margin-bottom: 35px;
	}

	.pf-legal-section {
		margin-bottom: 40px;
		padding-bottom: 40px;
	}

	.pf-legal-section-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.pf-legal-section-number {
		font-size: 18px;
		padding: 6px 14px;
		min-width: 50px;
	}

	.pf-legal-section-title {
		font-size: 24px;
	}

	.pf-legal-section-content {
		padding-left: 0;
	}

	.pf-legal-contact-box {
		padding: 20px 20px;
		margin: 24px 0;
	}

	.pf-legal-footer-note {
		padding: 24px 20px;
		margin-top: 40px;
	}
}

@media screen and (max-width: 480px) {
	.pf-legal-container {
		padding: 30px 12px 50px;
	}

	.pf-legal-hero {
		padding: 50px 12px 30px;
	}

	.pf-legal-title {
		font-size: 1.3rem;
	}

	.pf-legal-subtitle {
		font-size: 15px;
	}

	.pf-legal-content {
		padding: 28px 18px;
	}

	.pf-legal-section-title {
		font-size: 22px;
	}

	.pf-legal-section-content p {
		font-size: 15px;
	}

	.pf-legal-contact-box {
		padding: 18px 16px;
	}

	.pf-legal-contact-box p {
		font-size: 14px;
	}

	.pf-legal-contact-box strong {
		font-size: 16px;
	}
}
