:root {
  --gradient-candy: linear-gradient(135deg, #ffd1dc 0%, #d4a5ff 25%, #a8d8ff 50%, #b4f8c8 75%, #ffd1dc 100%);
  --gradient-hero: linear-gradient(165deg, #fff5f7 0%, #f0e6ff 30%, #e6f4ff 60%, #e6fff2 100%);
  --gradient-accent: linear-gradient(90deg, #ff9ec8 0%, #b794f6 50%, #79d7ff 100%);
  --gradient-button: linear-gradient(135deg, #ff8fb5 0%, #c77dff 50%, #5bc0de 100%);
  
  --color-primary: #ff8fb5;
  --color-secondary: #c77dff;
  --color-tertiary: #5bc0de;
  --color-quaternary: #7dd3c0;
  
  --text-dark: #2d2d3a;
  --text-medium: #5a5a6e;
  --text-light: #8a8a9e;
  --bg-white: #ffffff;
  --bg-cream: #fffbf7;
  --bg-pale: #faf8ff;
  
  --shadow-sm: 0 2px 8px rgba(255, 143, 181, 0.08), 0 1px 3px rgba(199, 125, 255, 0.06);
  --shadow-md: 0 4px 16px rgba(255, 143, 181, 0.12), 0 2px 8px rgba(199, 125, 255, 0.08), 0 1px 3px rgba(91, 192, 222, 0.06);
  --shadow-lg: 0 12px 32px rgba(255, 143, 181, 0.16), 0 6px 16px rgba(199, 125, 255, 0.12), 0 2px 8px rgba(91, 192, 222, 0.08);
  --shadow-xl: 0 20px 48px rgba(255, 143, 181, 0.2), 0 10px 24px rgba(199, 125, 255, 0.15), 0 4px 12px rgba(91, 192, 222, 0.1);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--bg-cream);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', serif;
  line-height: 1.2;
  font-weight: 400;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

p {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--text-medium);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease-out;
}

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease-out;
}

header.scrolled {
  box-shadow: var(--shadow-md);
}

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

.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
  transition: all 0.3s ease-out;
}

.logo:hover {
  transform: translateY(-2px);
}

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

.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: all 0.3s ease-out;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: width 0.3s ease-out;
}

.nav-links a:hover {
  color: var(--color-primary);
}

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

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-pale);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease-out;
}

.lang-btn {
  color: var(--text-medium);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: all 0.3s ease-out;
}

.lang-btn:hover {
  color: var(--color-primary);
  background: rgba(255, 143, 181, 0.1);
}

.lang-btn.active {
  color: var(--color-primary);
  background: rgba(255, 143, 181, 0.15);
}

.lang-divider {
  color: var(--text-light);
  font-size: 0.875rem;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
  transition: all 0.3s ease-out;
}

@media (max-width: 968px) {
  nav {
    padding: 1rem 1.25rem;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-xl);
    transition: right 0.4s ease-out;
    align-items: flex-start;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 143, 181, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(199, 125, 255, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(20px, 30px) scale(1.02); }
}

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

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

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

.hero-text h1 {
  margin-bottom: 1.5rem;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease-out;
  cursor: pointer;
  border: none;
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: var(--gradient-button);
  color: white;
  box-shadow: var(--shadow-md);
}

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

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: white;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  border: 2px solid rgba(255, 143, 181, 0.2);
}

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

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

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

.bento-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease-out;
  position: relative;
  overflow: hidden;
}

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

.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

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

.bento-card i {
  font-size: 2.5rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  display: block;
}

.bento-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.bento-card p {
  font-size: 0.95rem;
  color: var(--text-medium);
  margin: 0;
}

.bento-card.featured {
  grid-column: span 2;
  background: var(--gradient-hero);
}

@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .bento-grid {
    grid-template-columns: 1fr;
  }
  
  .bento-card.featured {
    grid-column: span 1;
  }
  
  .cta-group {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
}

section {
  padding: var(--spacing-xl) 0;
  scroll-snap-align: start;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

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

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

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

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

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease-out;
  position: relative;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: var(--gradient-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: opacity 0.4s ease-out;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.feature-icon i {
  font-size: 2rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-medium);
  margin: 0;
}

.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.content-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-out;
}

.content-image:hover img {
  transform: scale(1.05);
}

.content-text h2 {
  margin-bottom: 1.5rem;
}

.content-text p {
  margin-bottom: 1.25rem;
}

.content-text ul {
  list-style: none;
  margin: 2rem 0;
}

.content-text li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-medium);
  font-size: 1.0625rem;
}

.content-text li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: bold;
  font-size: 1.25rem;
}

@media (max-width: 968px) {
  .content-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .content-split .content-image {
    order: -1;
  }
}

.stats-section {
  background: white;
  padding: 4rem 0;
  box-shadow: var(--shadow-md);
}

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

