@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;600;700&display=swap');

/* ========== ROOT VARIABLES ========== */
:root {
	/* Colors */
	--gl-bg-primary: #f5f8fa;
	--gl-bg-card: #ffffff;
	--gl-accent-blue: #2563eb;
	--gl-accent-purple: #7c3aed;
	--gl-accent-cyan: #0ea5e9;
	--gl-text-primary: #1e293b;
	--gl-text-secondary: #475569;
	--gl-divider: #cbd5e1;
	--gl-border-light: #e2e8f0;

	/* Gradients */
	--gl-gradient-primary: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
	--gl-gradient-secondary: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
	--gl-gradient-accent: linear-gradient(135deg, #7c3aed 0%, #c026d3 100%);

	/* Shadows */
	--gl-shadow-sm: 0 2px 8px rgba(37, 99, 235, 0.08);
	--gl-shadow-md: 0 4px 16px rgba(37, 99, 235, 0.12);
	--gl-shadow-lg: 0 8px 32px rgba(37, 99, 235, 0.16);
	--gl-shadow-glow: 0 0 32px rgba(124, 58, 237, 0.25);

	/* Transitions */
	--gl-transition: 0.3s ease-in-out;
	--gl-transition-slow: 0.5s ease-in-out;

	/* Spacing */
	--gl-spacing-xs: 8px;
	--gl-spacing-sm: 16px;
	--gl-spacing-md: 24px;
	--gl-spacing-lg: 32px;
	--gl-spacing-xl: 48px;
	--gl-spacing-2xl: 64px;
	--gl-spacing-3xl: 96px;

	/* Border Radius */
	--gl-radius-sm: 8px;
	--gl-radius-md: 12px;
	--gl-radius-lg: 16px;
	--gl-radius-xl: 24px;

	/* Typography */
	--gl-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	--gl-font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ========== RESET & BASE ========== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
	font-size: 16px;
}

body {
	font-family: var(--gl-font-primary);
	background-color: var(--gl-bg-primary);
	color: var(--gl-text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--gl-transition);
}

ul,
ol {
	list-style: none;
}

button {
	border: none;
	background: none;
	cursor: pointer;
	font-family: inherit;
}

/* ========== TYPOGRAPHY ========== */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--gl-font-heading);
	font-weight: 600;
	line-height: 1.2;
	color: var(--gl-text-primary);
}

.gl-h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	letter-spacing: -0.02em;
}

.gl-h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 600;
	letter-spacing: -0.01em;
}

.gl-h3 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 600;
}

.gl-h4 {
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	font-weight: 600;
}

.gl-body-lg {
	font-size: 1.125rem;
	line-height: 1.7;
}

.gl-body {
	font-size: 1rem;
	line-height: 1.6;
}

.gl-body-sm {
	font-size: 0.875rem;
	line-height: 1.5;
}

.gl-text-primary {
	color: var(--gl-text-primary);
}

.gl-text-secondary {
	color: var(--gl-text-secondary);
}

.gl-text-gradient {
	background: var(--gl-gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ========== LAYOUT ========== */
.gl-container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 var(--gl-spacing-md);
}

.gl-container-wide {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 var(--gl-spacing-md);
}

.gl-container-narrow {
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	padding: 0 var(--gl-spacing-md);
}

.gl-section {
	padding: var(--gl-spacing-3xl) 0;
}

.gl-section-sm {
	padding: var(--gl-spacing-2xl) 0;
}

.gl-section-lg {
	padding: 120px 0;
}

/* ========== HEADER ========== */
.gl-header {
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 40px);
	max-width: 1240px;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-radius: var(--gl-radius-lg);
	padding: var(--gl-spacing-sm) var(--gl-spacing-md);
	z-index: 1000;
	transition: var(--gl-transition);
	box-shadow: var(--gl-shadow-sm);
}

.gl-header.scrolled {
	box-shadow: var(--gl-shadow-md);
	background: rgba(255, 255, 255, 0.95);
}

