@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;600;700;800&display=swap');

/* ========== RESET & BASE ========== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--ts-bg-primary: #f8fafc;
	--ts-bg-secondary: #ffffff;
	--ts-bg-footer: #f1f5f9;
	--ts-accent-blue: #2563eb;
	--ts-accent-green: #22c55e;
	--ts-accent-gray: #64748b;
	--ts-text-primary: #1e293b;
	--ts-text-secondary: #475569;
	--ts-border: #e2e8f0;
	--ts-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
		0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--ts-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
		0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--ts-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
		sans-serif;
	background-color: var(--ts-bg-primary);
	color: var(--ts-text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

/* ========== TYPOGRAPHY ========== */
.ts-heading-xl {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 3.5rem;
	line-height: 1.1;
	color: var(--ts-text-primary);
	margin-bottom: 1.5rem;
}

.ts-heading-lg {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 2.5rem;
	line-height: 1.2;
	color: var(--ts-text-primary);
	margin-bottom: 1.25rem;
}

.ts-heading-md {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 1.875rem;
	line-height: 1.3;
	color: var(--ts-text-primary);
	margin-bottom: 1rem;
}

.ts-heading-sm {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 1.4;
	color: var(--ts-text-primary);
	margin-bottom: 0.75rem;
}

.ts-text-body {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--ts-text-secondary);
	margin-bottom: 1rem;
}

.ts-text-lead {
	font-size: 1.25rem;
	line-height: 1.8;
	color: var(--ts-text-secondary);
	margin-bottom: 1.5rem;
}

.ts-text-small {
	font-size: 0.875rem;
	line-height: 1.5;
	color: var(--ts-text-secondary);
}

/* ========== HEADER ========== */
.ts-header {
	background-color: var(--ts-bg-secondary);
	box-shadow: var(--ts-shadow);
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: var(--ts-transition);
}

.ts-header-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 1.25rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.ts-logo {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--ts-accent-blue);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	transition: var(--ts-transition);
}

.ts-logo:hover {
	transform: translateY(-2px);
	opacity: 0.9;
}

.ts-logo i {
	font-size: 2rem;
}

.ts-nav {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.ts-nav-link {
	font-size: 1rem;
	font-weight: 500;
	color: var(--ts-text-primary);
	text-decoration: none;
	position: relative;
	padding: 0.5rem 0;
	transition: var(--ts-transition);
}

.ts-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--ts-accent-blue);
	transition: width 0.3s ease;
}

.ts-nav-link:hover {
	color: var(--ts-accent-blue);
}

.ts-nav-link:hover::after,
.ts-nav-link.ts-active::after {
	width: 100%;
}

.ts-nav-link.ts-active {
	color: var(--ts-accent-blue);
}

.ts-mobile-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--ts-text-primary);
	cursor: pointer;
	padding: 0.5rem;
}

/* ========== HERO SECTION ========== */
.ts-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	overflow: hidden;
	margin-bottom: 4rem;
}

.ts-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.2;
}

.ts-hero-content {
	position: relative;
	z-index: 2;
	max-width: 900px;
	text-align: center;
	padding: 3rem 2rem;
	color: #ffffff;
}

.ts-hero h1 {
	color: #ffffff;
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	animation: ts-fade-in-up 0.8s ease-out;
}

.ts-hero-subtitle {
	font-size: 1.25rem;
	line-height: 1.8;
	margin-bottom: 2.5rem;
	color: rgba(255, 255, 255, 0.95);
	animation: ts-fade-in-up 0.8s ease-out 0.2s both;
}

.ts-hero-actions {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
	animation: ts-fade-in-up 0.8s ease-out 0.4s both;
}

/* ========== BUTTONS ========== */
.ts-btn {
	display: inline-block;
	padding: 0.875rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 0.5rem;
	transition: var(--ts-transition);
	cursor: pointer;
	border: 2px solid transparent;
	font-family: 'Inter', sans-serif;
}

.ts-btn-primary {
	background-color: var(--ts-accent-blue);
	color: #ffffff;
}

.ts-btn-primary:hover {
	background-color: #1d4ed8;
	transform: translateY(-2px);
	box-shadow: var(--ts-shadow-lg);
}

