:root {
  --navy-deep: #0A2463;
  --navy-medium: #1E3A8A;
  --teal-primary: #00B4D8;
  --teal-light: #90E0EF;
  --coral-accent: #FF6B6B;
  --coral-soft: #FF8E8E;
  --neutral-dark: #2D3748;
  --neutral-medium: #4A5568;
  --neutral-light: #E2E8F0;
  --neutral-bg: #F7FAFC;
  --white-soft: #FDFEFF;
  
  --shadow-sm: 0 2px 4px rgba(10, 36, 99, 0.04), 0 1px 2px rgba(10, 36, 99, 0.06);
  --shadow-md: 0 4px 6px rgba(10, 36, 99, 0.07), 0 2px 4px rgba(10, 36, 99, 0.06), 0 1px 2px rgba(10, 36, 99, 0.04);
  --shadow-lg: 0 10px 15px rgba(10, 36, 99, 0.1), 0 4px 6px rgba(10, 36, 99, 0.05), 0 2px 4px rgba(10, 36, 99, 0.03);
  --shadow-xl: 0 20px 25px rgba(10, 36, 99, 0.12), 0 10px 10px rgba(10, 36, 99, 0.04), 0 4px 4px rgba(10, 36, 99, 0.03);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Red Hat Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--neutral-dark);
  background: var(--white-soft);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-deep);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
}

a {
  color: var(--teal-primary);
  text-decoration: none;
  transition: var(--transition-base);
  position: relative;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 960px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-base);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::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: var(--transition-slow);
  z-index: -1;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--teal-primary), var(--teal-light));
  color: var(--white-soft);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--white-soft);
  color: var(--navy-deep);
  border: 2px solid var(--teal-primary);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--teal-primary);
  color: var(--white-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(253, 254, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition-base);
}

header.scrolled {
  background: rgba(253, 254, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-deep);
  transition: var(--transition-base);
}

.logo-link:hover {
  transform: scale(1.02);
}

.logo-link svg {
  width: 40px;
  height: 40px;
  transition: var(--transition-base);
}

.logo-link:hover svg {
  transform: rotate(5deg);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--navy-deep);
  border-radius: 3px;
  transition: var(--transition-base);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--white-soft);
  box-shadow: var(--shadow-xl);
  padding: 6rem 2rem 2rem;
  transition: var(--transition-slow);
  z-index: 1001;
  overflow-y: auto;
}

.nav-drawer.active {
  left: 0;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 36, 99, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
  z-index: 999;
}

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

.nav-drawer nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-drawer nav a {
  display: block;
  padding: 1rem 1.5rem;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy-deep);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.nav-drawer nav a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--teal-primary);
  transform: scaleY(0);
  transition: var(--transition-base);
}

.nav-drawer nav a:hover {
  background: var(--neutral-light);
  padding-left: 2rem;
  color: var(--teal-primary);
}

.nav-drawer nav a:hover::before {
  transform: scaleY(1);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid var(--neutral-light);
}

.lang-btn {
  padding: 0.5rem 1rem;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--neutral-medium);
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
}

.lang-btn:hover {
  background: var(--neutral-light);
  color: var(--teal-primary);
  transform: translateY(-2px);
}

.lang-btn.active {
  background: var(--teal-primary);
  color: var(--white-soft);
}

.lang-divider {
  color: var(--neutral-light);
  font-weight: 300;
}

.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-medium) 50%, var(--teal-primary) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(5deg); }
  66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  color: var(--white-soft);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 12px rgba(10, 36, 99, 0.3);
}

.hero p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--teal-light);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-alt {
  background: var(--neutral-bg);
}

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

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--neutral-medium);
}

.section-label {
  display: inline-block;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-primary);
  margin-bottom: 1rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
  background: var(--white-soft);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-light);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-primary), var(--coral-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-base);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--teal-light);
}

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

.card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--teal-light), var(--teal-primary));
  border-radius: var(--radius-md);
  color: var(--white-soft);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-md);
}

.card h3 {
  margin-bottom: 1rem;
  color: var(--navy-deep);
}

.card p {
  color: var(--neutral-medium);
  line-height: 1.7;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--teal-primary);
  transition: var(--transition-base);
}

.card-link:hover {
  gap: 0.75rem;
  color: var(--coral-accent);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--white-soft);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  position: relative;
  border: 2px solid transparent;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, var(--teal-primary), var(--coral-accent));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--teal-primary);
  margin-bottom: 1rem;
  transition: var(--transition-base);
}

.feature-card:hover .feature-icon {
  transform: scale(1.15);
  color: var(--coral-accent);
}

.feature-card h4 {
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--neutral-medium);
  font-size: 0.9375rem;
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(10, 36, 99, 0.1), 0 2px 8px rgba(10, 36, 99, 0.05);
  transition: var(--transition-slow);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(10, 36, 99, 0.15), 0 4px 12px rgba(10, 36, 99, 0.08);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.contact-card {
  background: var(--white-soft);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  border: 2px solid var(--neutral-light);
}

.contact-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: var(--shadow-xl);
  border-color: var(--teal-primary);
}

.contact-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--teal-primary), var(--teal-light));
  border-radius: 50%;
  color: var(--white-soft);
  font-size: 2rem;
  transition: var(--transition-base);
  box-shadow: var(--shadow-md);
}

.contact-card:hover .contact-card-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: var(--shadow-lg);
}