.gl-header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.gl-logo {
	font-family: var(--gl-font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	background: var(--gl-gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transition: var(--gl-transition);
}

.gl-logo:hover {
	transform: scale(1.05);
}

.gl-nav {
	display: flex;
	align-items: center;
	gap: var(--gl-spacing-lg);
}

.gl-nav-link {
	font-weight: 500;
	color: var(--gl-text-primary);
	position: relative;
	padding: 8px 0;
	transition: var(--gl-transition);
}

.gl-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gl-gradient-primary);
	transition: var(--gl-transition);
}

.gl-nav-link:hover {
	color: var(--gl-accent-blue);
}

.gl-nav-link:hover::after {
	width: 100%;
}

.gl-nav-link.active {
	color: var(--gl-accent-blue);
}

.gl-nav-link.active::after {
	width: 100%;
}

.gl-burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 8px;
}

.gl-burger span {
	width: 24px;
	height: 2px;
	background: var(--gl-text-primary);
	transition: var(--gl-transition);
}

.gl-burger.active span:nth-child(1) {
	transform: rotate(45deg) translate(4px, 3px);
}

.gl-burger.active span:nth-child(2) {
	opacity: 0;
}

.gl-burger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.gl-mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	max-width: 320px;
	height: 100vh;
	background: var(--gl-bg-card);
	padding: var(--gl-spacing-2xl) var(--gl-spacing-lg);
	box-shadow: var(--gl-shadow-lg);
	transition: var(--gl-transition);
	z-index: 999;
}

.gl-mobile-menu.active {
	right: 0;
}

.gl-mobile-nav {
	display: flex;
	flex-direction: column;
	gap: var(--gl-spacing-md);
	margin-top: var(--gl-spacing-2xl);
}

.gl-mobile-nav .gl-nav-link {
	font-size: 1.125rem;
}

/* ========== FOOTER ========== */
.gl-footer {
	background: #eef2f6;
	padding: var(--gl-spacing-2xl) 0 var(--gl-spacing-lg);
	border-top: 1px solid var(--gl-divider);
}

.gl-footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: var(--gl-spacing-xl);
	margin-bottom: var(--gl-spacing-xl);
}

.gl-footer-col h4 {
	font-size: 1.125rem;
	margin-bottom: var(--gl-spacing-sm);
	color: var(--gl-text-primary);
}

.gl-footer-col p {
	color: var(--gl-text-secondary);
	margin-bottom: var(--gl-spacing-sm);
	line-height: 1.7;
}

.gl-footer-links {
	display: flex;
	flex-direction: column;
	gap: var(--gl-spacing-xs);
}

.gl-footer-link {
	color: var(--gl-text-secondary);
	transition: var(--gl-transition);
	display: inline-block;
}

.gl-footer-link:hover {
	color: var(--gl-accent-blue);
	transform: translateX(4px);
}

.gl-footer-bottom {
	text-align: center;
	padding-top: var(--gl-spacing-lg);
	border-top: 1px solid var(--gl-divider);
	color: var(--gl-text-secondary);
	font-size: 0.875rem;
}

/* ========== BUTTONS ========== */
.gl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--gl-spacing-xs);
	padding: 14px 32px;
	border-radius: var(--gl-radius-md);
	font-weight: 600;
	font-size: 1rem;
	transition: var(--gl-transition);
	cursor: pointer;
	border: none;
	text-align: center;
}

.gl-btn-primary {
	background: var(--gl-gradient-primary);
	color: white;
	box-shadow: var(--gl-shadow-sm);
}

.gl-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--gl-shadow-md);
}

.gl-btn-secondary {
	background: var(--gl-bg-card);
	color: var(--gl-accent-blue);
	border: 2px solid var(--gl-accent-blue);
}

.gl-btn-secondary:hover {
	background: var(--gl-accent-blue);
	color: white;
	transform: translateY(-2px);
}

.gl-btn-outline {
	background: transparent;
	color: var(--gl-text-primary);
	border: 2px solid var(--gl-border-light);
}

.gl-btn-outline:hover {
	border-color: var(--gl-accent-blue);
	color: var(--gl-accent-blue);
	transform: translateY(-2px);
}

