@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

@layer reset, tokens, layout, components, utilities;

@layer reset {
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }
  
  body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
  }
  
  input, button, textarea, select {
    font: inherit;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  ul, ol {
    list-style: none;
  }
}

@layer tokens {
  :root {
    --clr-aurora-violet: #8B5CF6;
    --clr-aurora-blue: #3B82F6;
    --clr-aurora-cyan: #06B6D4;
    --clr-aurora-teal: #14B8A6;
    --clr-aurora-emerald: #10B981;
    
    --clr-primary: #6366F1;
    --clr-primary-dark: #4F46E5;
    --clr-secondary: #14B8A6;
    --clr-accent: #8B5CF6;
    
    --clr-surface: #FFFFFF;
    --clr-surface-frosted: rgba(255, 255, 255, 0.92);
    --clr-surface-elevated: rgba(255, 255, 255, 0.98);
    --clr-bg: #F8F9FE;
    --clr-text: #1E293B;
    --clr-text-muted: #64748B;
    --clr-text-light: #94A3B8;
    --clr-border: #E2E8F0;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;
    
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    
    --shadow-sm: 
      0 1px 2px rgba(0, 0, 0, 0.04),
      0 1px 4px rgba(0, 0, 0, 0.02);
    --shadow-md: 
      0 4px 6px rgba(0, 0, 0, 0.05),
      0 10px 15px rgba(0, 0, 0, 0.03),
      0 0 0 1px rgba(0, 0, 0, 0.02);
    --shadow-lg: 
      0 10px 20px rgba(0, 0, 0, 0.06),
      0 20px 40px rgba(0, 0, 0, 0.04),
      0 0 0 1px rgba(0, 0, 0, 0.02);
    --shadow-xl: 
      0 20px 30px rgba(0, 0, 0, 0.08),
      0 30px 60px rgba(0, 0, 0, 0.05),
      0 0 0 1px rgba(0, 0, 0, 0.03);
    --shadow-glow: 
      0 0 20px rgba(139, 92, 246, 0.15),
      0 0 40px rgba(59, 130, 246, 0.1);
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-reveal: 0.7s ease;
  }
}

@layer layout {
  body {
    background: var(--clr-bg);
    color: var(--clr-text);
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  .aurora-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, #F8F9FE 0%, #EEF2FF 100%);
  }
  
  .aurora-layer {
    position: absolute;
    width: 200%;
    height: 200%;
    opacity: 0.4;
  }
  
  .aurora-layer-1 {
    background: radial-gradient(circle at 20% 50%, var(--clr-aurora-violet) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, var(--clr-aurora-blue) 0%, transparent 50%);
    animation: aurora-drift-1 20s ease-in-out infinite;
  }
  
  .aurora-layer-2 {
    background: radial-gradient(circle at 60% 20%, var(--clr-aurora-cyan) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, var(--clr-aurora-teal) 0%, transparent 50%);
    animation: aurora-drift-2 25s ease-in-out infinite;
    animation-delay: -5s;
  }
  
  .aurora-layer-3 {
    background: radial-gradient(circle at 70% 60%, var(--clr-aurora-emerald) 0%, transparent 50%),
                radial-gradient(circle at 30% 30%, var(--clr-aurora-blue) 0%, transparent 50%);
    animation: aurora-drift-3 30s ease-in-out infinite;
    animation-delay: -10s;
  }
  
  @keyframes aurora-drift-1 {
    0%, 100% { transform: translate(-10%, -10%) rotate(0deg); }
    50% { transform: translate(-5%, -15%) rotate(5deg); }
  }
  
  @keyframes aurora-drift-2 {
    0%, 100% { transform: translate(-15%, -5%) rotate(0deg); }
    50% { transform: translate(-8%, -12%) rotate(-3deg); }
  }
  
  @keyframes aurora-drift-3 {
    0%, 100% { transform: translate(-12%, -8%) rotate(0deg); }
    50% { transform: translate(-6%, -10%) rotate(4deg); }
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
  }
  
  .container-wide {
    max-width: 1400px;
  }
  
  main {
    flex: 1;
  }
  
  section {
    padding: var(--space-3xl) 0;
  }
  
  section + section {
    margin-top: var(--space-2xl);
  }
  
  .section-gap {
    height: var(--space-2xl);
  }
}

