@import url('https://fonts.googleapis.com/css2?family=Anybody:wght@400;600;800&family=Figtree:wght@300;400;500;600&display=swap');

:root {
  --color-primary: #0C2B4E;
  --color-secondary: #1A3D64;
  --color-accent: #1D546C;
  --color-light: #F4F4F4;
  --color-white: #ffffff;
  --color-dark: #0a1f38;
  --color-text: #2a3a4a;
  --color-text-light: #5a6a7a;
  --color-overlay: rgba(12, 43, 78, 0.9);
  
  --font-display: 'Anybody', sans-serif;
  --font-body: 'Figtree', sans-serif;
  
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.5rem;
  --fs-xl: 2rem;
  --fs-2xl: 2.5rem;
  --fs-3xl: 3.5rem;
  --fs-hero: clamp(2.5rem, 8vw, 5rem);
  
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 50%;
  
  --shadow-sm: 0 2px 8px rgba(12, 43, 78, 0.08);
  --shadow-md: 0 4px 16px rgba(12, 43, 78, 0.12);
  --shadow-lg: 0 8px 32px rgba(12, 43, 78, 0.16);
  --shadow-xl: 0 16px 48px rgba(12, 43, 78, 0.2);
  
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-primary);
}

h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-sm {
  max-width: 60rem;
}

.header {
  position: fixed;
  top: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - var(--space-2xl));
  max-width: 70rem;
  transition: all var(--transition-base);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-overlay);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled .header-inner {
  background: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

.logo {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.logo span {
  color: var(--color-light);
  opacity: 0.7;
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  gap: var(--space-xl);
}

.nav-desktop a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-light);
  opacity: 0.85;
  transition: opacity var(--transition-fast);
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-light);
  transition: width var(--transition-base);
}

.nav-desktop a:hover {
  opacity: 1;
  color: var(--color-white);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  z-index: 1001;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition-base);
  transform-origin: center;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 999;
}

.nav-mobile.active {
  opacity: 1;
  visibility: visible;
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 600;
  color: var(--color-white);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-base);
}

.nav-mobile.active a {
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile a:nth-child(1) { transition-delay: 0.1s; }
.nav-mobile a:nth-child(2) { transition-delay: 0.15s; }
.nav-mobile a:nth-child(3) { transition-delay: 0.2s; }
.nav-mobile a:nth-child(4) { transition-delay: 0.25s; }
.nav-mobile a:nth-child(5) { transition-delay: 0.3s; }

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-accent) 100%);
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-4xl) 0;
  max-width: 50rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) var(--space-md);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--color-light);
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeSlideUp 0.8s ease forwards;
  opacity: 0;
}

.hero-title {
  font-size: var(--fs-hero);
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  animation: fadeSlideUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-title span {
  background: linear-gradient(90deg, var(--color-light), #8bb8d0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: var(--fs-md);
  color: var(--color-light);
  opacity: 0.85;
  max-width: 35rem;
  margin-bottom: var(--space-xl);
  animation: fadeSlideUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  animation: fadeSlideUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--fs-sm);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-light);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--color-white);
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn-accent:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.section {
  padding: var(--space-4xl) 0;
}

.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto var(--space-3xl);
}

.section-label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-text {
  color: var(--color-text-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.feature-card {
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-md);
}

.feature-title {
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
}

.feature-text {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  margin-bottom: 0;
}

.about-section {
  background: var(--color-white);
}

.about-grid {
  display: grid;
  gap: var(--space-3xl);
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(12, 43, 78, 0.2), transparent);
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(12, 43, 78, 0.1);
}

.stat-item {
  flex: 1;
  min-width: 100px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
  margin-top: var(--space-xs);
}

.courses-section {
  background: linear-gradient(180deg, var(--color-light) 0%, var(--color-white) 100%);
}

.courses-grid {
  display: grid;
  gap: var(--space-xl);
}

.course-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.course-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.course-card:hover .course-image img {
  transform: scale(1.05);
}

.course-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: var(--space-xs) var(--space-sm);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: var(--fs-xs);
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.course-content {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-title {
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
}

.course-text {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  flex: 1;
}

.course-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(12, 43, 78, 0.1);
}

.course-price {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 800;
  color: var(--color-primary);
}