.stat-item {
  padding: 1.5rem;
  transition: transform 0.3s ease-out;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-medium);
  font-size: 1rem;
  font-weight: 500;
}

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

.contact-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.4s ease-out;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.contact-card i {
  font-size: 3rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  display: block;
}

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

.contact-card a {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1.0625rem;
  transition: all 0.3s ease-out;
}

.contact-card a:hover {
  color: var(--color-secondary);
  transform: translateX(3px);
  display: inline-block;
}

.map-container {
  margin: 4rem 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.form-section {
  background: white;
  padding: 4rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  max-width: 700px;
  margin: 3rem auto;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid rgba(199, 125, 255, 0.2);
  border-radius: var(--radius-md);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  transition: all 0.3s ease-out;
  background: var(--bg-cream);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: white;
  box-shadow: var(--shadow-sm);
}

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

.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(--color-primary);
}

.checkbox-group label {
  margin: 0;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text-medium);
  cursor: pointer;
}

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

.iti {
  width: 100%;
}

#phone {
  width: 100%;
}

footer {
  background: linear-gradient(135deg, #2d2d3a 0%, #1a1a24 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.footer-stats {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-stats .stats-grid {
  gap: 2rem;
}

.footer-stats .stat-number {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-stats .stat-label {
  color: rgba(255, 255, 255, 0.7);
}

.footer-content {
  padding: 4rem 0 2rem;
}

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

.footer-about h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.footer-section h4 {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  color: white;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease-out;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--color-primary);
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 968px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.breadcrumb {
  padding: 2rem 0 1rem;
  margin-top: 5rem;
}

.breadcrumb-list {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-medium);
  font-size: 0.9rem;
}

.breadcrumb-list a {
  color: var(--color-primary);
  transition: all 0.3s ease-out;
}

.breadcrumb-list a:hover {
  color: var(--color-secondary);
}

.breadcrumb-list li:not(:last-child)::after {
  content: '→';
  color: var(--text-light);
  margin-left: 0.5rem;
}

.inner-hero {
  background: var(--gradient-hero);
  padding: 8rem 0 4rem;
  text-align: center;
  margin-top: 4.5rem;
}

.inner-hero h1 {
  margin-bottom: 1rem;
}

.inner-hero p {
  font-size: 1.25rem;
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto;
}

.page-content {
  padding: 4rem 0;
}

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

.legal-page {
  background: white;
  padding: 3rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  margin: 2rem 0;
}

.legal-page h2 {
  font-size: 2rem;
  margin: 2.5rem 0 1rem;
  color: var(--text-dark);
}

.legal-page h3 {
  font-size: 1.5rem;
  margin: 2rem 0 0.75rem;
  color: var(--text-dark);
}

.legal-page p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.legal-page ul {
  margin: 1rem 0 1.5rem 2rem;
}

.legal-page li {
  margin-bottom: 0.75rem;
  color: var(--text-medium);
  line-height: 1.7;
}

.legal-page .last-updated {
  color: var(--text-light);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 2rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: var(--shadow-xl);
  padding: 2rem;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease-out;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.cookie-text h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.cookie-text p {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin: 0;
}

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

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease-out;
}

.cookie-btn.accept {
  background: var(--gradient-button);
  color: white;
  box-shadow: var(--shadow-sm);
}

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

.cookie-btn.decline {
  background: white;
  color: var(--text-dark);
  border: 2px solid rgba(199, 125, 255, 0.3);
}

.cookie-btn.decline:hover {
  border-color: var(--color-secondary);
}

.cookie-btn.customize {
  background: var(--bg-pale);
  color: var(--text-dark);
}

.cookie-btn.customize:hover {
  background: rgba(199, 125, 255, 0.1);
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: white;
  border-radius: var(--radius-xl);
  padding: 3rem;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

.cookie-modal h3 {
  margin-bottom: 1.5rem;
}

.cookie-category {
  padding: 1.5rem;
  background: var(--bg-pale);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.cookie-category h4 {
  font-size: 1.125rem;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  transition: 0.3s;
  border-radius: 26px;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background: white;
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--color-primary);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  color: var(--text-medium);
  font-size: 0.9rem;
  margin: 0;
}

.cookie-modal-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.thanks-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem;
}

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

.thanks-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: var(--shadow-lg);
}

.thanks-icon i {
  font-size: 3rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.thanks-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  section {
    padding: var(--spacing-lg) 0;
    min-height: auto;
  }
  
  .hero-section {
    min-height: auto;
    padding: 6rem 0 3rem;
  }
  
  .form-section {
    padding: 2rem;
  }
  
  .legal-page {
    padding: 2rem;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 2rem;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
}

@media print {
  header, footer, .cookie-banner, .breadcrumb {
    display: none;
  }
}