@layer components {
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--clr-surface-frosted);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--clr-border);
    box-shadow: var(--shadow-sm);
  }
  
  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
    gap: var(--space-lg);
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-primary);
    transition: transform var(--transition-fast);
  }
  
  .logo:hover {
    transform: translateY(-2px);
  }
  
  .logo svg {
    width: 40px;
    height: 40px;
  }
  
  nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
  }
  
  .nav-links {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
  }
  
  .nav-links a {
    font-weight: 500;
    color: var(--clr-text-muted);
    transition: color var(--transition-base);
    position: relative;
    padding: var(--space-xs) 0;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary));
    transition: width var(--transition-base);
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--clr-primary);
  }
  
  .nav-links a:hover::after,
  .nav-links a.active::after {
    width: 100%;
  }
  
  .lang-switcher {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
  }
  
  .lang-btn {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    transition: color var(--transition-base);
  }
  
  .lang-btn:hover {
    color: var(--clr-primary);
  }
  
  .lang-btn.active {
    color: var(--clr-primary);
  }
  
  .lang-divider {
    color: var(--clr-border);
  }
  
  .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--clr-text);
    cursor: pointer;
    padding: var(--space-xs);
  }
  
  .hero {
    padding: var(--space-4xl) 0 var(--space-3xl);
    position: relative;
  }
  
  .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
  }
  
  .hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: hero-fade-in 0.8s ease-out;
  }
  
  @keyframes hero-fade-in {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .hero-text p {
    font-size: 1.25rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    animation: hero-fade-in 0.8s ease-out 0.2s backwards;
  }
  
  .hero-card {
    background: var(--clr-surface-elevated);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    animation: hero-fade-in 0.8s ease-out 0.4s backwards;
  }
  
  .hero-card:hover {
    transform: translateY(-8px);
    box-shadow: 
      0 30px 50px rgba(0, 0, 0, 0.1),
      0 40px 80px rgba(0, 0, 0, 0.06),
      0 0 0 1px rgba(0, 0, 0, 0.03),
      0 0 40px rgba(139, 92, 246, 0.2);
  }
  
  .card-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    box-shadow: var(--shadow-md);
  }
  
  .card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-text);
  }
  
  .card-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
  }
  
  .feature-item i {
    color: var(--clr-secondary);
    margin-top: 4px;
    flex-shrink: 0;
  }
  
  .feature-item span {
    color: var(--clr-text-muted);
    line-height: 1.6;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
    justify-content: center;
  }
  
  .btn-primary {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
    color: white;
    box-shadow: var(--shadow-md);
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(99, 102, 241, 0.3);
  }
  
  .btn-secondary {
    background: var(--clr-surface);
    color: var(--clr-primary);
    border: 2px solid var(--clr-primary);
  }
  
  .btn-secondary:hover {
    background: var(--clr-primary);
    color: white;
    transform: translateY(-2px);
  }
  
  .content-block {
    background: var(--clr-surface-frosted);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
  }
  
  .data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
  }
  
  .data-card {
    background: var(--clr-surface-elevated);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--clr-border);
    transition: all var(--transition-base);
  }
  
  .data-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--clr-primary);
  }
  
  .data-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
  }
  
  .data-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--clr-text);
  }
  
  .data-card p {
    color: var(--clr-text-muted);
    line-height: 1.6;
  }
  
  .overlap-section {
    position: relative;
    margin-top: calc(var(--space-3xl) * -1);
    padding-top: var(--space-4xl);
  }
  
  .cta-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    color: white;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
  }
  
  .cta-split::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: cta-glow 8s ease-in-out infinite;
  }
  
  @keyframes cta-glow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20%, 20%); }
  }
  
  .cta-content {
    position: relative;
    z-index: 1;
  }
  
  .cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--space-md);
    line-height: 1.2;
  }
  
  .cta-content p {
    font-size: 1.125rem;
    opacity: 0.95;
    line-height: 1.7;
  }
  
  .cta-action {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .cta-action .btn {
    background: white;
    color: var(--clr-primary);
    font-size: 1.125rem;
    padding: var(--space-lg) var(--space-2xl);
  }
  
  .cta-action .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }
  
  .cta-action p {
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.9;
  }
  
  .image-content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
  }
  
  .image-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  
  .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
  }
  
  .image-wrapper:hover img {
    transform: scale(1.05);
  }
  
  .text-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
    line-height: 1.2;
    color: var(--clr-text);
  }
  
  .text-content p {
    color: var(--clr-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-md);
  }
  
  .text-content ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
  }
  
  .text-content li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    color: var(--clr-text-muted);
  }
  
  .text-content li i {
    color: var(--clr-secondary);
    margin-top: 4px;
  }
  
  footer {
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: var(--space-3xl) 0 var(--space-lg);
    margin-top: var(--space-4xl);
  }
  
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-xl);
  }
  
  .footer-logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
  }
  
  .footer-logo svg {
    width: 40px;
    height: 40px;
  }
  
  .footer-links {
    display: flex;
    gap: var(--space-xl);
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-base);
    font-weight: 500;
  }
  
  .footer-links a:hover {
    color: white;
  }
  
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.7);
  }
  
  .footer-contact a {
    transition: color var(--transition-base);
  }
  
  .footer-contact a:hover {
    color: white;
  }
  
  .footer-bottom {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
  }
  
  .footer-legal {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-base);
  }
  
  .footer-legal a:hover {
    color: white;
  }
  
  .form-group {
    margin-bottom: var(--space-lg);
  }
  
  .form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    color: var(--clr-text);
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--clr-border);
    border-radius: var(--radius-md);
    background: var(--clr-surface);
    color: var(--clr-text);
    transition: all var(--transition-base);
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
  }
  
  .form-group textarea {
    min-height: 150px;
    resize: vertical;
  }
  
  .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
  }
  
  .checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
  }
  
  .checkbox-group label {
    font-weight: 400;
    font-size: 0.875rem;
  }
  
  .contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
  }
  
  .contact-info-card {
    background: var(--clr-surface-elevated);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--clr-border);
  }
  
  .contact-info-card i {
    font-size: 2rem;
    color: var(--clr-primary);
    margin-bottom: var(--space-md);
  }
  
  .contact-info-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--clr-text);
  }
  
  .contact-info-card p {
    color: var(--clr-text-muted);
  }
  
  .contact-info-card a {
    color: var(--clr-primary);
    transition: color var(--transition-base);
  }
  
  .contact-info-card a:hover {
    color: var(--clr-primary-dark);
  }
  
  .map-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: var(--space-2xl);
  }
  
  .map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
  }
  
  .legal-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .legal-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--space-md);
    color: var(--clr-text);
  }
  
  .legal-content .last-updated {
    color: var(--clr-text-muted);
    font-size: 0.875rem;
    margin-bottom: var(--space-2xl);
  }
  
  .legal-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    color: var(--clr-text);
  }
  
  .legal-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: var(--clr-text);
  }
  
  .legal-content p {
    color: var(--clr-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-md);
  }
  
  .legal-content ul {
    margin-left: var(--space-lg);
    margin-bottom: var(--space-md);
  }
  
  .legal-content li {
    color: var(--clr-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-xs);
    list-style: disc;
  }
  
  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--clr-surface-elevated);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: var(--space-lg);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform var(--transition-slow);
    border-top: 1px solid var(--clr-border);
  }
  
  .cookie-banner.show {
    transform: translateY(0);
  }
  
  .cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    flex-wrap: wrap;
  }
  
  .cookie-text {
    flex: 1;
    min-width: 300px;
  }
  
  .cookie-text p {
    color: var(--clr-text-muted);
    margin-bottom: var(--space-xs);
  }
  
  .cookie-text a {
    color: var(--clr-primary);
    text-decoration: underline;
  }
  
  .cookie-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
  }
  
  .cookie-buttons button {
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
  }
  
  .cookie-accept {
    background: var(--clr-primary);
    color: white;
  }
  
  .cookie-accept:hover {
    background: var(--clr-primary-dark);
  }
  
  .cookie-reject {
    background: var(--clr-surface);
    color: var(--clr-text);
    border: 2px solid var(--clr-border);
  }
  
  .cookie-reject:hover {
    border-color: var(--clr-text-muted);
  }
  
  .cookie-customize {
    background: var(--clr-surface);
    color: var(--clr-primary);
    border: 2px solid var(--clr-primary);
  }
  
  .cookie-customize:hover {
    background: var(--clr-primary);
    color: white;
  }
  
  .cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1001;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
  }
  
  .cookie-modal.show {
    display: flex;
  }
  
  .cookie-modal-content {
    background: var(--clr-surface);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
  }
  
  .cookie-modal-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--clr-text);
  }
  
  .cookie-category {
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: var(--clr-bg);
    border-radius: var(--radius-md);
  }
  
  .cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-sm);
  }
  
  .cookie-category h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--clr-text);
  }
  
  .cookie-category p {
    color: var(--clr-text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
  }
  
  .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: var(--clr-border);
    transition: var(--transition-base);
    border-radius: 26px;
  }
  
  .cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    transition: var(--transition-base);
    border-radius: 50%;
  }
  
  .cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--clr-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-modal-buttons {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
  }
  
  .cookie-modal-buttons button {
    flex: 1;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
  }
  
  .iti {
    width: 100%;
  }
  
  #phone {
    width: 100%;
  }
}

