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

@layer reset {
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  body {
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
  }
  
  input, button, textarea, select {
    font: inherit;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  ul, ol {
    list-style: none;
  }
}

@layer tokens {
  :root {
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-warm: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --gradient-cool: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    
    --color-primary: #667eea;
    --color-secondary: #764ba2;
    --color-accent: #4facfe;
    --color-warm: #fa709a;
    
    --color-text: #2d3748;
    --color-text-light: #4a5568;
    --color-text-muted: #718096;
    --color-background: #ffffff;
    --color-background-alt: #f7fafc;
    --color-background-tint: #faf5ff;
    
    --font-display: 'Wix Madefor Display', sans-serif;
    --font-body: 'Wix Madefor Text', sans-serif;
    
    --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: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    
    --shadow-sm: 0 2px 8px rgba(102, 126, 234, 0.08),
                 0 1px 3px rgba(102, 126, 234, 0.12);
    --shadow-md: 0 4px 16px rgba(102, 126, 234, 0.12),
                 0 2px 8px rgba(102, 126, 234, 0.08);
    --shadow-lg: 0 8px 32px rgba(102, 126, 234, 0.16),
                 0 4px 16px rgba(102, 126, 234, 0.12);
    --shadow-xl: 0 16px 48px rgba(102, 126, 234, 0.2),
                 0 8px 24px rgba(102, 126, 234, 0.16);
    
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
}

@layer layout {
  body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-background);
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
  }
  
  .container-wide {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
  }
  
  .container-narrow {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-md);
  }
  
  main {
    flex: 1;
  }
  
  section {
    padding: var(--space-3xl) 0;
    position: relative;
  }
  
  @media (max-width: 768px) {
    section {
      padding: var(--space-2xl) 0;
    }
  }
}