.contact-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.contact-card a {
  color: var(--teal-primary);
  font-weight: 600;
  font-size: 1.125rem;
  display: inline-block;
  transition: var(--transition-base);
}

.contact-card a:hover {
  color: var(--coral-accent);
  transform: scale(1.05);
}

.contact-card p {
  color: var(--neutral-medium);
  margin-top: 0.5rem;
}

.faq {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white-soft);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-light);
  overflow: hidden;
  transition: var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--teal-light);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy-deep);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-base);
}

.faq-question:hover {
  color: var(--teal-primary);
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--teal-primary);
  transition: var(--transition-base);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--coral-accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
  padding: 0 2rem 1.5rem;
  color: var(--neutral-medium);
  line-height: 1.7;
}

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

.form-group label {
  display: block;
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--neutral-light);
  border-radius: var(--radius-md);
  font-family: 'Red Hat Text', sans-serif;
  font-size: 1rem;
  color: var(--neutral-dark);
  background: var(--white-soft);
  transition: var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal-primary);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
  transform: translateY(-2px);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
  cursor: pointer;
  accent-color: var(--teal-primary);
}

.checkbox-group label {
  font-size: 0.9375rem;
  color: var(--neutral-medium);
  cursor: pointer;
}

.checkbox-group a {
  color: var(--teal-primary);
  text-decoration: underline;
}

.map-container {
  margin: 3rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--neutral-light);
  transition: var(--transition-base);
}

.map-container:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--teal-primary);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

footer {
  background: var(--navy-deep);
  color: var(--teal-light);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-primary), var(--coral-accent), var(--teal-primary));
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  color: var(--white-soft);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-section p {
  color: var(--teal-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: var(--teal-light);
  transition: var(--transition-base);
  display: inline-block;
}

.footer-section a:hover {
  color: var(--coral-accent);
  transform: translateX(4px);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white-soft);
}

.footer-logo svg {
  width: 40px;
  height: 40px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 180, 216, 0.2);
  text-align: center;
  color: var(--teal-light);
  font-size: 0.9375rem;
}

.footer-bottom a {
  color: var(--coral-soft);
}

.footer-bottom a:hover {
  color: var(--coral-accent);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 36, 99, 0.98);
  backdrop-filter: blur(16px);
  color: var(--white-soft);
  padding: 2rem;
  box-shadow: 0 -4px 24px rgba(10, 36, 99, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: var(--transition-slow);
}

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

.cookie-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
}

.cookie-text p {
  color: var(--teal-light);
  margin-bottom: 0.5rem;
}

.cookie-text a {
  color: var(--coral-soft);
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 0.875rem 1.75rem;
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
}

.cookie-btn-accept {
  background: var(--teal-primary);
  color: var(--white-soft);
}

.cookie-btn-accept:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--teal-light);
  border: 2px solid var(--teal-light);
}

.cookie-btn-decline:hover {
  background: var(--teal-light);
  color: var(--navy-deep);
}

.cookie-btn-customize {
  background: transparent;
  color: var(--coral-soft);
  border: 2px solid var(--coral-soft);
}

.cookie-btn-customize:hover {
  background: var(--coral-soft);
  color: var(--white-soft);
}

.thanks-container {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}

.thanks-content {
  max-width: 600px;
}

.thanks-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--teal-primary), var(--teal-light));
  border-radius: 50%;
  color: var(--white-soft);
  font-size: 3rem;
  box-shadow: var(--shadow-lg);
  animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thanks-content h1 {
  margin-bottom: 1rem;
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.thanks-content p {
  font-size: 1.125rem;
  color: var(--neutral-medium);
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

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

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 0;
}

.legal-content h1 {
  margin-bottom: 1rem;
}

.legal-content .last-updated {
  color: var(--neutral-medium);
  font-size: 0.9375rem;
  margin-bottom: 3rem;
  font-style: italic;
}

.legal-content h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.legal-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.375rem;
}

.legal-content p {
  margin-bottom: 1.25rem;
  color: var(--neutral-medium);
}

.legal-content ul,
.legal-content ol {
  margin-left: 2rem;
  margin-bottom: 1.25rem;
  color: var(--neutral-medium);
}

.legal-content li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.legal-content a {
  color: var(--teal-primary);
  text-decoration: underline;
}

.legal-content strong {
  color: var(--navy-deep);
  font-weight: 600;
}

.image-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 4rem 0;
}

.image-feature img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-base);
}

.image-feature img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.image-feature-content h3 {
  margin-bottom: 1rem;
}

.image-feature-content p {
  color: var(--neutral-medium);
  margin-bottom: 1rem;
}

.image-feature-reverse {
  direction: rtl;
}

.image-feature-reverse > * {
  direction: ltr;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: var(--white-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  border: 2px solid transparent;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--teal-primary);
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--teal-primary);
  margin-bottom: 1rem;
  transition: var(--transition-base);
}

.stat-card:hover .stat-icon {
  transform: scale(1.2) rotate(10deg);
  color: var(--coral-accent);
}

.stat-card h4 {
  font-size: 1.125rem;
  color: var(--navy-deep);
  margin-top: 0.5rem;
}

.iti {
  width: 100%;
}

#phone {
  width: 100%;
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding: 6rem 0 3rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .image-feature {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .image-feature-reverse {
    direction: ltr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .card,
  .glass-card {
    padding: 1.5rem;
  }
  
  .contact-card {
    padding: 2rem 1.5rem;
  }
}