.gl-btn-lg {
	padding: 18px 40px;
	font-size: 1.125rem;
}

.gl-btn-sm {
	padding: 10px 24px;
	font-size: 0.875rem;
}

/* ========== CARDS ========== */
.gl-card {
	background: var(--gl-bg-card);
	border-radius: var(--gl-radius-lg);
	padding: var(--gl-spacing-lg);
	box-shadow: var(--gl-shadow-sm);
	transition: var(--gl-transition);
	border: 1px solid var(--gl-border-light);
}

.gl-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--gl-shadow-md);
}

.gl-card-header {
	margin-bottom: var(--gl-spacing-md);
}

.gl-card-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: var(--gl-spacing-xs);
}

.gl-card-description {
	color: var(--gl-text-secondary);
	line-height: 1.6;
}

.gl-card-icon {
	width: 56px;
	height: 56px;
	border-radius: var(--gl-radius-md);
	background: var(--gl-gradient-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5rem;
	margin-bottom: var(--gl-spacing-md);
}

/* ========== GRID ========== */
.gl-grid {
	display: grid;
	gap: var(--gl-spacing-lg);
}

.gl-grid-2 {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.gl-grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.gl-grid-4 {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* ========== HERO SECTION ========== */
.gl-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding-top: 100px;
	background: linear-gradient(
			135deg,
			rgba(37, 99, 235, 0.05) 0%,
			rgba(124, 58, 237, 0.05) 100%
		),
		var(--gl-bg-primary);
	position: relative;
	overflow: hidden;
}

.gl-hero::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: url('assets/gl-hero.webp') center/cover;
	opacity: 0.3;
}

.gl-hero::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(
		circle,
		rgba(37, 99, 235, 0.15) 0%,
		transparent 70%
	);
	border-radius: 50%;
	animation: gl-float 15s ease-in-out infinite reverse;
}

.gl-hero-content {
	position: relative;
	z-index: 1;
	max-width: 900px;
	margin: 0 auto;
}

.gl-hero-title {
	margin-bottom: var(--gl-spacing-md);
	animation: gl-fade-up 0.8s ease-out;
}

.gl-hero-subtitle {
	font-size: 1.25rem;
	color: var(--gl-text-secondary);
	margin-bottom: var(--gl-spacing-xl);
	line-height: 1.7;
	animation: gl-fade-up 1s ease-out;
}

.gl-hero-buttons {
	display: flex;
	gap: var(--gl-spacing-md);
	justify-content: center;
	flex-wrap: wrap;
	animation: gl-fade-up 1.2s ease-out;
}

/* ========== SECTION HEADERS ========== */
.gl-section-header {
	text-align: center;
	margin-bottom: var(--gl-spacing-2xl);
}

.gl-section-title {
	margin-bottom: var(--gl-spacing-sm);
}

.gl-section-subtitle {
	color: var(--gl-text-secondary);
	font-size: 1.125rem;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.7;
}

/* ========== FEATURE CARDS ========== */
.gl-feature-card {
	background: var(--gl-bg-card);
	border-radius: var(--gl-radius-lg);
	padding: var(--gl-spacing-xl);
	box-shadow: var(--gl-shadow-sm);
	transition: var(--gl-transition);
	border: 1px solid var(--gl-border-light);
	position: relative;
	overflow: hidden;
}

.gl-feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: var(--gl-gradient-primary);
	transform: scaleX(0);
	transform-origin: left;
	transition: var(--gl-transition);
}

.gl-feature-card:hover::before {
	transform: scaleX(1);
}

.gl-feature-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--gl-shadow-lg);
}

