@import url('https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css');
@import url('https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Sora:wght@400;500;600;700;800&display=swap');

:root {
  --primary-coral: #FF6B6B;
  --primary-coral-light: #FF8787;
  --primary-coral-dark: #EE5A5A;
  --secondary-teal: #4ECDC4;
  --secondary-teal-light: #6FD9D1;
  --secondary-teal-dark: #3DBDB5;
  --accent-peach: #FFE66D;
  --accent-lavender: #A8DADC;
  --accent-mint: #95E1D3;
  --neutral-warm: #F7F3F0;
  --neutral-sand: #E8DED2;
  --text-primary: #2D3142;
  --text-secondary: #5A5F73;
  --text-light: #8B8FA3;
  --white: #FFFFFF;
  --shadow-soft: 0 4px 20px rgba(78, 205, 196, 0.15);
  --shadow-medium: 0 8px 30px rgba(255, 107, 107, 0.2);
  --shadow-strong: 0 15px 50px rgba(45, 49, 66, 0.25);
  --gradient-hero: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
  --gradient-card: linear-gradient(145deg, #FFFFFF 0%, #F7F3F0 100%);
  --gradient-accent: linear-gradient(90deg, #FFE66D 0%, #FF6B6B 100%);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-primary);
  background-color: var(--neutral-warm);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: 1.0625rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 25px rgba(45, 49, 66, 0.08);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.header.scrolled {
  box-shadow: var(--shadow-medium);
  background: rgba(255, 255, 255, 0.95);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Sora', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  transition: var(--transition-smooth);
}

.logo:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  list-style: none;
}

.nav-link {
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-primary);
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-hero);
  transition: width 0.4s ease;
  border-radius: 3px;
}

.nav-link:hover {
  color: var(--primary-coral);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active::after {
  width: 100%;
}

.mobile-toggle {
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition-smooth);
  border-radius: 8px;
}

.mobile-toggle:hover {
  background: var(--neutral-sand);
  color: var(--primary-coral);
  transform: scale(1.1);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--white);
  box-shadow: -5px 0 50px rgba(0, 0, 0, 0.2);
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1100;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--neutral-sand);
}

.mobile-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition-smooth);
  border-radius: 8px;
}

.mobile-close:hover {
  background: var(--neutral-sand);
  color: var(--primary-coral);
  transform: rotate(90deg);
}

.mobile-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 1rem;
  border-radius: 12px;
  transition: var(--transition-smooth);
  display: block;
}

.mobile-nav-link:hover {
  background: var(--neutral-sand);
  color: var(--primary-coral);
  transform: translateX(10px);
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-hero);
  color: var(--white);
  box-shadow: 0 5px 20px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-coral);
  border: 2px solid var(--primary-coral);
}

.btn-secondary:hover {
  background: var(--primary-coral);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--secondary-teal);
}

.btn-outline:hover {
  background: var(--secondary-teal);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
}

.btn-lg {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
}

.section {
  padding: 5rem 2rem;
  position: relative;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-coral);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 107, 107, 0.1);
  border-radius: 50px;
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--gradient-card);
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 150%;
  background: var(--gradient-hero);
  opacity: 0.1;
  border-radius: 50%;
  transform: rotate(-15deg);
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 120%;
  background: var(--secondary-teal);
  opacity: 0.08;
  border-radius: 50%;
  transform: rotate(20deg);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  animation: fadeInUp 1s ease;
}

.hero-image {
  animation: fadeInRight 1s ease 0.3s both;
}

.hero-image img {
  border-radius: 30px;
  box-shadow: var(--shadow-strong);
}

.card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-hero);
  transform: scaleX(0);
  transition: transform 0.5s ease;
  transform-origin: left;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-hero);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  transition: var(--transition-bounce);
}

.card:hover .card-icon {
  transform: rotate(10deg) scale(1.1);
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.card-description {
  color: var(--text-secondary);
  line-height: 1.7;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-family: 'Sora', sans-serif;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  border: 2px solid var(--neutral-sand);
  border-radius: 12px;
  background: var(--white);
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--secondary-teal);
  box-shadow: 0 0 0 4px rgba(78, 205, 196, 0.1);
  background: var(--white);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-light);
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
}

.form-error {
  color: var(--primary-coral);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: block;
}

.form-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid var(--neutral-sand);
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
  flex-shrink: 0;
  margin-top: 2px;
}

.form-checkbox:checked {
  background: var(--secondary-teal);
  border-color: var(--secondary-teal);
}