.ts-btn-secondary {
	background-color: var(--ts-accent-green);
	color: #ffffff;
}

.ts-btn-secondary:hover {
	background-color: #16a34a;
	transform: translateY(-2px);
	box-shadow: var(--ts-shadow-lg);
}

.ts-btn-outline {
	background-color: transparent;
	color: #ffffff;
	border-color: #ffffff;
}

.ts-btn-outline:hover {
	background-color: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
}

/* ========== CONTAINER & GRID ========== */
.ts-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2rem;
}

.ts-section {
	padding: 5rem 0;
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.ts-section.ts-visible {
	opacity: 1;
	transform: translateY(0);
}

.ts-section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.ts-section-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--ts-text-primary);
	margin-bottom: 1rem;
}

.ts-section-subtitle {
	font-size: 1.125rem;
	color: var(--ts-text-secondary);
	max-width: 700px;
	margin: 0 auto;
}

.ts-grid {
	display: grid;
	gap: 2rem;
}

.ts-grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.ts-grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.ts-grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

/* ========== CARDS ========== */
.ts-card {
	background-color: var(--ts-bg-secondary);
	border-radius: 0.75rem;
	padding: 2rem;
	box-shadow: var(--ts-shadow);
	transition: var(--ts-transition);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.ts-card ul {
	padding-left: 1.2rem;
}

.ts-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--ts-shadow-lg);
}

.ts-card-icon {
	font-size: 3rem;
	color: var(--ts-accent-blue);
	margin-bottom: 1.5rem;
}

.ts-card-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--ts-text-primary);
	margin-bottom: 1rem;
}

.ts-card-text {
	color: var(--ts-text-secondary);
	line-height: 1.7;
	flex-grow: 1;
}

.ts-card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--ts-accent-blue);
	text-decoration: none;
	font-weight: 600;
	margin-top: 1rem;
	transition: var(--ts-transition);
}

.ts-card-link:hover {
	gap: 0.75rem;
	color: #1d4ed8;
}

/* ========== TIMELINE ========== */
.ts-timeline {
	position: relative;
	padding: 2rem 0;
}

.ts-timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	background-color: var(--ts-accent-blue);
	transform: translateX(-50%);
}

.ts-timeline-item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin-bottom: 3rem;
	position: relative;
}

.ts-timeline-item:nth-child(odd) .ts-timeline-content {
	grid-column: 1;
}

.ts-timeline-item:nth-child(odd) .ts-timeline-marker {
	left: 50%;
}

.ts-timeline-item:nth-child(even) .ts-timeline-content {
	grid-column: 2;
}

.ts-timeline-item:nth-child(even) .ts-timeline-marker {
	left: 50%;
}

.ts-timeline-marker {
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 20px;
	height: 20px;
	background-color: var(--ts-accent-blue);
	border: 4px solid var(--ts-bg-primary);
	border-radius: 50%;
	z-index: 10;
}

.ts-timeline-content {
	background-color: var(--ts-bg-secondary);
	padding: 2rem;
	border-radius: 0.75rem;
	box-shadow: var(--ts-shadow);
}

.ts-timeline-year {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--ts-accent-blue);
	margin-bottom: 0.5rem;
}