.course-duration {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}

.cta-title {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.cta-text {
  color: var(--color-light);
  opacity: 0.85;
  margin-bottom: var(--space-xl);
}

.testimonials-section {
  background: var(--color-white);
}

.testimonials-slider {
  display: flex;
  gap: var(--space-xl);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: var(--space-md);
  margin: calc(var(--space-md) * -1);
  scrollbar-width: none;
  justify-content: center;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  background: var(--color-light);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  position: relative;
}

.testimonial-quote {
  font-size: var(--fs-3xl);
  color: var(--color-accent);
  opacity: 0.3;
  position: absolute;
  top: var(--space-md);
  left: var(--space-lg);
  font-family: serif;
  line-height: 1;
}

.testimonial-text {
  font-size: var(--fs-md);
  font-style: italic;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 600;
}

.testimonial-name {
  font-weight: 600;
  color: var(--color-primary);
}

.testimonial-role {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
}

.contact-section {
  position: relative;
}

.contact-wrapper {
  display: grid;
  gap: var(--space-3xl);
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-info {
  padding: var(--space-2xl);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  color: var(--color-white);
}

.contact-info-title {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.contact-info-text {
  opacity: 0.85;
  margin-bottom: var(--space-xl);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-item i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.contact-item-content {
  display: flex;
  flex-direction: column;
}

.contact-item-label {
  font-size: var(--fs-xs);
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-item-value {
  font-weight: 500;
}

.contact-item-value a {
  color: var(--color-white);
}

.contact-form-wrapper {
  padding: var(--space-2xl);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-group {
  position: relative;
}

.form-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--fs-sm);
  border: 2px solid rgba(12, 43, 78, 0.1);
  border-radius: var(--radius-md);
  background: var(--color-light);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: var(--color-white);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-accent);
  flex-shrink: 0;
}

.form-checkbox label {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
  line-height: 1.4;
}

.form-checkbox a {
  text-decoration: underline;
}

.map-section {
  height: 300px;
  position: relative;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%);
}

.footer {
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-xl) 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-md);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-links a {
  font-size: var(--fs-xs);
  color: var(--color-light);
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--color-white);
}

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: var(--fs-xs);
  opacity: 0.5;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-popup {
  position: fixed;
  bottom: var(--space-lg);
  left: var(--space-lg);
  right: var(--space-lg);
  max-width: 400px;
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  transform: translateY(150%);
  transition: transform var(--transition-base);
}

.cookie-popup.active {
  transform: translateY(0);
}

.cookie-popup-title {
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
}

.cookie-popup-text {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.cookie-popup-buttons {
  display: flex;
  gap: var(--space-sm);
}

.cookie-popup-buttons .btn {
  flex: 1;
  padding: var(--space-sm);
}

.page-header {
  padding: calc(var(--space-4xl) + 60px) 0 var(--space-3xl);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-accent) 100%);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-title {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.page-subtitle {
  color: var(--color-light);
  opacity: 0.85;
  font-size: var(--fs-md);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: var(--fs-sm);
}

.breadcrumb a {
  color: var(--color-light);
  opacity: 0.7;
}

.breadcrumb a:hover {
  opacity: 1;
  color: var(--color-white);
}

.breadcrumb span {
  color: var(--color-light);
  opacity: 0.5;
}

.asymmetric-layout {
  position: relative;
}

.asymmetric-section {
  position: relative;
  padding: var(--space-4xl) 0;
}

.asymmetric-section:nth-child(odd) {
  background: var(--color-white);
}

.asymmetric-section:nth-child(even) {
  background: var(--color-light);
}

.asymmetric-content {
  display: grid;
  gap: var(--space-2xl);
  align-items: center;
}

.asymmetric-text {
  position: relative;
  z-index: 2;
}

.asymmetric-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.offset-left {
  margin-left: calc(var(--space-xl) * -1);
}

.offset-right {
  margin-right: calc(var(--space-xl) * -1);
}

.angle-cut {
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
  padding: calc(var(--space-4xl) + 3%) 0;
  margin: calc(var(--space-xl) * -1) 0;
  background: var(--color-primary);
}

.angle-cut .section-label,
.angle-cut .section-title,
.angle-cut .section-text {
  color: var(--color-white);
}

.angle-cut .section-label {
  opacity: 0.7;
}

.floating-element {
  position: absolute;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.floating-element-1 {
  width: 200px;
  height: 200px;
  top: 20%;
  right: 10%;
}

.floating-element-2 {
  width: 100px;
  height: 100px;
  bottom: 30%;
  left: 5%;
  animation-delay: -3s;
}

.overlap-card {
  position: relative;
  z-index: 2;
  margin-top: calc(var(--space-3xl) * -1);
  background: var(--color-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.thank-you-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  position: relative;
  overflow: hidden;
}

.thank-you-content {
  position: relative;
  z-index: 2;
  padding: var(--space-2xl);
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-xl);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-3xl);
  color: var(--color-white);
  animation: pulse 2s ease-in-out infinite;
}

.thank-you-title {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.thank-you-text {
  color: var(--color-light);
  opacity: 0.85;
  max-width: 30rem;
  margin: 0 auto var(--space-xl);
}

.error-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--color-light);
}