.gl-feature-icon {
	width: 64px;
	height: 64px;
	border-radius: var(--gl-radius-md);
	background: var(--gl-gradient-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 2rem;
	margin-bottom: var(--gl-spacing-md);
}

.gl-feature-title {
	font-size: 1.5rem;
	margin-bottom: var(--gl-spacing-sm);
}

.gl-feature-description {
	color: var(--gl-text-secondary);
	line-height: 1.7;
}

/* ========== TEAM CARDS ========== */
.gl-team-card {
	background: var(--gl-bg-card);
	border-radius: var(--gl-radius-lg);
	overflow: hidden;
	box-shadow: var(--gl-shadow-sm);
	transition: var(--gl-transition);
	border: 1px solid var(--gl-border-light);
}

.gl-team-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--gl-shadow-lg);
}

.gl-team-image {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	margin: 2rem auto;
	background: var(--gl-gradient-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
	color: white;
}

.gl-team-image img {
	border-radius: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gl-team-content {
	padding: var(--gl-spacing-lg);
	text-align: center;
}

.gl-team-name {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: var(--gl-spacing-xs);
}

.gl-team-role {
	color: var(--gl-accent-blue);
	font-weight: 500;
	margin-bottom: var(--gl-spacing-xs);
}

.gl-team-location {
	color: var(--gl-text-secondary);
	font-size: 0.875rem;
}

/* ========== PROCESS STEPS ========== */
.gl-process {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: var(--gl-spacing-xl);
	position: relative;
}

.gl-process::before {
	content: '';
	position: absolute;
	top: 40px;
	left: 10%;
	right: 10%;
	height: 2px;
	background: linear-gradient(
		90deg,
		var(--gl-accent-blue),
		var(--gl-accent-purple)
	);
	z-index: 0;
}

.gl-process-step {
	position: relative;
	z-index: 1;
	text-align: center;
}

.gl-process-number {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: var(--gl-gradient-primary);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: 700;
	margin: 0 auto var(--gl-spacing-md);
	box-shadow: var(--gl-shadow-md);
}

.gl-process-title {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: var(--gl-spacing-xs);
}

.gl-process-description {
	color: var(--gl-text-secondary);
	font-size: 0.875rem;
	line-height: 1.6;
}

/* ========== CHARTS ========== */
.gl-chart-container {
	background: var(--gl-bg-card);
	border-radius: var(--gl-radius-lg);
	padding: var(--gl-spacing-xl);
	box-shadow: var(--gl-shadow-sm);
	border: 1px solid var(--gl-border-light);
	margin-bottom: var(--gl-spacing-xl);
}

.gl-chart-header {
	margin-bottom: var(--gl-spacing-lg);
}

.gl-chart-title {
	font-size: 1.5rem;
	margin-bottom: var(--gl-spacing-xs);
}

.gl-chart-description {
	color: var(--gl-text-secondary);
	line-height: 1.6;
}

.gl-chart-canvas {
	width: 100%;
	height: 400px;
}

.gl-chart-canvas canvas,
#candlestickChart,
.tv-lightweight-charts,
.tv-lightweight-charts table {
	width: 100% !important;
	height: 100% !important;
	max-height: 400px;
}

/* ========== FORM ========== */
.gl-form {
	display: flex;
	flex-direction: column;
	gap: var(--gl-spacing-md);
}

.gl-form-group {
	display: flex;
	flex-direction: column;
	gap: var(--gl-spacing-xs);
}

.gl-label {
	font-weight: 500;
	color: var(--gl-text-primary);
	font-size: 0.875rem;
}

.gl-input,
.gl-textarea {
	padding: 14px 16px;
	border: 2px solid var(--gl-border-light);
	border-radius: var(--gl-radius-md);
	font-family: var(--gl-font-primary);
	font-size: 1rem;
	color: var(--gl-text-primary);
	background: var(--gl-bg-card);
	transition: var(--gl-transition);
}

.gl-input:focus,
.gl-textarea:focus {
	outline: none;
	border-color: var(--gl-accent-blue);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.gl-input.error,
.gl-textarea.error {
	border-color: #ef4444;
}

.gl-textarea {
	min-height: 150px;
	resize: vertical;
}

.gl-error-message {
	color: #ef4444;
	font-size: 0.875rem;
	margin-top: 4px;
}

.gl-success-message {
	color: #10b981;
	font-size: 0.875rem;
	margin-top: 4px;
}

/* ========== CONTACT SECTION ========== */
.gl-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--gl-spacing-2xl);
}

.gl-contact-info {
	background: var(--gl-bg-card);
	border-radius: var(--gl-radius-lg);
	padding: var(--gl-spacing-xl);
	box-shadow: var(--gl-shadow-sm);
	border: 1px solid var(--gl-border-light);
}

.gl-contact-item {
	display: flex;
	gap: var(--gl-spacing-md);
	margin-bottom: var(--gl-spacing-lg);
}

.gl-contact-icon {
	width: 48px;
	height: 48px;
	border-radius: var(--gl-radius-md);
	background: var(--gl-gradient-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	flex-shrink: 0;
}

.gl-contact-details h4 {
	font-size: 1rem;
	margin-bottom: 4px;
}

.gl-contact-details p {
	color: var(--gl-text-secondary);
	line-height: 1.6;
}

.gl-map {
	height: 100%;
	min-height: 400px;

	border-radius: 0.5rem;

	overflow: hidden;
}

@media (max-width: 768px) {
	.gl-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.gl-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 0.5rem;
	/* overflow: hidden; */
}

.gl-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 ========== */
.gl-cookie-popup {
	position: fixed;
	bottom: -100%;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 40px);
	max-width: 600px;
	background: var(--gl-bg-card);
	border-radius: var(--gl-radius-lg);
	padding: var(--gl-spacing-lg);
	box-shadow: var(--gl-shadow-lg);
	z-index: 9999;
	transition: var(--gl-transition);
	border: 1px solid var(--gl-border-light);
}

.gl-cookie-popup.show {
	bottom: 20px;
}

.gl-cookie-content {
	margin-bottom: var(--gl-spacing-md);
}

.gl-cookie-title {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: var(--gl-spacing-xs);
}

.gl-cookie-text {
	color: var(--gl-text-secondary);
	font-size: 0.875rem;
	line-height: 1.6;
}

.gl-cookie-text a {
	color: var(--gl-accent-blue);
	text-decoration: underline;
}

.gl-cookie-buttons {
	display: flex;
	gap: var(--gl-spacing-sm);
	justify-content: flex-end;
}

/* ========== TABS ========== */
.gl-tabs {
	margin-bottom: var(--gl-spacing-xl);
}

.gl-tab-list {
	display: flex;
	gap: var(--gl-spacing-sm);
	border-bottom: 2px solid var(--gl-border-light);
	margin-bottom: var(--gl-spacing-lg);
	flex-wrap: wrap;
}

.gl-tab-button {
	padding: 12px 24px;
	font-weight: 500;
	color: var(--gl-text-secondary);
	background: transparent;
	border: none;
	border-bottom: 2px solid transparent;
	margin-bottom: -2px;
	cursor: pointer;
	transition: var(--gl-transition);
}

.gl-tab-button:hover {
	color: var(--gl-accent-blue);
}

.gl-tab-button.active {
	color: var(--gl-accent-blue);
	border-bottom-color: var(--gl-accent-blue);
}

.gl-tab-content {
	display: none;
	animation: gl-fade-in 0.3s ease-out;
}

.gl-tab-content.active {
	display: block;
}

/* ========== ACCORDION ========== */
.gl-accordion {
	background: var(--gl-bg-card);
	border-radius: var(--gl-radius-lg);
	overflow: hidden;
	border: 1px solid var(--gl-border-light);
}

.gl-accordion-item {
	border-bottom: 1px solid var(--gl-border-light);
}

.gl-accordion-item:last-child {
	border-bottom: none;
}

.gl-accordion-header {
	width: 100%;
	padding: var(--gl-spacing-md);
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	background: transparent;
	border: none;
	text-align: left;
	font-weight: 600;
	color: var(--gl-text-primary);
	transition: var(--gl-transition);
}

.gl-accordion-header:hover {
	background: rgba(37, 99, 235, 0.05);
}

.gl-accordion-icon {
	transition: var(--gl-transition);
	color: var(--gl-accent-blue);
}

.gl-accordion-header.active .gl-accordion-icon {
	transform: rotate(180deg);
}

.gl-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
}