.ts-timeline-title {
	font-size: 1.125rem;
	word-break: break-all;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.ts-timeline-text {
	color: var(--ts-text-secondary);
	line-height: 1.6;
}

/* ========== TESTIMONIALS ========== */
.ts-testimonials {
	background-color: var(--ts-bg-secondary);
	padding: 3rem 2rem;
	border-radius: 1rem;
	box-shadow: var(--ts-shadow);
}

.ts-testimonial-slider {
	display: flex;
	overflow: hidden;
	position: relative;
}

.ts-testimonial-track {
	display: flex;
	transition: transform 0.5s ease;
}

.ts-testimonial {
	min-width: 100%;
	padding: 2rem;
	text-align: center;
}

.ts-testimonial-text {
	font-size: 1.125rem;
	font-style: italic;
	color: var(--ts-text-secondary);
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

.ts-testimonial-author {
	font-weight: 600;
	color: var(--ts-text-primary);
	margin-bottom: 0.25rem;
}

.ts-testimonial-role {
	color: var(--ts-accent-gray);
	font-size: 0.875rem;
}

.ts-testimonial-controls {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 2rem;
}

.ts-testimonial-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: var(--ts-border);
	cursor: pointer;
	transition: var(--ts-transition);
}

.ts-testimonial-dot.ts-active {
	background-color: var(--ts-accent-blue);
	width: 30px;
	border-radius: 6px;
}

/* ========== FORM ========== */
.ts-form-section {
	background-color: var(--ts-bg-secondary);
	padding: 3rem;
	border-radius: 1rem;
	box-shadow: var(--ts-shadow);
}

.ts-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.ts-form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.ts-form-label {
	font-weight: 600;
	color: var(--ts-text-primary);
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.ts-form-input,
.ts-form-textarea {
	padding: 0.875rem 1rem;
	border: 2px solid var(--ts-border);
	border-radius: 0.5rem;
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	transition: var(--ts-transition);
	background-color: var(--ts-bg-primary);
	color: var(--ts-text-primary);
}

.ts-form-input:focus,
.ts-form-textarea:focus {
	outline: none;
	border-color: var(--ts-accent-blue);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.ts-form-textarea {
	resize: vertical;
	min-height: 150px;
}

.ts-form-error {
	color: #dc2626;
	font-size: 0.875rem;
	margin-top: 0.25rem;
	display: none;
}

.ts-form-group.ts-error .ts-form-error {
	display: block;
}

.ts-form-group.ts-error .ts-form-input,
.ts-form-group.ts-error .ts-form-textarea {
	border-color: #dc2626;
}

.ts-form-submit {
	width: 100%;
	padding: 1rem;
	background-color: var(--ts-accent-green);
	color: #ffffff;
	border: none;
	border-radius: 0.5rem;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: var(--ts-transition);
}

.ts-form-submit:hover {
	background-color: #16a34a;
	transform: translateY(-2px);
	box-shadow: var(--ts-shadow-lg);
}

.ts-form-submit:disabled {
	background-color: var(--ts-accent-gray);
	cursor: not-allowed;
	transform: none;
}

/* ========== MAP ========== */
.ts-map-container {
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: var(--ts-shadow);
	height: 100%;
}

.ts-map {
	height: 100%;
	min-height: 400px;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.ts-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.ts-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 1rem;
	/* overflow: hidden; */
}

.ts-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 1rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

/* ========== CONTACT INFO ========== */
.ts-contact-info {
	background-color: var(--ts-bg-secondary);
	padding: 2.5rem;
	border-radius: 0.75rem;
	box-shadow: var(--ts-shadow);
}

.ts-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 2rem;
}

.ts-contact-item:last-child {
	margin-bottom: 0;
}

.ts-contact-icon {
	font-size: 1.5rem;
	color: var(--ts-accent-blue);
	min-width: 30px;
}

.ts-contact-details h3 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--ts-text-primary);
	margin-bottom: 0.25rem;
}

.ts-contact-details p {
	color: var(--ts-text-secondary);
	line-height: 1.6;
}

.ts-contact-details a {
	color: var(--ts-accent-blue);
	text-decoration: none;
	transition: var(--ts-transition);
}

.ts-contact-details a:hover {
	color: #1d4ed8;
	text-decoration: underline;
}

/* ========== ACCORDION ========== */
.ts-accordion {
	background-color: var(--ts-bg-secondary);
	border-radius: 0.75rem;
	overflow: hidden;
	box-shadow: var(--ts-shadow);
}

.ts-accordion-item {
	border-bottom: 1px solid var(--ts-border);
}

.ts-accordion-item:last-child {
	border-bottom: none;
}

.ts-accordion-header {
	width: 100%;
	padding: 1.5rem;
	background: none;
	border: none;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--ts-text-primary);
	transition: var(--ts-transition);
}

.ts-accordion-header:hover {
	background-color: var(--ts-bg-primary);
}

.ts-accordion-icon {
	transition: transform 0.3s ease;
	color: var(--ts-accent-blue);
}

.ts-accordion-item.ts-active .ts-accordion-icon {
	transform: rotate(180deg);
}

.ts-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.ts-accordion-item.ts-active .ts-accordion-content {
	max-height: 2000px;
}