.form-checkbox-label {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  max-width: 600px;
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-strong);
  z-index: 1000;
  transform: translateY(150%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-banner-content {
  margin-bottom: 1.5rem;
}

.cookie-banner-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.cookie-banner-text {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.cookie-banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.accordion {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.5rem;
}

.accordion-item {
  border-bottom: 1px solid var(--neutral-sand);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Sora', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
  position: relative;
}

.accordion-header:hover {
  background: var(--neutral-warm);
  color: var(--primary-coral);
}

.accordion-icon {
  font-size: 1.5rem;
  color: var(--secondary-teal);
  transition: transform 0.4s ease;
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-content.active {
  max-height: 1000px;
  padding: 0 2rem 1.5rem;
}

.accordion-body {
  color: var(--text-secondary);
  line-height: 1.8;
}

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--secondary-teal);
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.testimonial-role {
  font-size: 0.9375rem;
  color: var(--text-light);
}

.stats-section {
  background: var(--gradient-hero);
  padding: 4rem 2rem;
  border-radius: 30px;
  margin: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: 'Sora', sans-serif;
}

.stat-label {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.cta-section {
  background: var(--gradient-hero);
  border-radius: 30px;
  padding: 5rem 3rem;
  text-align: center;
  margin: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-section h2,
.cta-section p {
  color: var(--white);
}

.cta-section .section-subtitle {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.footer {
  background: var(--text-primary);
  color: var(--white);
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  font-family: 'Sora', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  display: block;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background: var(--primary-coral);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-family: 'Sora', sans-serif;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-smooth);
  display: inline-block;
}

.footer-link:hover {
  color: var(--primary-coral);
  transform: translateX(5px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  transition: var(--transition-smooth);
}

.footer-legal-link:hover {
  color: var(--primary-coral);
}

.loader {
  width: 50px;
  height: 50px;
  border: 5px solid var(--neutral-sand);
  border-top-color: var(--primary-coral);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 2rem auto;
}

.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.animate-pulse {
  animation: pulse 2s infinite;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--neutral-sand);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-teal);
  border-radius: 6px;
  transition: var(--transition-smooth);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-coral);
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50px;
  background: rgba(78, 205, 196, 0.15);
  color: var(--secondary-teal);
}

.badge-primary {
  background: rgba(255, 107, 107, 0.15);
  color: var(--primary-coral);
}

.badge-success {
  background: rgba(149, 225, 211, 0.15);
  color: var(--accent-mint);
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--neutral-sand);
  margin: 3rem 0;
}

.divider-gradient {
  background: var(--gradient-hero);
  height: 3px;
  border-radius: 3px;
}

.tag {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--neutral-sand);
  color: var(--text-primary);
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.tag:hover {
  background: var(--secondary-teal);
  color: var(--white);
  transform: translateY(-2px);
}

.icon-box {
  width: 50px;
  height: 50px;
  background: var(--neutral-sand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-coral);
  transition: var(--transition-bounce);
}

.icon-box:hover {
  background: var(--primary-coral);
  color: var(--white);
  transform: rotate(10deg) scale(1.1);
}

.alert {
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.alert-info {
  background: rgba(78, 205, 196, 0.1);
  border-left: 4px solid var(--secondary-teal);
  color: var(--text-primary);
}

.alert-success {
  background: rgba(149, 225, 211, 0.1);
  border-left: 4px solid var(--accent-mint);
  color: var(--text-primary);
}

.alert-warning {
  background: rgba(255, 230, 109, 0.2);
  border-left: 4px solid var(--accent-peach);
  color: var(--text-primary);
}

.alert-error {
  background: rgba(255, 107, 107, 0.1);
  border-left: 4px solid var(--primary-coral);
  color: var(--text-primary);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 49, 66, 0.8);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal {
  transform: scale(1);
}

.modal-header {
  padding: 2rem 2.5rem;
  border-bottom: 1px solid var(--neutral-sand);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--text-primary);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  background: var(--neutral-sand);
  color: var(--primary-coral);
  transform: rotate(90deg);
}

.modal-body {
  padding: 2rem 2.5rem;
}

.modal-footer {
  padding: 1.5rem 2.5rem;
  border-top: 1px solid var(--neutral-sand);
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.breadcrumb-item {
  color: var(--text-light);
  transition: var(--transition-smooth);
}

.breadcrumb-item:hover {
  color: var(--primary-coral);
}

.breadcrumb-item.active {
  color: var(--text-primary);
  font-weight: 600;
}

.breadcrumb-separator {
  color: var(--text-light);
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 1;
}

.gallery-item:hover::before {
  opacity: 0.7;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--neutral-sand);
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-hero);
  border-radius: 10px;
  transition: width 0.5s ease;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip-text {
  visibility: hidden;
  background: var(--text-primary);
  color: var(--white);
  text-align: center;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: var(--transition-smooth);
  white-space: nowrap;
  font-size: 0.875rem;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 55px;
  height: 55px;
  background: var(--gradient-hero);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-medium);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

@media (max-width: 1024px) {
  .header-container {
    padding: 1rem 1.5rem;
  }

  .nav-menu {
    gap: 1.5rem;
  }

  .section {
    padding: 4rem 1.5rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .nav-menu {
    display: none;
  }

  .section {
    padding: 3rem 1.25rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .hero-section {
    min-height: 70vh;
    padding-top: 5rem;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .card {
    padding: 2rem;
  }

  .cta-section {
    padding: 3rem 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1.5rem;
  }

  .cookie-banner-actions {
    flex-direction: column;
  }

  .cookie-banner-actions .btn {
    width: 100%;
  }

  .modal-header,
  .modal-body,
  .modal-footer {
    padding: 1.5rem;
  }

  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 1rem;
  }

  .logo {
    font-size: 1.5rem;
  }

  .section {
    padding: 2.5rem 1rem;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }

  .btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .card {
    padding: 1.5rem;
  }

  .card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .footer {
    padding: 3rem 1rem 1.5rem;
  }

  .mobile-menu {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}