.error-content {
  padding: var(--space-2xl);
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
}

.error-title {
  margin-bottom: var(--space-md);
}

.error-text {
  color: var(--color-text-light);
  max-width: 25rem;
  margin: 0 auto var(--space-xl);
}

.policy-content {
  padding: var(--space-3xl) 0;
}

.policy-content h2 {
  font-size: var(--fs-xl);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.policy-content h3 {
  font-size: var(--fs-lg);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.policy-content p {
  margin-bottom: var(--space-md);
}

.policy-content ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.policy-content li {
  position: relative;
  padding-left: var(--space-md);
  margin-bottom: var(--space-sm);
}

.policy-content li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.lab-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 20px;
}

.lab-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lab-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(12, 43, 78, 0.3) 0%, rgba(12, 43, 78, 0.9) 100%);
}

.lab-hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-3xl) 0;
  width: 100%;
}

.lab-hero-title {
  color: var(--color-white);
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-md);
}

.lab-hero-text {
  color: var(--color-light);
  opacity: 0.9;
  max-width: 35rem;
}

.lab-features {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.lab-feature {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  color: var(--color-light);
}

.lab-feature i {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal.delay-1 { transition-delay: 0.1s; }
.scroll-reveal.delay-2 { transition-delay: 0.2s; }
.scroll-reveal.delay-3 { transition-delay: 0.3s; }
.scroll-reveal.delay-4 { transition-delay: 0.4s; }

@media (min-width: 640px) {
  .testimonial-card {
    flex: 0 0 80%;
  }
  
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: block;
  }
  
  .burger {
    display: none;
  }
  
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr 1.2fr;
  }
  
  .testimonial-card {
    flex: 0 0 50%;
  }
  
  .asymmetric-content {
    grid-template-columns: 1fr 1fr;
  }
  
  
  .asymmetric-section:nth-child(even) .asymmetric-content > * {
    direction: ltr;
  }
  
  .lab-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .courses-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .testimonial-card {
    flex: 0 0 calc(33.333% - var(--space-xl));
  }
  
  .offset-left {
    margin-left: calc(var(--space-3xl) * -1);
  }
  
  .offset-right {
    margin-right: calc(var(--space-3xl) * -1);
  }
}

@media (max-width: 480px) {
  :root {
    --fs-3xl: 2.5rem;
    --fs-2xl: 2rem;
    --fs-xl: 1.5rem;
    --fs-hero: 2.25rem;
  }
  
  .header {
    top: var(--space-sm);
    width: calc(100% - var(--space-lg));
  }
  
  .header-inner {
    padding: var(--space-xs) var(--space-md);
  }
  
  .hero-content {
    padding: var(--space-3xl) 0;
  }
  
  .section {
    padding: var(--space-3xl) 0;
  }
  
  .container {
    padding: 0 var(--space-md);
  }
  
  .cookie-popup {
    left: var(--space-sm);
    right: var(--space-sm);
  }
  
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }

  .contact-info {
    padding: var(--space-lg);
    word-break: break-all;
  }

  .policy-content{
    word-break: break-all;
  }

  .feature-card{
    word-break: break-all;
  }
}

@media (max-width: 320px) {
  :root {
    font-size: 14px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
}