.ts-accordion-body {
	padding: 1rem 1.5rem 1.5rem;
	color: var(--ts-text-secondary);
	line-height: 1.7;
}

.ts-accordion-body ul {
	padding-left: 1.2rem;
}

/* ========== TABS ========== */
.ts-tabs {
	background-color: var(--ts-bg-secondary);
	border-radius: 0.75rem;
	box-shadow: var(--ts-shadow);
	overflow: hidden;
}

.ts-tab-header {
	display: flex;
	background-color: var(--ts-bg-primary);
	border-bottom: 2px solid var(--ts-border);
}

.ts-tab-button {
	flex: 1;
	padding: 1rem 1.5rem;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 600;
	color: var(--ts-text-secondary);
	transition: var(--ts-transition);
	position: relative;
}

.ts-tab-button:hover {
	background-color: rgba(37, 99, 235, 0.05);
	color: var(--ts-accent-blue);
}

.ts-tab-button.ts-active {
	color: var(--ts-accent-blue);
}

.ts-tab-button.ts-active::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	height: 2px;
	background-color: var(--ts-accent-blue);
}

.ts-tab-content {
	padding: 2rem;
	display: none;
}

.ts-tab-content.ts-active {
	display: block;
	animation: ts-fade-in 0.3s ease;
}

/* ========== TABLE ========== */
.ts-table-container {
	overflow-x: auto;
	background-color: var(--ts-bg-secondary);
	border-radius: 0.75rem;
	box-shadow: var(--ts-shadow);
}

.ts-table {
	width: 100%;
	border-collapse: collapse;
}

.ts-table thead {
	background-color: var(--ts-bg-primary);
}

.ts-table th {
	padding: 1rem 1.5rem;
	text-align: left;
	font-weight: 600;
	color: var(--ts-text-primary);
	border-bottom: 2px solid var(--ts-border);
}

.ts-table td {
	padding: 1rem 1.5rem;
	color: var(--ts-text-secondary);
	border-bottom: 1px solid var(--ts-border);
}

.ts-table tbody tr:hover {
	background-color: var(--ts-bg-primary);
}

.ts-table tbody tr:last-child td {
	border-bottom: none;
}

/* ========== BADGE ========== */
.ts-badge {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	width: max-content;
}

.ts-badge-blue {
	background-color: rgba(37, 99, 235, 0.1);
	color: var(--ts-accent-blue);
}

.ts-badge-green {
	background-color: rgba(34, 197, 94, 0.1);
	color: var(--ts-accent-green);
}

.ts-badge-gray {
	background-color: rgba(100, 116, 139, 0.1);
	color: var(--ts-accent-gray);
}

/* ========== FOOTER ========== */
.ts-footer {
	background-color: var(--ts-bg-footer);
	padding: 4rem 0 2rem;
}

.ts-footer-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
	margin-bottom: 3rem;
}

.ts-footer-section h3 {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--ts-text-primary);
	margin-bottom: 1.5rem;
}

.ts-footer-logo {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--ts-accent-blue);
	margin-bottom: 1rem;
	display: block;
}

.ts-footer-tagline {
	color: var(--ts-text-secondary);
	line-height: 1.6;
	margin-bottom: 1rem;
}

.ts-footer-menu {
	list-style: none;
}

.ts-footer-menu li {
	margin-bottom: 0.75rem;
}

.ts-footer-menu a {
	color: var(--ts-text-secondary);
	text-decoration: none;
	transition: var(--ts-transition);
}

.ts-footer-menu a:hover {
	color: var(--ts-accent-blue);
	padding-left: 5px;
}

.ts-footer-contact p {
	color: var(--ts-text-secondary);
	margin-bottom: 0.75rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.ts-footer-contact i {
	color: var(--ts-accent-blue);
	width: 20px;
}

.ts-footer-contact a {
	color: var(--ts-accent-blue);
	text-decoration: none;
	transition: var(--ts-transition);
}

.ts-footer-contact a:hover {
	text-decoration: underline;
}

.ts-footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid var(--ts-border);
	text-align: center;
	color: var(--ts-text-secondary);
	font-size: 0.875rem;
}