.gl-accordion-content-inner {
	padding: 1rem var(--gl-spacing-md) var(--gl-spacing-md);
	color: var(--gl-text-secondary);
	line-height: 1.7;
}

/* ========== COMPARISON TABLE ========== */
.gl-comparison-table {
	background: var(--gl-bg-card);
	border-radius: var(--gl-radius-lg);
	overflow-x: auto;
	box-shadow: var(--gl-shadow-sm);
	border: 1px solid var(--gl-border-light);
}

.gl-table {
	width: 100%;
	border-collapse: collapse;
}

.gl-table thead {
	background: var(--gl-gradient-primary);
	color: white;
}

.gl-table th {
	padding: var(--gl-spacing-md);
	text-align: left;
	font-weight: 600;
}

.gl-table td {
	padding: var(--gl-spacing-md);
	border-bottom: 1px solid var(--gl-border-light);
}

.gl-table tbody tr:last-child td {
	border-bottom: none;
}

.gl-table tbody tr:hover {
	background: rgba(37, 99, 235, 0.03);
}

/* ========== BADGES ========== */
.gl-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 100px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.gl-badge-blue {
	background: rgba(37, 99, 235, 0.1);
	color: var(--gl-accent-blue);
}

.gl-badge-purple {
	background: rgba(124, 58, 237, 0.1);
	color: var(--gl-accent-purple);
}