@layer utilities {
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-reveal), transform var(--transition-reveal);
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .text-center {
    text-align: center;
  }
  
  .text-gradient {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .mb-sm { margin-bottom: var(--space-sm); }
  .mb-md { margin-bottom: var(--space-md); }
  .mb-lg { margin-bottom: var(--space-lg); }
  .mb-xl { margin-bottom: var(--space-xl); }
  .mb-2xl { margin-bottom: var(--space-2xl); }
  
  .mt-sm { margin-top: var(--space-sm); }
  .mt-md { margin-top: var(--space-md); }
  .mt-lg { margin-top: var(--space-lg); }
  .mt-xl { margin-top: var(--space-xl); }
  .mt-2xl { margin-top: var(--space-2xl); }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--clr-surface);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: var(--space-3xl) var(--space-xl);
    transition: right var(--transition-slow);
    z-index: 200;
    gap: var(--space-md);
  }
  
  nav.active {
    right: 0;
  }
  
  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: var(--space-md);
  }
  
  .nav-links a {
    font-size: 1.125rem;
    padding: var(--space-sm) 0;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .image-content-split {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .image-content-split .image-wrapper {
    order: -1;
  }
  
  .cta-split {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    padding: var(--space-xl);
  }
  
  .data-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  
  section {
    padding: var(--space-2xl) 0;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons button {
    flex: 1;
  }
  
  .footer-links {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .footer-legal {
    flex-direction: column;
    gap: var(--space-xs);
  }
}