@layer components {
  /* Header & Navigation */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
  }
  
  .site-header.scrolled {
    box-shadow: var(--shadow-md);
  }
  
  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
  }
  
  .nav-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
  }
  
  .main-nav ul {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
  }
  
  .main-nav a {
    font-weight: 500;
    color: var(--color-text);
    transition: all var(--transition-base);
    position: relative;
  }
  
  .main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
  }
  
  .main-nav a:hover::after,
  .main-nav a.active::after {
    width: 100%;
  }
  
  .lang-switcher {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: var(--color-background-alt);
    border-radius: 2rem;
  }
  
  .lang-btn {
    padding: 0.25rem 0.75rem;
    border-radius: 1.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all var(--transition-base);
    color: var(--color-text-muted);
  }
  
  .lang-btn.active {
    background: var(--gradient-primary);
    color: white;
  }
  
  .lang-divider {
    color: var(--color-text-muted);
  }
  
  .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text);
    cursor: pointer;
    padding: var(--space-xs);
  }
  
  @media (max-width: 968px) {
    .main-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: white;
      box-shadow: var(--shadow-xl);
      padding: var(--space-3xl) var(--space-lg);
      transition: right var(--transition-smooth);
      z-index: 1001;
    }
    
    .main-nav.active {
      right: 0;
    }
    
    .main-nav ul {
      flex-direction: column;
      align-items: flex-start;
      gap: var(--space-md);
    }
    
    .mobile-menu-toggle {
      display: block;
    }
    
    .nav-wrapper {
      gap: var(--space-md);
    }
  }
  
  /* Hero Section */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
  }
  
  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  
  .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
      rgba(102, 126, 234, 0.92) 0%, 
      rgba(118, 75, 162, 0.88) 50%, 
      rgba(240, 147, 251, 0.85) 100%);
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
  }
  
  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  }
  
  .hero p {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.6;
    margin-bottom: var(--space-xl);
    opacity: 0.95;
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition-base);
    text-align: center;
    justify-content: center;
  }
  
  .btn-primary {
    background: white;
    color: var(--color-primary);
    box-shadow: var(--shadow-lg);
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
  }
  
  .btn-gradient {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow-md);
  }
  
  .btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }
  
  .btn-outline {
    background: transparent;
    border: 2px solid currentColor;
    color: var(--color-primary);
  }
  
  .btn-outline:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
  }
  
  /* Section Headers */
  .section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
  }
  
  .section-label {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
  }
  
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .section-description {
    font-size: 1.25rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
  }
  
  /* Gradient Backgrounds */
  .bg-gradient-primary {
    background: var(--gradient-primary);
  }
  
  .bg-gradient-secondary {
    background: var(--gradient-secondary);
  }
  
  .bg-gradient-warm {
    background: var(--gradient-warm);
  }
  
  .bg-gradient-cool {
    background: var(--gradient-cool);
  }
  
  .bg-tint {
    background: var(--color-background-tint);
  }
  
  /* Cards */
  .card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    height: 100%;
  }
  
  .card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
  }
  
  .card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: var(--space-lg);
  }
  
  .card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--color-text);
  }
  
  .card-text {
    color: var(--color-text-light);
    line-height: 1.7;
  }
  
  /* Grid Layouts */
  .grid {
    display: grid;
    gap: var(--space-xl);
  }
  
  .grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  @media (max-width: 768px) {
    .grid {
      gap: var(--space-lg);
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
      grid-template-columns: 1fr;
    }
  }
  
  /* Services Section */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
  }
  
  .service-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
  }
  
  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
  }
  
  .service-card:hover::before {
    transform: scaleX(1);
  }
  
  .service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
  }
  
  .service-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-md);
  }
  
  .service-card:nth-child(2) .service-icon {
    background: var(--gradient-secondary);
  }
  
  .service-card:nth-child(3) .service-icon {
    background: var(--gradient-accent);
  }
  
  .service-card:nth-child(4) .service-icon {
    background: var(--gradient-warm);
  }
  
  .service-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--color-text);
  }
  
  .service-description {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
  }
  
  .service-features {
    list-style: none;
    padding: 0;
  }
  
  .service-features li {
    padding: var(--space-xs) 0;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
  }
  
  .service-features li::before {
    content: '✓';
    color: var(--color-primary);
    font-weight: 700;
  }
  
  /* Checklist Section */
  .checklist-section {
    background: linear-gradient(135deg, #f7fafc 0%, #faf5ff 100%);
    position: relative;
    overflow: hidden;
  }
  
  .checklist-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--gradient-primary);
    opacity: 0.05;
    border-radius: 50%;
  }
  
  .checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    position: relative;
    z-index: 1;
  }
  
  .checklist-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
  }
  
  .checklist-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
  }
  
  .checklist-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
  }
  
  .checklist-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--color-text);
  }
  
  .checklist-content p {
    color: var(--color-text-light);
    line-height: 1.6;
  }
  
  /* Feature Comparison */
  .comparison-section {
    background: white;
  }
  
  .comparison-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
  }
  
  .comparison-table-wrapper {
    overflow-x: auto;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: var(--space-xl);
  }
  
  .comparison-table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .comparison-table thead {
    background: var(--gradient-primary);
    color: white;
  }
  
  .comparison-table th {
    padding: var(--space-lg);
    text-align: left;
    font-family: var(--font-display);
    font-weight: 600;
  }
  
  .comparison-table td {
    padding: var(--space-lg);
    border-bottom: 1px solid #e2e8f0;
    color: var(--color-text-light);
  }
  
  .comparison-table tbody tr:hover {
    background: var(--color-background-alt);
  }
  
  .comparison-table tbody tr:last-child td {
    border-bottom: none;
  }
  
  /* Info Cards */
  .info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
  }
  
  .info-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
  }
  
  .info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
  }
  
  .info-card:hover::before {
    opacity: 0.03;
  }
  
  .info-card-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
  }
  
  .info-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
  }
  
  .info-card:nth-child(2) .info-card-icon {
    background: var(--gradient-secondary);
  }
  
  .info-card:nth-child(3) .info-card-icon {
    background: var(--gradient-accent);
  }
  
  .info-card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
  }
  
  .info-card-content {
    position: relative;
    z-index: 1;
  }
  
  .info-card-content p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: var(--space-md);
  }
  
  .info-card-content ul {
    list-style: none;
  }
  
  .info-card-content li {
    padding: var(--space-xs) 0;
    color: var(--color-text-light);
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
  }
  
  .info-card-content li::before {
    content: '→';
    color: var(--color-primary);
    font-weight: 700;
    flex-shrink: 0;
  }
  
  /* Forms */
  .contact-section {
    background: linear-gradient(135deg, #faf5ff 0%, #f7fafc 100%);
  }
  
  .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
  }
  
  .contact-info {
    position: sticky;
    top: 120px;
  }
  
  .contact-info h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .contact-info p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    font-size: 1.125rem;
  }
  
  .contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
  }
  
  .contact-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
  }
  
  .contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
  }
  
  .contact-detail-content h3 {
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--color-text);
  }
  
  .contact-detail-content p {
    color: var(--color-text-light);
    margin: 0;
    font-size: 1rem;
  }
  
  .contact-form-wrapper {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-xl);
  }
  
  .form-group {
    margin-bottom: var(--space-lg);
  }
  
  .form-label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
  }
  
  .form-input,
  .form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-base);
    background: white;
  }
  
  .form-input:focus,
  .form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  }
  
  .form-textarea {
    resize: vertical;
    min-height: 150px;
  }
  
  .form-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
  }
  
  .form-checkbox {
    margin-top: 0.25rem;
    flex-shrink: 0;
  }
  
  .form-checkbox-label {
    color: var(--color-text-light);
    font-size: 0.875rem;
    line-height: 1.5;
  }
  
  .form-checkbox-label a {
    color: var(--color-primary);
    text-decoration: underline;
  }
  
  .form-submit {
    width: 100%;
  }
  
  .iti {
    width: 100%;
  }
  
  #phone {
    width: 100%;
  }
  
  .map-container {
    margin-top: var(--space-3xl);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
  }
  
  .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  
  @media (max-width: 968px) {
    .contact-wrapper {
      grid-template-columns: 1fr;
      gap: var(--space-2xl);
    }
    
    .contact-info {
      position: static;
    }
  }
  
  /* Footer */
  .site-footer {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: var(--space-3xl) 0 var(--space-lg);
    margin-top: auto;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
  }
  
  .footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .footer-brand p {
    color: #cbd5e0;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
  }
  
  .footer-section h4 {
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: white;
  }
  
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .footer-links a {
    color: #cbd5e0;
    transition: all var(--transition-base);
  }
  
  .footer-links a:hover {
    color: white;
    padding-left: var(--space-xs);
  }
  
  .footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
  }
  
  .footer-bottom p {
    color: #cbd5e0;
    font-size: 0.875rem;
  }
  
  .footer-legal {
    display: flex;
    gap: var(--space-lg);
  }
  
  .footer-legal a {
    color: #cbd5e0;
    font-size: 0.875rem;
    transition: color var(--transition-base);
  }
  
  .footer-legal a:hover {
    color: white;
  }
  
  @media (max-width: 968px) {
    .footer-content {
      grid-template-columns: 1fr;
      gap: var(--space-xl);
    }
    
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
  }
  
  /* Cookie Consent */
  .cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow-xl);
    padding: var(--space-lg);
    z-index: 2000;
    transform: translateY(100%);
    transition: transform var(--transition-smooth);
  }
  
  .cookie-consent.show {
    transform: translateY(0);
  }
  
  .cookie-consent-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  
  .cookie-consent p {
    flex: 1;
    color: var(--color-text-light);
    min-width: 300px;
  }
  
  .cookie-consent-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
  }
  
  .cookie-consent button {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
  }
  
  .cookie-accept {
    background: var(--gradient-primary);
    color: white;
  }
  
  .cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
  
  .cookie-decline {
    background: #e2e8f0;
    color: var(--color-text);
  }
  
  .cookie-decline:hover {
    background: #cbd5e0;
  }
  
  .cookie-customize {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
  }
  
  .cookie-customize:hover {
    background: var(--color-primary);
    color: white;
  }
  
  .cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2001;
    padding: var(--space-md);
  }
  
  .cookie-settings-modal.show {
    display: flex;
  }
  
  .cookie-settings-content {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
  }
  
  .cookie-settings-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
  }
  
  .cookie-category {
    padding: var(--space-lg);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
  }
  
  .cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
  }
  
  .cookie-category h4 {
    font-weight: 600;
  }
  
  .cookie-toggle {
    position: relative;
    width: 48px;
    height: 24px;
  }
  
  .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: #cbd5e0;
    border-radius: 24px;
    transition: var(--transition-base);
  }
  
  .cookie-toggle-slider::before {
    position: absolute;
    content: '';
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: var(--transition-base);
  }
  
  .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-settings-buttons {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
  }
  
  .cookie-settings-buttons button {
    flex: 1;
  }
  
  /* Legal Pages */
  .legal-page {
    padding: var(--space-4xl) 0;
    background: var(--color-background-alt);
  }
  
  .legal-content {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    box-shadow: var(--shadow-md);
  }
  
  .legal-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .legal-date {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin-bottom: var(--space-2xl);
  }
  
  .legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    color: var(--color-text);
  }
  
  .legal-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: var(--color-text);
  }
  
  .legal-content p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--space-md);
  }
  
  .legal-content ul,
  .legal-content ol {
    margin-left: var(--space-lg);
    margin-bottom: var(--space-md);
  }
  
  .legal-content li {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
  }
  
  .legal-content ul li {
    list-style: disc;
  }
  
  .legal-content ol li {
    list-style: decimal;
  }
  
  .legal-content a {
    color: var(--color-primary);
    text-decoration: underline;
  }
  
  /* Thanks Page */
  .thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #faf5ff 0%, #f7fafc 100%);
  }
  
  .thanks-content {
    max-width: 600px;
  }
  
  .thanks-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xl);
    font-size: 4rem;
    color: white;
    box-shadow: var(--shadow-xl);
  }
  
  .thanks-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .thanks-content p {
    color: var(--color-text-light);
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
  }
  
  /* Image Sections */
  .image-content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
  }
  
  .image-content-section.reverse {
    direction: rtl;
  }
  
  .image-content-section.reverse > * {
    direction: ltr;
  }
  
  .content-image {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
  }
  
  .content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .content-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .content-text p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    font-size: 1.125rem;
  }
  
  @media (max-width: 968px) {
    .image-content-section {
      grid-template-columns: 1fr;
      gap: var(--space-xl);
    }
    
    .image-content-section.reverse {
      direction: ltr;
    }
  }
}

@layer utilities {
  .text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .text-center {
    text-align: center;
  }
  
  .mt-lg {
    margin-top: var(--space-lg);
  }
  
  .mt-xl {
    margin-top: var(--space-xl);
  }
  
  .mb-lg {
    margin-bottom: var(--space-lg);
  }
  
  .mb-xl {
    margin-bottom: var(--space-xl);
  }
  
  .hidden {
    display: none;
  }
}