* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background-color: #fffbea;
	color: #2c2c2c;
	line-height: 1.6;
	overflow-x: hidden;
}

/* Typography */
.gp-title-xl {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
}

.gp-title-lg {
	font-size: 2.5rem;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 1rem;
}

.gp-title-md {
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 0.75rem;
}

.gp-title-sm {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 0.5rem;
}

.gp-subtitle {
	font-size: 1.25rem;
	font-weight: 400;
	color: #666;
	margin-bottom: 2rem;
}

.gp-text {
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.gp-text-sm {
	font-size: 0.875rem;
	line-height: 1.5;
}

/* Container & Layout */
.gp-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.gp-section {
	padding: 5rem 0;
	min-height: 100vh;
	/* display: flex; */
	align-items: center;
}

.gp-split-screen {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	min-height: 80vh;
}

.gp-grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.gp-grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.gp-grid-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

/* Header Styles */
.gp-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 251, 234, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(10, 116, 218, 0.1);
	z-index: 1000;
	padding: 1rem 0;
	transition: all 0.3s ease;
}

.gp-header.gp-scrolled {
	background: rgba(255, 251, 234, 0.98);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.gp-header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.gp-logo {
	font-size: 1.75rem;
	font-weight: 700;
	color: #0a74da;
	text-decoration: none;
	transition: all 0.3s ease;
}

.gp-logo:hover {
	transform: scale(1.05);
	color: #7fdbda;
}

.gp-nav {
	display: flex;
	align-items: center;
	list-style: none;
	gap: 5px;
}

.gp-nav-link {
	text-decoration: none;
	color: #2c2c2c;
	font-weight: 500;
	padding: 0.5rem 1rem;
	border-radius: 25px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.gp-nav-link:hover {
	color: #0a74da;
	background-color: rgba(10, 116, 218, 0.1);
	transform: translateY(-2px);
}

.gp-mobile-menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 0.5rem;
	background: none;
	border: none;
	transition: all 0.3s ease;
}

.gp-mobile-menu-toggle span {
	width: 25px;
	height: 3px;
	background: #0a74da;
	margin: 3px 0;
	transition: all 0.3s ease;
	transform-origin: center;
}

.gp-mobile-menu-toggle.gp-active span:nth-child(1) {
	transform: rotate(45deg) translate(7px, 7px);
}

.gp-mobile-menu-toggle.gp-active span:nth-child(2) {
	opacity: 0;
}

.gp-mobile-menu-toggle.gp-active span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

.gp-mobile-nav {
	position: fixed;
	top: 100%;
	left: 0;
	right: 0;
	background: rgba(255, 251, 234, 0.98);
	backdrop-filter: blur(20px);
	border-top: 1px solid rgba(10, 116, 218, 0.1);
	transform: translateY(-100%);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 999;
	padding: 2rem 0;
	text-align: center;
}

.gp-mobile-nav.gp-active {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

.gp-mobile-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	text-align: center;
	gap: 1rem;
	align-items: center;
}

.gp-mobile-nav .gp-nav-link {
	font-size: 1.1rem;
	padding: 1rem 2rem;
	border-radius: 30px;
	width: 100%;
	text-align: center;
	display: block;
}

.gp-mobile-nav .gp-nav-link:hover {
	background: linear-gradient(135deg, #0a74da, #7fdbda);
	color: white;
	transform: scale(1.05);
}

/* Button Styles */
.gp-btn {
	display: inline-block;
	padding: 1rem 2rem;
	border: none;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.gp-btn-primary {
	background: linear-gradient(135deg, #0a74da, #7fdbda);
	color: white;
	box-shadow: 0 4px 15px rgba(10, 116, 218, 0.3);
}

.gp-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(10, 116, 218, 0.4);
	background: linear-gradient(135deg, #085bb3, #6bc5c4);
}

.gp-btn-secondary {
	background: transparent;
	color: #0a74da;
	border: 2px solid #0a74da;
}

.gp-btn-secondary:hover {
	background: #0a74da;
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(10, 116, 218, 0.3);
}

.gp-btn-ghost {
	background: transparent;
	color: #2c2c2c;
	border: 2px solid transparent;
}

.gp-btn-ghost:hover {
	border-color: #7fdbda;
	color: #0a74da;
	transform: translateY(-2px);
}

.gp-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none !important;
}

/* Card Styles */
.gp-card {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.gp-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #0a74da, #7fdbda);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.gp-card:hover::before {
	transform: scaleX(1);
}

.gp-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	background: rgba(255, 255, 255, 0.9);
}

.gp-card-icon {
	font-size: 3rem;
	color: #0a74da;
	margin-bottom: 1rem;
	display: block;
	transition: all 0.3s ease;
}

.gp-card:hover .gp-card-icon {
	color: #7fdbda;
	transform: scale(1.1);
}

/* Hero Section */
.gp-hero {
	background: linear-gradient(
		135deg,
		#fffbea 0%,
		rgba(127, 219, 218, 0.1) 100%
	);
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.gp-hero-visual {
	width: 100%;
	height: 100%;
}

.gp-hero-visual img {
	object-fit: cover;
	width: 100%;

	height: 100%;
}

.gp-hero-content {
	flex: 1;
	z-index: 2;
}

.gp-hero-title {
	font-size: 4rem;
	font-weight: 800;
	background: linear-gradient(135deg, #0a74da, #7fdbda);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1.5rem;
	animation: gp-fade-in-up 1s ease;
}

.gp-hero-subtitle {
	font-size: 1.5rem;
	color: #666;
	margin-bottom: 3rem;
	animation: gp-fade-in-up 1s ease 0.2s both;
}

.gp-hero-buttons {
	display: flex;
	gap: 1rem;
	animation: gp-fade-in-up 1s ease 0.4s both;
}

/* Why Section */
.gp-why {
	background: linear-gradient(
		45deg,
		rgba(127, 219, 218, 0.05),
		rgba(10, 116, 218, 0.05)
	);
	position: relative;
}

.gp-why-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
	margin-top: 3rem;
}

.gp-why-card {
	text-align: center;
	padding: 3rem 2rem;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.gp-why-link {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.gp-why-link a {
	margin-top: auto;
}

.gp-why-icon {
	font-size: 4rem;
	color: #0a74da;
	margin-bottom: 2rem;
	display: block;
	transition: all 0.3s ease;
}

.gp-why-card:hover .gp-why-icon {
	color: #7fdbda;
	transform: scale(1.2) rotate(10deg);
}

/* Workshops Section */
.gp-workshops {
	background: linear-gradient(
			45deg,
			rgba(127, 219, 218, 0.8),
			rgba(10, 116, 218, 0.5)
		),
		url('assets/en-bg-workshop.webp') center/cover;
	position: relative;
	background-attachment: fixed;
	overflow: hidden;
}

.gp-workshops-carousel {
	display: grid;
	gap: 2rem;

	padding: 2rem 0;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.gp-workshops-carousel::-webkit-scrollbar {
	display: none;
}

.gp-workshop-card {
	width: 100%;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(15px);
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	flex-shrink: 0;
	cursor: pointer;
}

.gp-workshop-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, #0a74da, #7fdbda);
}

.gp-workshop-date {
	color: #0a74da;
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 1rem;
}

.gp-workshop-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #2c2c2c;
}

.gp-workshop-instructor {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin: 1.5rem 0;
}

.gp-instructor-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(135deg, #0a74da, #7fdbda);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	font-size: 1.2rem;
	flex-shrink: 0;
}

.gp-instructor-avatar img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.gp-instructor-name {
	font-weight: 500;
	color: #2c2c2c;
}

/* Dashboard Section */
/* Dashboard Section */
.gp-dashboard {
	background: linear-gradient(
		135deg,
		rgba(10, 116, 218, 0.05),
		rgba(127, 219, 218, 0.05)
	);
	text-align: center;
}

.gp-dashboard-demo {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(20px);
	border-radius: 25px;
	padding: 3rem;
	margin: 3rem 0;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
}

.gp-progress-chart {
	width: 100%;
	height: 300px;
	margin: 2rem 0;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.gp-progress-ring {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background: conic-gradient(#0a74da 0deg 252deg, #e5f1fe 252deg 360deg);
	transition: all 0.5s ease;
}

.gp-progress-ring::before {
	content: '';
	position: absolute;
	width: 140px;
	height: 140px;
	background: #fffbea;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.gp-progress-text {
	font-size: 2.5rem;
	font-weight: bold;
	color: #0a74da;
	position: relative;
	z-index: 2;
}

.gp-dashboard-tabs {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 2rem;
	flex-wrap: wrap;
}

.gp-tab-btn {
	padding: 0.75rem 2rem;
	background: transparent;
	border: 2px solid #0a74da;
	border-radius: 25px;
	color: #0a74da;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 1rem;
}

.gp-tab-btn.gp-active {
	background: #0a74da;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(10, 116, 218, 0.3);
}

.gp-tab-btn:hover:not(.gp-active) {
	background: rgba(10, 116, 218, 0.1);
	transform: translateY(-2px);
}

/* Tips Section */
.gp-tips {
	background: #fffbea;
}

.gp-tips-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3rem;
	margin-top: 3rem;
}

.gp-tip-card {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(15px);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
}

.gp-tip-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gp-tip-image {
	width: 100%;
	height: 200px;
	background: linear-gradient(135deg, #0a74da, #7fdbda);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 3rem;
	position: relative;
	overflow: hidden;
}

.gp-tip-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gp-tip-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: all 0.5s ease;
}

.gp-tip-card:hover .gp-tip-image::before {
	left: 100%;
}

.gp-tip-content {
	padding: 2rem;
}

.gp-tip-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #2c2c2c;
}

.gp-tip-text {
	color: #666;
	line-height: 1.6;
}

/* Pricing Section */
.gp-pricing {
	background: linear-gradient(
		135deg,
		rgba(127, 219, 218, 0.1),
		rgba(10, 116, 218, 0.05)
	);
	text-align: center;
}

.gp-pricing-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}

.gp-pricing-card {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(20px);
	border-radius: 25px;
	padding: 3rem 2rem;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	border: 2px solid transparent;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.gp-pricing-link {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.gp-pricing-link a {
	margin-top: auto;
}

.gp-pricing-card.gp-featured {
	border-color: #0a74da;
	transform: scale(1.05);
}

.gp-pricing-card.gp-featured::before {
	content: 'POPULAIRE';
	position: absolute;
	top: 20px;
	right: -43px;
	background: #0a74da;
	color: white;
	padding: 0.5rem 3rem;
	font-size: 0.75rem;
	font-weight: bold;
	transform: rotate(45deg);
	letter-spacing: 1px;
}

.gp-pricing-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.gp-pricing-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #2c2c2c;
}

.gp-pricing-price {
	font-size: 3rem;
	font-weight: bold;
	color: #0a74da;
	margin-bottom: 0.5rem;
}

.gp-pricing-period {
	color: #666;
	margin-bottom: 2rem;
}

.gp-pricing-features {
	list-style: none;
	margin-bottom: 2rem;
	text-align: left;
}

.gp-pricing-features li {
	padding: 0.5rem 0;
	position: relative;
	padding-left: 2rem;
}

.gp-pricing-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #7fdbda;
	font-weight: bold;
}

.gp-pricing-comparison {
	margin-top: 4rem;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(15px);
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gp-comparison-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 1rem;
}

.gp-comparison-table th,
.gp-comparison-table td {
	padding: 1rem;
	text-align: center;
	border-bottom: 1px solid rgba(10, 116, 218, 0.1);
}

.gp-comparison-table th {
	background: rgba(10, 116, 218, 0.1);
	font-weight: 600;
	color: #0a74da;
}

.gp-comparison-table td.gp-check {
	color: #7fdbda;
	font-weight: bold;
	font-size: 1.2rem;
}

/* Contact Section */
.gp-contact {
	background: linear-gradient(135deg, #fffbea, rgba(127, 219, 218, 0.1));
}

.gp-contact-form {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(20px);
	border-radius: 25px;
	padding: 3rem;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	max-width: 600px;
	margin: 0 auto;
}

.gp-form-group {
	margin-bottom: 2rem;
}

.gp-form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: #2c2c2c;
}

.gp-form-input,
.gp-form-textarea {
	width: 100%;
	padding: 1rem 1.5rem;
	border: 2px solid rgba(10, 116, 218, 0.2);
	border-radius: 25px;
	font-size: 1rem;
	background: rgba(255, 255, 255, 0.9);
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.gp-form-input:focus,
.gp-form-textarea:focus {
	outline: none;
	/* border-color: #0a74da; */
	box-shadow: 0 0 0 3px rgba(10, 116, 218, 0.1);
	background: white;
}

.gp-form-input.gp-error,
.gp-form-textarea.gp-error {
	border-color: #ff5e57;
	box-shadow: 0 0 0 3px rgba(255, 94, 87, 0.1);
}

.gp-form-input.gp-valid,
.gp-form-textarea.gp-valid {
	border-color: #7fdbda;
	box-shadow: 0 0 0 3px rgba(127, 219, 218, 0.1);
}

.gp-form-textarea {
	min-height: 120px;
	resize: vertical;
	border-radius: 15px;
}

.gp-error-message {
	color: #ff5e57;
	font-size: 0.875rem;
	margin-top: 0.5rem;
	display: none;
}

.gp-error-message.gp-show {
	display: block;
}

/* Footer */
.gp-footer {
	background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
	color: white;
	padding: 4rem 0 2rem;
}

.gp-footer-content {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
	margin-bottom: 2rem;
}

.gp-footer-section h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: #7fdbda;
}

.gp-footer-links {
	list-style: none;
}

.gp-footer-links li {
	margin-bottom: 0.75rem;
}

.gp-footer-links a {
	color: #ccc;
	text-decoration: none;
	transition: all 0.3s ease;
}

.gp-footer-links a:hover {
	color: #7fdbda;
	transform: translateX(5px);
}

.gp-footer-bottom {
	border-top: 1px solid rgba(127, 219, 218, 0.2);
	padding-top: 2rem;
	text-align: center;
	color: #999;
}

/* Cookie Popup */
.gp-cookie-popup {
	position: fixed;
	bottom: 2rem;
	left: 2rem;
	right: 2rem;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
	z-index: 10000;
	transform: translateY(100px);
	opacity: 0;
	transition: all 0.3s ease;
	max-width: 500px;
	margin: 0 auto;
}

.gp-cookie-popup.gp-show {
	transform: translateY(0);
	opacity: 1;
}

.gp-cookie-content {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.gp-cookie-text {
	flex: 1;
	font-size: 0.9rem;
	color: #2c2c2c;
	line-height: 1.4;
}

.gp-cookie-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.gp-cookie-btn {
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.gp-cookie-accept {
	background: #0a74da;
	color: white;
}

.gp-cookie-accept:hover {
	background: #085bb3;
	transform: translateY(-2px);
}

.gp-cookie-link {
	color: #0a74da;
	text-decoration: underline;
}

.gp-cookie-link:hover {
	color: #7fdbda;
}

/* Animations */
@keyframes gp-fade-in-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes gp-float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}

@keyframes gp-rotate {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(5deg);
	}
}

@keyframes gp-pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

@keyframes gp-gradient-shift {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

/*Animation Classes */
.gp-fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.gp-fade-in.gp-visible {
	opacity: 1;
	transform: translateY(0);
}

.gp-pulse {
	animation: gp-pulse 2s ease-in-out infinite;
}

.gp-gradient-bg {
	background: linear-gradient(-45deg, #0a74da, #7fdbda, #0a74da, #7fdbda);
	background-size: 400% 400%;
	animation: gp-gradient-shift 6s ease infinite;
}

/* Parallax Effects */
.gp-parallax {
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.gp-container {
		padding: 0 1.5rem;
	}

	.gp-split-screen {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.gp-grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.gp-pricing-cards {
		grid-template-columns: 1fr;
	}

	.gp-hero-title {
		font-size: 3rem;
	}
}

@media (max-width: 992px) {
	.gp-nav {
		display: none;
	}

	.gp-mobile-menu-toggle {
		display: flex;
	}

	.gp-hero-content {
		text-align: center;
	}

	.gp-hero-buttons {
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.gp-hero-title {
		font-size: 2.5rem;
	}

	.gp-hero-subtitle {
		font-size: 1.2rem;
	}

	.gp-grid-2,
	.gp-grid-3,
	.gp-grid-4 {
		grid-template-columns: 1fr;
	}

	.gp-why-cards {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.gp-tips-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.gp-footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.gp-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.gp-dashboard-tabs {
		flex-direction: column;
		align-items: center;
	}

	.gp-cookie-popup {
		left: 1rem;
		right: 1rem;
		bottom: 1rem;
	}

	.gp-cookie-content {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.gp-title-xl {
		font-size: 2.5rem;
	}

	.gp-pricing-cards {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.gp-title-lg {
		font-size: 2rem;
	}

	.gp-hero-title {
		font-size: 2rem;
	}

	.gp-section {
		padding: 3rem 0;
	}

	.gp-card {
		padding: 1.5rem;
	}

	.gp-contact-form {
		padding: 2rem;
	}

	.gp-workshops-carousel {
		gap: 1rem;
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.gp-workshop-card {
		min-width: 280px;
	}

	.gp-progress-ring {
		width: 150px;
		height: 150px;
	}

	.gp-progress-text {
		font-size: 1.5rem;
	}
}

/* Print Styles */
@media print {
	.gp-header,
	.gp-cookie-popup {
		display: none;
	}

	.gp-section {
		break-inside: avoid;
		page-break-inside: avoid;
	}

	.gp-card {
		box-shadow: none;
		border: 1px solid #ddd;
	}

	.gp-btn {
		border: 2px solid #000;
		background: transparent !important;
		color: #000 !important;
	}
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
	.gp-btn-primary {
		background: #000;
		color: #fff;
		border: 2px solid #fff;
	}

	.gp-btn-secondary {
		background: #fff;
		color: #000;
		border: 2px solid #000;
	}

	.gp-card {
		border: 2px solid #000;
	}
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.gp-parallax {
		background-attachment: scroll;
	}
}

/* Screen Reader Only Content */
.gp-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;
}

/* Policy Pages Styles */
.gp-policy-page {
	padding-top: 100px;
	min-height: 100vh;
	background: #fffbea;
}

.gp-policy-header {
	text-align: center;
	margin-bottom: 3rem;
	padding: 2rem 0;
	background: linear-gradient(
		135deg,
		rgba(10, 116, 218, 0.05),
		rgba(127, 219, 218, 0.05)
	);
	border-radius: 20px;
}

.gp-policy-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #0a74da;
	margin-bottom: 1rem;
}

.gp-policy-date {
	color: #666;
	font-style: italic;
}

.gp-policy-content {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(15px);
	border-radius: 20px;
	padding: 3rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	line-height: 1.8;
}

.gp-policy-section {
	margin-bottom: 3rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(10, 116, 218, 0.1);
}

.gp-policy-section:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.gp-policy-section h2 {
	color: #0a74da;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid #7fdbda;
	display: inline-block;
}

.gp-policy-section p {
	color: #2c2c2c;
	margin-bottom: 1rem;
	text-align: justify;
}

.gp-policy-section ul {
	margin: 1rem 0;
	padding-left: 2rem;
}

.gp-policy-section li {
	margin-bottom: 0.5rem;
	color: #2c2c2c;
}

/* Additional Utility Classes */
.gp-text-center {
	text-align: center;
}
.gp-text-left {
	text-align: left;
}
.gp-text-right {
	text-align: right;
}
.gp-text-justify {
	text-align: justify;
}

.gp-mb-1 {
	margin-bottom: 0.5rem;
}
.gp-mb-2 {
	margin-bottom: 1rem;
}
.gp-mb-3 {
	margin-bottom: 1.5rem;
}
.gp-mb-4 {
	margin-bottom: 2rem;
}

.gp-mt-1 {
	margin-top: 0.5rem;
}
.gp-mt-2 {
	margin-top: 1rem;
}
.gp-mt-3 {
	margin-top: 1.5rem;
}
.gp-mt-4 {
	margin-top: 2rem;
}

.gp-p-1 {
	padding: 0.5rem;
}
.gp-p-2 {
	padding: 1rem;
}
.gp-p-3 {
	padding: 1.5rem;
}
.gp-p-4 {
	padding: 2rem;
}

.gp-d-flex {
	display: flex;
}
.gp-d-block {
	display: block;
}
.gp-d-inline {
	display: inline;
}
.gp-d-none {
	display: none;
}

.gp-justify-center {
	justify-content: center;
}
.gp-justify-between {
	justify-content: space-between;
}
.gp-justify-around {
	justify-content: space-around;
}

.gp-align-center {
	align-items: center;
}
.gp-align-start {
	align-items: flex-start;
}
.gp-align-end {
	align-items: flex-end;
}

.gp-w-full {
	width: 100%;
}
.gp-h-full {
	height: 100%;
}

.gp-rounded {
	border-radius: 0.5rem;
}
.gp-rounded-lg {
	border-radius: 1rem;
}
.gp-rounded-xl {
	border-radius: 1.5rem;
}
.gp-rounded-full {
	border-radius: 50%;
}

.gp-shadow {
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.gp-shadow-lg {
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.gp-shadow-xl {
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gp-border {
	border: 1px solid rgba(10, 116, 218, 0.2);
}
.gp-border-primary {
	border: 2px solid #0a74da;
}
.gp-border-secondary {
	border: 2px solid #7fdbda;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: rgba(10, 116, 218, 0.1);
	border-radius: 10px;
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg, #0a74da, #7fdbda);
	border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(135deg, #085bb3, #6bc5c4);
}

/* Selection Styles */
::selection {
	background: rgba(127, 219, 218, 0.3);
	color: #2c2c2c;
}

::-moz-selection {
	background: rgba(127, 219, 218, 0.3);
	color: #2c2c2c;
}

@media (max-width: 576px) {
	.gp-policy-title {
		font-size: 1.5rem;
	}
	.gp-policy-content {
		padding: 2rem;
	}
}
/* ====== Новая тема (только палитра/фон/шрифты/радиусы/тени) ====== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Manrope:wght@600;700;800&display=swap');

:root{
	/* Цвета темы */
	--primary: #27b17d;        /* изумрудный основной */
	--primary-700:#1f8d66;
	--primary-900:#135846;

	--mint:#8fe3cf;            /* мягкий мятный для подсветки */
	--accent:#ff5c93;          /* малиновый акцент */
	--accent-700:#e44b83;

	--bg-deep-1:#0f1c1a;       /* тёмный зелёно-угольный */
	--bg-deep-2:#1b2a27;       /* мягче для градиента */
	--bg-warm:#fff7e0;         /* светлая подложка там, где нужно */

	--card:#ffffff;
	--text:#24322e;
	--muted:#667e76;

	--shadow-1:0 8px 24px rgba(0,0,0,.12);
	--shadow-2:0 18px 42px rgba(0,0,0,.18);

	--radius-sm:14px;
	--radius-md:20px;
	--radius-lg:26px;
	--radius-xl:32px;
}

/* Базовая типографика */
body{
	font-family:'Inter',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,'Noto Sans',sans-serif;
	background: linear-gradient(160deg, var(--bg-deep-1) 0%, var(--bg-deep-2) 100%);
	color:#333;
}

/* Заголовки — более выразительные */
.gp-title-xl,.gp-title-lg,.gp-title-md,.gp-title-sm{
	font-family:'Manrope',sans-serif;
}
.gp-subtitle{ color:#cfe3dc; }
.gp-text{ color:#333; }
.gp-text-sm{ color:#c7d6d1; }

/* Контейнеры/секции — фон не трогаем функционально, только общее впечатление */
.gp-section{
	background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,0.02) 100%);
}

/* ====== Шапка/меню (структура прежняя) ====== */
.gp-header{
	background: rgba(20, 33, 31, .86);
	border-bottom: 1px solid rgba(39,177,125,.18);
}
.gp-header.gp-scrolled{
	background: rgba(20, 33, 31, .92);
	box-shadow: var(--shadow-1);
}

.gp-logo{
	color:var(--mint);
	letter-spacing:.3px;
}
.gp-logo:hover{ color:#b7f1e2; }

.gp-nav-link{
	color:#eaf5f1;
	border-radius: 999px;
}
.gp-nav-link:hover{
	color:var(--primary);
	background-color: rgba(39,177,125,.12);
}

/* Иконка бургер-меню */
.gp-mobile-menu-toggle span{ background: var(--primary); }
.gp-mobile-nav{
	background: rgba(22, 35, 33, .98);
	border-top: 1px solid rgba(39,177,125,.18);
}
.gp-mobile-nav .gp-nav-link:hover{
	background: linear-gradient(135deg, var(--primary), var(--mint));
	color:#10352a;
}

/* ====== Кнопки ====== */
.gp-btn{
	border-radius: 999px;
	box-shadow: 0 4px 14px rgba(39,177,125,.18);
}
.gp-btn-primary{
	background: linear-gradient(135deg, var(--primary), var(--mint));
	color:#0b2f25;
}
.gp-btn-primary:hover{
	background: linear-gradient(135deg, var(--primary-700), var(--mint));
	box-shadow: 0 10px 28px rgba(39,177,125,.32);
	transform: translateY(-3px);
}
.gp-btn-secondary{
	color: var(--primary);
	border: 2px solid var(--primary);
	background: transparent;
}
.gp-btn-secondary:hover{
	background: var(--primary);
	color:#0b2f25;
	box-shadow: 0 10px 24px rgba(39,177,125,.28);
}
.gp-btn-ghost{
	color:#333;
	border:2px solid transparent;
}
.gp-btn-ghost:hover{
	border-color: var(--mint);
	color: var(--mint);
}

/* ====== Карточки/плашки ====== */
.gp-card{
	background: var(--card);
	color: var(--text);
	border: 1px solid rgba(255,255,255,.35);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-1);
}
.gp-card:hover{
	box-shadow: var(--shadow-2);
}
.gp-card::before{
	background: linear-gradient(90deg, var(--primary), var(--mint));
}
.gp-card-icon{ color: var(--primary); }
.gp-card:hover .gp-card-icon{ color: var(--accent); }

/* ====== Hero ====== */
.gp-hero{
	background: radial-gradient(1200px 600px at 70% 0%, rgba(143,227,207,.10) 0%, rgba(143,227,207,0) 60%),
				linear-gradient(160deg, var(--bg-deep-1) 0%, var(--bg-deep-2) 100%);
}
.gp-hero-title{
	background: linear-gradient(135deg, var(--mint), var(--primary));
	-webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
}
.gp-hero-subtitle{ color:#cfe3dc; }

/* ====== Why ====== */
.gp-why{
	background: linear-gradient(45deg, rgba(143,227,207,.06), rgba(39,177,125,.08));
}
.gp-why-icon{ color: var(--primary); }
.gp-why-card:hover .gp-why-icon{ color: var(--accent); }

/* ====== Workshops ====== */
.gp-workshops{
	background:
		linear-gradient(45deg, rgba(39,177,125,.70), rgba(31,141,102,.55)),
		url('assets/en-bg-workshop.webp') center/cover;
}
.gp-workshop-card{
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-1);
}
.gp-workshop-card::before{
	background: linear-gradient(90deg, var(--primary), var(--mint));
}
.gp-workshop-date{ color: var(--primary-700); }

/* ====== Dashboard ====== */
.gp-dashboard{
	background: linear-gradient(135deg, rgba(39,177,125,.07), rgba(143,227,207,.06));
}
.gp-dashboard-demo{
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-1);
}
.gp-progress-ring{
	background: conic-gradient(var(--primary) 0deg 252deg, #e8f5f1 252deg 360deg);
}
.gp-progress-ring::before{ background: #ffffff; }
.gp-progress-text{ color: var(--primary-700); }
.gp-tab-btn{
	border:2px solid var(--primary);
	color: var(--primary);
	border-radius: 999px;
}
.gp-tab-btn.gp-active{
	background: var(--primary);
	color:#0b2f25;
	box-shadow: 0 8px 20px rgba(39,177,125,.28);
}
.gp-tab-btn:hover:not(.gp-active){
	background: rgba(39,177,125,.12);
}

/* ====== Tips ====== */
.gp-tips{ background: var(--bg-warm); }
.gp-tip-card{
	background: var(--card);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-1);
}
.gp-tip-image{ background: linear-gradient(135deg, var(--primary), var(--mint)); }

/* ====== Pricing ====== */
.gp-pricing{
	background: linear-gradient(135deg, rgba(143,227,207,.10), rgba(39,177,125,.08));
}
.gp-pricing-card{
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-1);
}
.gp-pricing-card.gp-featured{
	border-color: var(--primary);
}
.gp-pricing-card.gp-featured::before{
	background: var(--accent);
}
.gp-pricing-price{ color: var(--primary); }
.gp-comparison-table th{
	background: rgba(39,177,125,.12);
	color: var(--primary-900);
}
.gp-comparison-table td.gp-check{ color: var(--mint); }

/* ====== Forms ====== */
.gp-contact{
	background: linear-gradient(135deg, var(--bg-warm), rgba(143,227,207,.10));
}
.gp-contact-form{
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-1);
}
.gp-form-input,.gp-form-textarea{
	border:2px solid rgba(39,177,125,.22);
	background:#fff;
	border-radius: 18px;
}
.gp-form-input:focus,.gp-form-textarea:focus{
	box-shadow: 0 0 0 3px rgba(39,177,125,.18);
}
.gp-form-input.gp-valid,.gp-form-textarea.gp-valid{ border-color: var(--primary); }
.gp-form-input.gp-error,.gp-form-textarea.gp-error{
	border-color: #ff6b6b;
	box-shadow: 0 0 0 3px rgba(255,107,107,.14);
}

/* ====== Footer ====== */
.gp-footer{
	background: linear-gradient(135deg, #1e2a28, #141c1b);
}
.gp-footer-section h3{ color: var(--mint); }
.gp-footer-links a:hover{ color: var(--primary); }
.gp-footer-bottom{ border-top:1px solid rgba(143,227,207,.25); }

/* ====== Cookie ====== */
.gp-cookie-popup{
	background: rgba(255,255,255,.95);
	box-shadow: var(--shadow-2);
	border-radius: var(--radius-lg);
}
.gp-cookie-accept{
	background: var(--primary);
	color:#0b2f25;
}
.gp-cookie-accept:hover{ background: var(--primary-700); }
.gp-cookie-link{
	color: var(--accent);
}
.gp-cookie-link:hover{ color: var(--accent-700); }

/* ====== Policy pages ====== */
.gp-policy-page{ background: linear-gradient(160deg, #f7fff9 0%, #eef8f4 100%); }
.gp-policy-header{
	background: linear-gradient(135deg, rgba(39,177,125,.10), rgba(143,227,207,.10));
	border-radius: var(--radius-md);
}
.gp-policy-title{ color: var(--primary-900); }
.gp-policy-content{
	background: #ffffff;
	color: var(--text);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-1);
}
.gp-policy-section{
	border-bottom: 1px solid rgba(39,177,125,.15);
}
.gp-policy-section h2{
	color: var(--primary);
	border-bottom: 2px solid var(--accent);
}

/* ====== Бордеры/утилиты/скроллбар/selection ====== */
.gp-border{ border:1px solid rgba(39,177,125,.22); }
.gp-border-primary{ border:2px solid var(--primary); }
.gp-border-secondary{ border:2px solid var(--mint); }

::-webkit-scrollbar{ width:8px; }
::-webkit-scrollbar-track{
	background: rgba(39,177,125,.12);
	border-radius: 10px;
}
::-webkit-scrollbar-thumb{
	background: linear-gradient(135deg, var(--primary), var(--mint));
	border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover{ filter: brightness(.95); }

::selection{ background: rgba(255,92,147,.25); color:#10241d; }
::-moz-selection{ background: rgba(255,92,147,.25); color:#10241d; }
/* === Текстовые стили === */
body {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  color: #f2f2f2; /* почти белый для читаемости */
}

/* Заголовки */
h1, h2, h3, h4, h5, h6 {
  color: #ff2e72; /* малиновый для акцента */
  font-weight: 700;
}

/* Подписи */
p, li, span, td {
  color: #333; /* светло-серый */
}

/* Цены */
.price {
  font-size: 2em;
  font-weight: bold;
  color: #ff2e72; /* малиновый */
}

/* Таблицы */
table th {
  background: rgba(0,0,0,0.3);
  color: #ffffff;
}

table td {
  color: #f2f2f2;
}

/* Акценты (галочки и кнопки) */
.checkmark {
  color: #34d399; /* зелёный */
}

button, .btn, .gp-btn {
  background: #34d399; /* зелёный */
  color: #fff;
  border-radius: 6px;
  padding: 10px 20px;
  border: none;
  font-weight: 600;
  transition: 0.3s;
}

button:hover, .btn:hover, .gp-btn:hover {
  background: #28a57f;
}
/* Внутренние блоки (карточки, таблицы, секции) */
.card, 
.pricing-table, 
.table-container, 
.inner-block, 
section.box, 
.content-box {
  background: #ffffff;       /* белый фон */
  color: #333333;            /* тёмный текст внутри для читаемости */
  border-radius: 12px;       /* скругление углов */
  box-shadow: 0 4px 16px rgba(0,0,0,0.1); /* мягкая тень */
  padding: 20px;
}

/* Заголовки внутри белых блоков */
.card h2, 
.pricing-table h3, 
.inner-block h3 {
  color: #ff2e72; /* малиновый акцент */
}

/* Цены */
.card .price, 
.pricing-table .price {
  color: #ff2e72;
  font-size: 2em;
  font-weight: bold;
}

/* Таблицы */
table {
  background: #ffffff;
  color: #333333;
  border-radius: 10px;
  overflow: hidden;
}

table th {
  background: #f5f5f5;
  color: #333333;
}

table td {
  color: #333333;
}
/* Заголовок секции "Nos formules d’abonnement" */
.pricing-section h2,
.pricing-section h3,
.pricing-section p {
  color: #222222; /* насыщенный тёмный цвет */
}

/* Тексты внутри тарифных карточек */
.pricing-section .card,
.pricing-section .card p,
.pricing-section .card li {
  color: #333333; /* тёмно-серый для читабельности */
}

/* Дополнительно: убрать полупрозрачность, если была */
.pricing-section .card * {
  opacity: 1 !important;
}