/* ========== COOKIE POPUP ========== */
.ts-cookie-popup {
	position: fixed;
	bottom: 2rem;
	left: 2rem;
	right: 2rem;
	max-width: 500px;
	background-color: var(--ts-bg-secondary);
	padding: 1.5rem;
	border-radius: 0.75rem;
	box-shadow: var(--ts-shadow-lg);
	z-index: 9999;
	display: none;
	animation: ts-slide-up 0.4s ease;
}

.ts-cookie-popup.ts-show {
	display: block;
}

.ts-cookie-text {
	color: var(--ts-text-secondary);
	margin-bottom: 1rem;
	line-height: 1.6;
}

.ts-cookie-text a {
	color: var(--ts-accent-blue);
	text-decoration: none;
}

.ts-cookie-text a:hover {
	text-decoration: underline;
}

.ts-cookie-actions {
	display: flex;
	gap: 1rem;
}

.ts-cookie-accept {
	flex: 1;
	padding: 0.75rem;
	background-color: var(--ts-accent-green);
	color: #ffffff;
	border: none;
	border-radius: 0.5rem;
	font-weight: 600;
	cursor: pointer;
	transition: var(--ts-transition);
}

.ts-cookie-accept:hover {
	background-color: #16a34a;
}

/* ========== ANIMATIONS ========== */
@keyframes ts-fade-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes ts-fade-in-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes ts-slide-up {
	from {
		transform: translateY(100px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes ts-scale-in {
	from {
		transform: scale(0.95);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

.ts-animate-fade {
	animation: ts-fade-in 0.6s ease;
}

.ts-animate-fade-up {
	animation: ts-fade-in-up 0.8s ease;
}

.ts-animate-scale {
	animation: ts-scale-in 0.4s ease;
}

/* ========== UTILITY CLASSES ========== */
.ts-text-center {
	text-align: center;
}

.ts-text-left {
	text-align: left;
}

.ts-text-right {
	text-align: right;
}

.ts-mt-1 {
	margin-top: 0.5rem;
}

.ts-mt-2 {
	margin-top: 1rem;
}

.ts-mt-3 {
	margin-top: 1.5rem;
}

.ts-mt-4 {
	margin-top: 2rem;
}

.ts-mb-1 {
	margin-bottom: 0.5rem;
}

.ts-mb-2 {
	margin-bottom: 1rem;
}

.ts-mb-3 {
	margin-bottom: 1.5rem;
}

.ts-mb-4 {
	margin-bottom: 2rem;
}

.ts-hidden {
	display: none;
}

.ts-flex {
	display: flex;
}

.ts-flex-column {
	flex-direction: column;
}

.ts-flex-center {
	justify-content: center;
	align-items: center;
}

.ts-gap-1 {
	gap: 0.5rem;
}

.ts-gap-2 {
	gap: 1rem;
}

.ts-gap-3 {
	gap: 1.5rem;
}

/* ========== ADDITIONAL STYLES FOR PAGES ========== */

/* Academic Research Section */
.ts-research-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

.ts-research-content {
	background-color: var(--ts-bg-secondary);
	padding: 2.5rem;
	border-radius: 0.75rem;
	box-shadow: var(--ts-shadow);
}

.ts-research-image {
	border-radius: 0.75rem;
	height: 100%;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: var(--ts-shadow);
}

.ts-research-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ts-stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 2rem;
}

.ts-stat-box {
	text-align: center;
	padding: 1.5rem;
	background-color: var(--ts-bg-primary);
	border-radius: 0.5rem;
}

.ts-stat-number {
	font-family: 'Montserrat', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	color: var(--ts-accent-blue);
}

.ts-stat-label {
	color: var(--ts-text-secondary);
	font-size: 0.875rem;
	margin-top: 0.5rem;
}

/* Innovation Cards */
.ts-innovation-card {
	background: linear-gradient(135deg, var(--ts-accent-blue) 0%, #1d4ed8 100%);
	color: #ffffff;
	padding: 2.5rem;
	border-radius: 0.75rem;
	box-shadow: var(--ts-shadow-lg);
	transition: var(--ts-transition);
}

.ts-innovation-card:hover {
	transform: translateY(-5px) scale(1.02);
}

.ts-innovation-card h3 {
	color: #ffffff;
	margin-bottom: 1rem;
}

.ts-innovation-card p {
	color: rgba(255, 255, 255, 0.9);
}

/* Feature List */
.ts-feature-list {
	list-style: none;
}

.ts-feature-list li {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.5rem;
	padding: 1rem;
	background-color: var(--ts-bg-primary);
	border-radius: 0.5rem;
	transition: var(--ts-transition);
}

.ts-feature-list li:hover {
	background-color: var(--ts-bg-secondary);
	box-shadow: var(--ts-shadow);
}

.ts-feature-icon {
	color: var(--ts-accent-green);
	font-size: 1.5rem;
	min-width: 30px;
}

.ts-feature-text h4 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--ts-text-primary);
}

.ts-feature-text p {
	color: var(--ts-text-secondary);
	line-height: 1.6;
}

/* Comparison Table Enhanced */
.ts-comparison-table {
	background-color: var(--ts-bg-secondary);
	border-radius: 0.75rem;
	overflow-x: auto;
	box-shadow: var(--ts-shadow);
}

.ts-comparison-table th {
	background: linear-gradient(135deg, var(--ts-accent-blue) 0%, #1d4ed8 100%);
	color: #ffffff;
	font-weight: 600;
}

.ts-comparison-rating {
	display: flex;
	gap: 0.25rem;
	color: #ffc107;
}

/* Image Gallery */
.ts-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
}

.ts-gallery-item {
	position: relative;
	border-radius: 0.75rem;
	overflow: hidden;
	box-shadow: var(--ts-shadow);
	transition: var(--ts-transition);
}

.ts-gallery-item:hover {
	transform: scale(1.05);
	box-shadow: var(--ts-shadow-lg);
}

.ts-gallery-item img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	display: block;
}

.ts-gallery-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	color: #ffffff;
	padding: 1rem;
	transform: translateY(100%);
	transition: var(--ts-transition);
}

.ts-gallery-item:hover .ts-gallery-overlay {
	transform: translateY(0);
}

/* Quote Block */
.ts-quote {
	background-color: var(--ts-bg-secondary);
	border-left: 4px solid var(--ts-accent-blue);
	padding: 2rem;
	margin: 2rem 0;
	border-radius: 0 0.5rem 0.5rem 0;
	box-shadow: var(--ts-shadow);
}

.ts-quote-text {
	font-size: 1.25rem;
	font-style: italic;
	color: var(--ts-text-primary);
	margin-bottom: 1rem;
	line-height: 1.7;
}

.ts-quote-author {
	font-weight: 600;
	color: var(--ts-accent-blue);
}

/* Info Box */
.ts-info-box {
	background-color: rgba(37, 99, 235, 0.05);
	border: 2px solid var(--ts-accent-blue);
	border-radius: 0.75rem;
	padding: 1.5rem;
	margin: 2rem 0;
}

.ts-info-box-title {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-weight: 600;
	color: var(--ts-accent-blue);
	margin-bottom: 1rem;
}

.ts-info-box-title i {
	font-size: 1.5rem;
}

.ts-info-box-content {
	color: var(--ts-text-secondary);
	line-height: 1.7;
}

/* Progress Bar */
.ts-progress {
	background-color: var(--ts-bg-primary);
	border-radius: 9999px;
	height: 10px;
	overflow: hidden;
	margin-bottom: 1rem;
}

.ts-progress-bar {
	height: 100%;
	background: linear-gradient(
		90deg,
		var(--ts-accent-blue) 0%,
		var(--ts-accent-green) 100%
	);
	border-radius: 9999px;
	transition: width 1s ease;
}

.ts-progress-label {
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.5rem;
	font-size: 0.875rem;
}

.ts-progress-label-title {
	font-weight: 600;
	color: var(--ts-text-primary);
}

.ts-progress-label-value {
	color: var(--ts-accent-blue);
	font-weight: 600;
}

@media (max-width: 768px) {
	.ts-research-grid {
		grid-template-columns: 1fr;
	}

	.ts-stats-grid {
		grid-template-columns: 1fr;
	}
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
	.ts-heading-xl {
		font-size: 2.5rem;
	}

	.ts-heading-lg {
		font-size: 2rem;
	}

	.ts-grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.ts-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.ts-footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ts-timeline::before {
		left: 20px;
	}

	.ts-timeline-item {
		grid-template-columns: 1fr;
	}

	.ts-timeline-item .ts-timeline-content {
		grid-column: 1;
		margin-left: 50px;
	}

	.ts-timeline-marker {
		left: 20px !important;
	}

	.ts-timeline-item:nth-child(even) .ts-timeline-content {
		grid-column: 1;
	}
	.ts-stats-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 840px) {
	.ts-nav {
		position: fixed;
		top: 0;
		left: -100%;
		width: 80%;
		max-width: 300px;
		height: 100vh;
		background-color: var(--ts-bg-secondary);
		flex-direction: column;
		align-items: flex-start;
		padding: 5rem 2rem 2rem;
		gap: 1rem;
		transition: left 0.3s ease;
		box-shadow: var(--ts-shadow-lg);
		z-index: 999;
	}

	.ts-nav.ts-open {
		left: 0;
	}

	.ts-mobile-toggle {
		display: block;
		z-index: 1000;
	}
}

@media (max-width: 768px) {
	.ts-header-container {
		padding: 1rem 1.5rem;
	}

	.ts-hero h1 {
		font-size: 2rem;
	}

	.ts-hero-subtitle {
		font-size: 1rem;
	}

	.ts-hero-actions {
		flex-direction: column;
		gap: 1rem;
	}

	.ts-stats-grid {
		grid-template-columns: 1fr;
	}

	.ts-section {
		padding: 3rem 0;
	}

	.ts-section-title {
		font-size: 1.875rem;
	}

	.ts-grid-2,
	.ts-grid-3,
	.ts-grid-4 {
		grid-template-columns: 1fr;
	}

	.ts-footer-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.ts-cookie-popup {
		left: 1rem;
		right: 1rem;
		bottom: 1rem;
	}

	.ts-container {
		padding: 0 1.5rem;
	}

	.ts-form-section,
	.ts-contact-info {
		padding: 2rem;
	}

	.ts-tab-header {
		flex-direction: column;
	}

	.ts-testimonial-slider {
		display: block;
	}
}

@media (max-width: 480px) {
	.ts-heading-xl {
		font-size: 1.875rem;
	}

	.ts-testimonial {
		padding: 1rem;
	}

	.ts-logo,
	.ts-card-title {
		font-size: 1.3rem;
	}

	.ts-card-title {
		font-size: 1.3rem;
		word-wrap: break-word;
	}

	.ts-heading-lg {
		font-size: 1.5rem;
	}

	.ts-card {
		padding: 1.5rem;
	}

	.ts-research-grid,
	.ts-grid-2,
	.ts-grid-3,
	.ts-grid-4 {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.ts-grid-small {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	}

	.ts-heading-md {
		font-size: 1.3rem;
		word-wrap: break-word;
	}
	.ts-feature-text h4 {
		font-size: 1.3rem;
		word-break: break-all;
	}
	.ts-quote-text {
		font-size: 1rem;
	}

	.ts-heading-sm {
		font-size: 1.1rem;
	}

	.ts-feature-list li {
		flex-direction: column;
	}

	.ts-btn {
		padding: 0.75rem 1.5rem;
		font-size: 0.875rem;
	}

	.ts-timeline-item .ts-timeline-content {
		margin-left: 0;
	}

	.ts-timeline-marker,
	.ts-timeline::before {
		display: none;
	}

	.ts-section-title {
		font-size: 1.5rem;
	}
	.ts-accordion-header {
		padding: 1rem;
		gap: 10px;
	}
}

.ts-legal-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 40px 20px;
	min-height: 100vh;
}

/* === Основной контент === */
.ts-legal-content {
	background-color: #ffffff;
	border-radius: 12px;
	padding: 50px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}

/* === Заголовок документа === */
.ts-legal-header {
	border-bottom: 2px solid #e2e8f0;
	padding-bottom: 30px;
	margin-bottom: 40px;
}

.ts-legal-title {
	font-size: 36px;
	font-weight: 700;
	color: #2563eb;
	margin-bottom: 12px;
	letter-spacing: -0.5px;
}

.ts-legal-updated {
	font-size: 14px;
	color: #64748b;
	font-style: italic;
}

/* === Введение === */
.ts-legal-intro {
	background-color: #f1f5f9;
	border-left: 4px solid #22c55e;
	padding: 24px 28px;
	margin-bottom: 40px;
	border-radius: 6px;
}

.ts-legal-intro p {
	font-size: 17px;
	line-height: 1.8;
	color: #334155;
}

/* === Секции === */
.ts-legal-section {
	margin-bottom: 48px;
}

.ts-legal-section-title {
	font-size: 24px;
	font-weight: 600;
	color: #1e293b;
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 1px solid #e2e8f0;
}

.ts-legal-section-content {
	padding-left: 0;
}

.ts-legal-section-content p {
	margin-bottom: 18px;
	line-height: 1.8;
	color: #334155;
}

.ts-legal-section-content p:last-child {
	margin-bottom: 0;
}

.ts-legal-section-content strong {
	color: #1e293b;
	font-weight: 600;
}

/* === Ссылки === */
.ts-legal-link {
	color: #2563eb;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: all 0.2s ease;
	font-weight: 500;
}

.ts-legal-link:hover {
	color: #1d4ed8;
	border-bottom-color: #2563eb;
}

.ts-legal-link:active {
	color: #1e40af;
}

/* === Футер документа === */
.ts-legal-footer {
	margin-top: 60px;
	padding-top: 40px;
	border-top: 2px solid #e2e8f0;
}

.ts-legal-contact {
	background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
	padding: 32px;
	border-radius: 10px;
	border: 1px solid #dbeafe;
}

.ts-legal-contact-title {
	font-size: 20px;
	font-weight: 600;
	color: #2563eb;
	margin-bottom: 16px;
}

.ts-legal-contact p {
	margin-bottom: 12px;
	color: #334155;
}

.ts-legal-contact-details {
	margin-top: 20px;
	padding: 20px;
	background-color: #ffffff;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
}

.ts-legal-contact-details p {
	margin-bottom: 8px;
	font-size: 15px;
	line-height: 1.6;
}

.ts-legal-contact-details p:last-child {
	margin-bottom: 0;
}

/* === Адаптивность === */

/* Планшеты и небольшие ноутбуки */
@media screen and (max-width: 768px) {
	.ts-legal-container {
		padding: 30px 15px;
	}

	.ts-legal-content {
		padding: 35px 25px;
		border-radius: 8px;
	}

	.ts-legal-title {
		font-size: 2rem;
		line-height: 1.3;
	}

	.ts-legal-section-title {
		font-size: 21px;
	}

	.ts-legal-intro {
		padding: 20px 22px;
	}

	.ts-legal-intro p {
		font-size: 16px;
	}

	.ts-legal-section {
		margin-bottom: 36px;
	}

	.ts-legal-contact {
		padding: 24px;
	}

	.ts-legal-contact-details {
		padding: 16px;
	}
}

/* Мобильные устройства */
@media screen and (max-width: 480px) {
	.ts-legal-container {
		padding: 20px 12px;
	}

	.ts-legal-content {
		padding: 25px 18px;
		border-radius: 6px;
	}

	.ts-legal-header {
		padding-bottom: 20px;
		margin-bottom: 30px;
	}

	.ts-legal-title {
		font-size: 1.3rem;
		line-height: 1.3;
		margin-bottom: 10px;
	}

	.ts-legal-updated {
		font-size: 13px;
	}

	.ts-legal-intro {
		padding: 16px 18px;
		margin-bottom: 30px;
	}

	.ts-legal-intro p {
		font-size: 15px;
		line-height: 1.7;
	}

	.ts-legal-section {
		margin-bottom: 32px;
	}

	.ts-legal-section-title {
		font-size: 19px;
		margin-bottom: 16px;
		padding-bottom: 10px;
	}

	.ts-legal-section-content p {
		margin-bottom: 16px;
		font-size: 15px;
	}

	.ts-legal-footer {
		margin-top: 40px;
		padding-top: 30px;
	}

	.ts-legal-contact {
		padding: 20px;
	}

	.ts-legal-contact-title {
		font-size: 18px;
		margin-bottom: 14px;
	}

	.ts-legal-contact-details {
		margin-top: 16px;
		padding: 14px;
	}

	.ts-legal-contact-details p {
		font-size: 14px;
	}
}