.gl-badge-cyan {
	background: rgba(14, 165, 233, 0.1);
	color: var(--gl-accent-cyan);
}

/* ========== ANIMATIONS ========== */
@keyframes gl-fade-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes gl-fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes gl-slide-left {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes gl-slide-right {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes gl-float {
	0%,
	100% {
		transform: translateY(0) scale(1);
	}
	50% {
		transform: translateY(-20px) scale(1.05);
	}
}

@keyframes gl-pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}

@keyframes gl-glow {
	0%,
	100% {
		box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
	}
	50% {
		box-shadow: 0 0 40px rgba(124, 58, 237, 0.6);
	}
}

/* Scroll Animations */
.gl-animate-fade-up {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.gl-animate-fade-up.visible {
	opacity: 1;
	transform: translateY(0);
}

.gl-animate-slide-left {
	opacity: 0;
	transform: translateX(-30px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.gl-animate-slide-left.visible {
	opacity: 1;
	transform: translateX(0);
}

.gl-animate-slide-right {
	opacity: 0;
	transform: translateX(30px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.gl-animate-slide-right.visible {
	opacity: 1;
	transform: translateX(0);
}

/* ========== UTILITIES ========== */
.gl-text-center {
	text-align: center;
}

.gl-text-left {
	text-align: left;
}

.gl-text-right {
	text-align: right;
}

.gl-mb-xs {
	margin-bottom: var(--gl-spacing-xs);
}
.gl-mb-sm {
	margin-bottom: var(--gl-spacing-sm);
}
.gl-mb-md {
	margin-bottom: var(--gl-spacing-md);
}
.gl-mb-lg {
	margin-bottom: var(--gl-spacing-lg);
}
.gl-mb-xl {
	margin-bottom: var(--gl-spacing-xl);
}
.gl-mb-2xl {
	margin-bottom: var(--gl-spacing-2xl);
}

.gl-mt-xs {
	margin-top: var(--gl-spacing-xs);
}
.gl-mt-sm {
	margin-top: var(--gl-spacing-sm);
}
.gl-mt-md {
	margin-top: var(--gl-spacing-md);
}
.gl-mt-lg {
	margin-top: var(--gl-spacing-lg);
}
.gl-mt-xl {
	margin-top: var(--gl-spacing-xl);
}
.gl-mt-2xl {
	margin-top: var(--gl-spacing-2xl);
}

.gl-hidden {
	display: none;
}

.gl-visible {
	display: block;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
	.gl-h1 {
		font-size: 2.5rem;
	}

	.gl-h2 {
		font-size: 2rem;
	}

	.gl-section {
		padding: var(--gl-spacing-2xl) 0;
	}

	.gl-contact-grid {
		grid-template-columns: 1fr;
	}

	.gl-grid-4 {
		grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	}

	.gl-process::before {
		display: none;
	}
}

@media (max-width: 768px) {
	.gl-header {
		top: 10px;
		width: calc(100% - 20px);
		padding: var(--gl-spacing-sm);
	}

	.gl-nav {
		display: none;
	}

	.gl-burger {
		display: flex;
	}

	.gl-hero {
		padding-top: 80px;
	}

	.gl-hero-buttons {
		flex-direction: column;
	}

	.gl-btn {
		width: 100%;
	}

	.gl-section {
		padding: var(--gl-spacing-xl) 0;
	}

	.gl-grid-2,
	.gl-grid-3,
	.gl-grid-4 {
		grid-template-columns: 1fr;
	}

	.gl-footer-grid {
		grid-template-columns: 1fr;
		gap: var(--gl-spacing-lg);
	}

	.gl-tab-list {
		flex-direction: column;
	}

	.gl-table {
		font-size: 0.875rem;
	}

	.gl-table th,
	.gl-table td {
		padding: var(--gl-spacing-sm);
	}

	.gl-cookie-popup {
		width: calc(100% - 20px);
		padding: var(--gl-spacing-md);
	}

	.gl-cookie-buttons {
		flex-direction: column;
	}
}

@media (max-width: 480px) {
	.gl-h1 {
		font-size: 2rem;
	}

	.gl-h2 {
		font-size: 1.5rem;
	}

	.gl-container,
	.gl-container-wide,
	.gl-container-narrow {
		padding: 0 var(--gl-spacing-sm);
	}

	.gl-card,
	.gl-feature-card {
		padding: var(--gl-spacing-md);
	}

	.gl-chart-container {
		padding: var(--gl-spacing-md);
	}

	.gl-chart-canvas {
		height: 300px;
	}

	.gl-contact-item {
		flex-direction: column;
	}

	.gl-contact-info {
		padding: 1.5rem;
	}

	.gl-contact-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}
}

.gl-legal-container {
	max-width: 900px;
	margin: 150px auto;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08),
		0 1px 4px rgba(14, 165, 233, 0.06);
	overflow: hidden;
	transition: box-shadow 0.3s ease;
}

.gl-legal-container:hover {
	box-shadow: 0 8px 30px rgba(37, 99, 235, 0.12),
		0 2px 8px rgba(14, 165, 233, 0.08);
}

/* Header com gradiente digital */
.gl-legal-header {
	background: linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #0ea5e9 100%);
	padding: 50px 40px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.gl-legal-header::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.15) 0%,
		transparent 70%
	);
	animation: gl-legal-shimmer 8s linear infinite;
}

@keyframes gl-legal-shimmer {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

.gl-legal-title {
	font-size: 42px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 12px;
	position: relative;
	z-index: 1;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
	letter-spacing: -0.5px;
}

.gl-legal-subtitle {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 8px;
	position: relative;
	z-index: 1;
	font-weight: 500;
}

.gl-legal-date {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.85);
	position: relative;
	z-index: 1;
	font-weight: 400;
}

/* Área de conteúdo */
.gl-legal-content {
	padding: 50px 40px;
}

/* Seções */
.gl-legal-section {
	margin-bottom: 45px;
	padding-bottom: 40px;
	border-bottom: 1px solid #cbd5e1;
}

.gl-legal-section:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.gl-legal-section-title {
	font-size: 26px;
	font-weight: 700;
	color: #2563eb;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	position: relative;
	padding-left: 20px;
}

.gl-legal-section-title::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 28px;
	background: linear-gradient(180deg, #2563eb 0%, #7c3aed 100%);
	border-radius: 2px;
	box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

/* Subseções */
.gl-legal-subsection {
	margin-top: 25px;
	margin-bottom: 25px;
	padding-left: 20px;
	border-left: 2px solid #0ea5e9;
	background: linear-gradient(
		90deg,
		rgba(14, 165, 233, 0.03) 0%,
		transparent 100%
	);
	padding: 15px 20px;
	border-radius: 4px;
}

.gl-legal-subsection-title {
	font-size: 20px;
	font-weight: 600;
	color: #7c3aed;
	margin-bottom: 12px;
}

/* Texto */
.gl-legal-text {
	font-size: 16px;
	line-height: 1.8;
	color: #475569;
	margin-bottom: 16px;
	text-align: justify;
}

.gl-legal-text:last-child {
	margin-bottom: 0;
}

.gl-legal-text strong {
	color: #1e293b;
	font-weight: 600;
}

.gl-legal-text em {
	color: #0ea5e9;
	font-style: normal;
	font-weight: 500;
}

/* Footer */
.gl-legal-footer {
	background: linear-gradient(135deg, #f5f8fa 0%, #e2e8f0 100%);
	padding: 35px 40px;
	text-align: center;
	border-top: 2px solid #cbd5e1;
}

.gl-legal-footer-text {
	font-size: 14px;
	color: #475569;
	margin-bottom: 6px;
}

.gl-legal-footer-text:last-child {
	margin-bottom: 0;
}

.gl-legal-footer-text strong {
	color: #2563eb;
	font-weight: 600;
}

/* Links */
.gl-legal-content a {
	color: #2563eb;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: all 0.3s ease;
	font-weight: 500;
}

.gl-legal-content a:hover {
	color: #7c3aed;
	border-bottom-color: #7c3aed;
}

/* Responsividade para tablets */
@media (max-width: 768px) {
	.gl-legal-body {
		padding: 20px 15px;
	}

	.gl-legal-container {
		border-radius: 8px;
		margin: 150px 20px;
	}

	.gl-legal-header {
		padding: 40px 25px;
	}

	.gl-legal-title {
		font-size: 2rem;
	}

	.gl-legal-subtitle {
		font-size: 16px;
	}

	.gl-legal-content {
		padding: 35px 25px;
	}

	.gl-legal-section {
		margin-bottom: 35px;
		padding-bottom: 30px;
	}

	.gl-legal-section-title {
		font-size: 22px;
		padding-left: 16px;
	}

	.gl-legal-section-title::before {
		width: 3px;
		height: 24px;
	}

	.gl-legal-subsection {
		padding: 12px 16px;
		padding-left: 16px;
	}

	.gl-legal-subsection-title {
		font-size: 18px;
	}

	.gl-legal-text {
		font-size: 15px;
		text-align: left;
	}

	.gl-legal-footer {
		padding: 25px 20px;
	}
}

/* Responsividade para smartphones */
@media (max-width: 480px) {
	.gl-legal-body {
		padding: 15px 10px;
		font-size: 15px;
	}

	.gl-legal-container {
		border-radius: 6px;
	}

	.gl-legal-header {
		padding: 30px 20px;
	}

	.gl-legal-title {
		font-size: 1.3rem;
		letter-spacing: -0.3px;
	}

	.gl-legal-subtitle {
		font-size: 15px;
	}

	.gl-legal-date {
		font-size: 13px;
	}

	.gl-legal-content {
		padding: 25px 20px;
	}

	.gl-legal-section {
		margin-bottom: 30px;
		padding-bottom: 25px;
	}

	.gl-legal-section-title {
		font-size: 20px;
		padding-left: 14px;
		line-height: 1.3;
	}

	.gl-legal-section-title::before {
		width: 3px;
		height: 22px;
	}

	.gl-legal-subsection {
		padding: 10px 14px;
		margin-top: 20px;
		margin-bottom: 20px;
	}

	.gl-legal-subsection-title {
		font-size: 17px;
		line-height: 1.4;
	}

	.gl-legal-text {
		font-size: 14px;
		line-height: 1.7;
		text-align: left;
		margin-bottom: 14px;
	}

	.gl-legal-footer {
		padding: 20px 15px;
	}

	.gl-legal-footer-text {
		font-size: 13px;
		line-height: 1.6;
	}
}
