:root {
  --color-black: #0F0F0F;
  --color-charcoal: #1A1A1A;
  --color-aubergine: #6366F1;
  --color-emerald: #10B981;
  --color-navy: #1E293B;
  --color-white: #FFFFFF;
  --color-light: #F8FAFC;
  
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;
  
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
  
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-light);
  background-color: var(--color-black);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

a {
  color: var(--color-emerald);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-aubergine);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header-wrapper {
  position: relative;
  z-index: 1000;
}

.header {
  padding: var(--space-lg) var(--space-md);
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.95) 0%, rgba(15, 15, 15, 0.8) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.05em;
}

.nav-toggle {
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: var(--space-xs);
}

.nav {
  display: flex;
  gap: var(--space-xl);
  list-style: none;
}

.nav a {
  color: var(--color-light);
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: lowercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: var(--space-xs) 0;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-emerald);
  transition: width var(--transition-base);
}

.nav a:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-black) 0%, var(--color-navy) 50%, var(--color-black) 100%);
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-xl);
  max-width: 800px;
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeInUp 1s ease 0.3s forwards;
}

.hero p {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: var(--color-light);
  margin-bottom: var(--space-xl);
  opacity: 0;
  animation: fadeInUp 1s ease 0.6s forwards;
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-xl);
  background: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-aubergine) 100%);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-base);
  text-transform: lowercase;
  letter-spacing: 0.05em;
  opacity: 0;
  animation: fadeInUp 1s ease 0.9s forwards;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.section {
  padding: var(--space-xxl) var(--space-md);
  position: relative;
}

.section-alt {
  background: linear-gradient(180deg, var(--color-black) 0%, var(--color-charcoal) 100%);
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xxl);
  color: var(--color-white);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xxl);
}

.content-item {
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-base);
}

.content-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-emerald);
  box-shadow: var(--shadow-md);
}

.content-item h3 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.content-item p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.asymmetrical-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-xxl);
}

.asym-item {
  position: relative;
  padding: var(--space-xl);
}

.asym-item:nth-child(odd) {
  margin-left: 0;
  margin-right: auto;
  max-width: 65%;
}

.asym-item:nth-child(even) {
  margin-left: auto;
  margin-right: 0;
  max-width: 65%;
}

.asym-item-content {
  background: rgba(255, 255, 255, 0.03);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

.product-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-base);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-emerald);
}

.product-image {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-aubergine) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-image::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.product-info {
  padding: var(--space-lg);
}

.product-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-emerald);
  margin-top: var(--space-md);
}

.contact-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-xxl) var(--space-md);
}

.contact-form {
  background: rgba(255, 255, 255, 0.03);
  padding: var(--space-xxl);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-sm);
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-emerald);
  background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.footer {
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--color-black);
}

.footer p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-sm);
}

.map-wrapper {
  margin: var(--space-xxl) 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

.cookie-popup {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  max-width: 500px;
  background: rgba(15, 15, 15, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  z-index: 10000;
  box-shadow: var(--shadow-lg);
  display: none;
}

.cookie-popup.show {
  display: block;
  animation: slideUp 0.5s ease;
}

.cookie-popup p {
  font-size: 0.8125rem;
  color: var(--color-light);
  margin-bottom: var(--space-md);
}

.cookie-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.error-page::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.error-page > div {
  position: relative;
  z-index: 1;
}

.error-page h1 {
  font-size: clamp(6rem, 15vw, 12rem);
  color: var(--color-emerald);
  margin-bottom: var(--space-lg);
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-aubergine) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.02em;
}

.error-page p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-light);
  margin-bottom: var(--space-xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.policy-hero {
  padding: var(--space-xxl) var(--space-md);
  text-align: center;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: var(--space-xxl);
}

.policy-hero h1 {
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--color-white) 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.policy-hero .meta {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-md) var(--space-xxl);
}

.policy-section {
  margin-bottom: var(--space-xxl);
  padding: var(--space-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.policy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-emerald) 0%, var(--color-aubergine) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.policy-section:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateX(4px);
}

.policy-section:hover::before {
  opacity: 1;
}

.policy-section h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  margin-bottom: var(--space-lg);
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.policy-section h2::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-emerald);
  flex-shrink: 0;
}

.policy-section p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.thanks-container {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xxl) var(--space-md);
  position: relative;
}

.thanks-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.thanks-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.thanks-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-xl);
  background: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-aubergine) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--color-white);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
  animation: scaleIn 0.6s ease 0.3s backwards;
}

.thanks-content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: var(--space-xl);
  background: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-aubergine) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-editorial {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-editorial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-black) 0%, var(--color-navy) 50%, var(--color-aubergine) 100%);
  z-index: 0;
}

.hero-editorial-left {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xxl);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-editorial-right {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xxl);
  background: rgba(16, 185, 129, 0.05);
}

.hero-number {
  font-size: clamp(8rem, 15vw, 15rem);
  font-weight: 900;
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.03);
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  font-family: var(--font-display);
}

.hero-title-large {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: var(--space-xl);
  color: var(--color-white);
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
  max-width: 500px;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  position: relative;
}

.split-left {
  padding: var(--space-xxl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.split-right {
  padding: var(--space-xxl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
}

.split-section-alt {
  grid-template-columns: 1fr 1fr;
}

.split-section-alt .split-left {
  order: 2;
}

.split-section-alt .split-right {
  order: 1;
  border-left: none;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.diagonal-section {
  position: relative;
  padding: var(--space-xxl) 0;
  overflow: hidden;
}

.diagonal-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  transform: skewY(-2deg);
  transform-origin: top left;
  z-index: 0;
}

.diagonal-content {
  position: relative;
  z-index: 1;
  padding: var(--space-xxl) var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}

.feature-block {
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
  position: relative;
  border-left: 3px solid var(--color-emerald);
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.05) 0%, transparent 100%);
}

.feature-block h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--space-md);
  color: var(--color-white);
}

.feature-block p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
  padding: var(--space-xxl) var(--space-md);
}

.stat-item {
  text-align: center;
  padding: var(--space-xl);
  position: relative;
}

.stat-number {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 900;
  color: var(--color-emerald);
  line-height: 1;
  margin-bottom: var(--space-sm);
  font-family: var(--font-display);
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(6, 100px);
  gap: var(--space-md);
  padding: var(--space-xxl) var(--space-md);
  max-width: 1400px;
  margin: 0 auto;
}

.mosaic-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.mosaic-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-aubergine) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 0;
}

.mosaic-item:hover::before {
  opacity: 0.1;
}

.mosaic-item > * {
  position: relative;
  z-index: 1;
}

.mosaic-item:nth-child(1) {
  grid-column: span 6;
  grid-row: span 2;
}

.mosaic-item:nth-child(2) {
  grid-column: span 6;
  grid-row: span 2;
}

.mosaic-item:nth-child(3) {
  grid-column: span 4;
  grid-row: span 2;
}

.mosaic-item:nth-child(4) {
  grid-column: span 4;
  grid-row: span 2;
}

.mosaic-item:nth-child(5) {
  grid-column: span 4;
  grid-row: span 2;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  min-height: 80vh;
  gap: var(--space-xl);
  padding: var(--space-xxl) var(--space-md);
  max-width: 1400px;
  margin: 0 auto;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-xxl);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info-item {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-item h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-sm);
}

.contact-info-item p {
  font-size: 1rem;
  color: var(--color-white);
}

.contact-form-panel {
  padding: var(--space-xxl);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding: var(--space-xxl) var(--space-md);
  max-width: 1400px;
  margin: 0 auto;
}

.product-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  align-items: center;
  padding: var(--space-xxl) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-feature:last-child {
  border-bottom: none;
}

.product-feature-alt {
  grid-template-columns: 1fr 1fr;
}

.product-feature-alt .product-image-wrapper {
  order: 2;
}

.product-image-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-aubergine) 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.product-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-details h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-lg);
  color: var(--color-white);
}

.product-details .price {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--color-emerald);
  margin: var(--space-lg) 0;
  font-family: var(--font-display);
}

@media (max-width: 1024px) {
  .hero-editorial,
  .split-section,
  .contact-split,
  .product-feature {
    grid-template-columns: 1fr;
  }

  .hero-editorial-left {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .split-section-alt .split-left,
  .split-section-alt .split-right {
    order: 0;
    border-right: none;
  }

  .split-right {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .mosaic-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .mosaic-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
}

@media (max-width: 768px) {
  .hero-editorial,
  .split-section {
    min-height: auto;
  }

  .hero-editorial-left,
  .hero-editorial-right,
  .split-left,
  .split-right {
    padding: var(--space-xl);
  }

  .mosaic-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.section-title {
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-emerald), transparent);
  transition: width 0.8s ease 0.3s, opacity 0.8s ease 0.3s;
  opacity: 0;
}

.section-title.animated::after {
  width: 60px;
  opacity: 1;
}

.hero-luxury {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xxl) var(--space-md);
  overflow: hidden;
}

.hero-luxury::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-luxury::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-luxury-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  align-items: center;
}

.hero-text-wrapper {
  position: relative;
}

.hero-luxury h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: var(--space-xl);
  letter-spacing: -0.03em;
}

.hero-luxury .hero-description {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-xxl);
  max-width: 600px;
}

.hero-floating-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-xxl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.glass-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: left 0.6s ease;
}

.glass-card:hover::before {
  left: 100%;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.floating-section {
  padding: calc(var(--space-xxl) * 2) var(--space-md);
  position: relative;
}

.float-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.float-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-xxl);
  margin-bottom: var(--space-xxl);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  transition: all var(--transition-slow);
}

.float-card:nth-child(even) {
  margin-left: auto;
  max-width: 85%;
}

.float-card:nth-child(odd) {
  max-width: 85%;
}

.float-card:hover {
  transform: translateY(-12px) translateX(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.float-card:nth-child(even):hover {
  transform: translateY(-12px) translateX(-20px);
}

.layered-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-lg);
  padding: var(--space-xxl) var(--space-md);
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.layered-item {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
  position: relative;
  z-index: 1;
}

.layered-item:nth-child(1) {
  grid-column: span 5;
  grid-row: span 2;
  z-index: 3;
  transform: translateY(-20px);
}

.layered-item:nth-child(2) {
  grid-column: span 7;
  grid-row: span 1;
  z-index: 2;
  transform: translateX(20px);
}

.layered-item:nth-child(3) {
  grid-column: span 4;
  grid-row: span 1;
  z-index: 2;
  transform: translateY(20px);
}

.layered-item:nth-child(4) {
  grid-column: span 8;
  grid-row: span 1;
  z-index: 1;
}

.layered-item:hover {
  z-index: 10;
  transform: scale(1.02) translateY(-8px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.layered-item:nth-child(1):hover {
  transform: translateY(-30px) scale(1.02);
}

.layered-item:nth-child(2):hover {
  transform: translateX(30px) translateY(-8px) scale(1.02);
}

.layered-item:nth-child(3):hover {
  transform: translateY(10px) translateY(-8px) scale(1.02);
}

.minimal-section {
  padding: calc(var(--space-xxl) * 3) var(--space-md);
  text-align: center;
  position: relative;
}

.minimal-section h2 {
  font-size: 22px;
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: var(--space-xxl);
  letter-spacing: -0.02em;
}

.minimal-section p {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto var(--space-xxl);
  line-height: 1.8;
}

.product-luxury {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xxl);
  margin-bottom: calc(var(--space-xxl) * 2);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.product-luxury:nth-child(even) {
  direction: rtl;
}

.product-luxury:nth-child(even) > * {
  direction: ltr;
}

.product-image-luxury {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(99, 102, 241, 0.6) 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.product-image-luxury img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info-luxury {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl);
}

.product-info-luxury h3 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.product-info-luxury .price-luxury {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--color-emerald);
  margin: var(--space-xl) 0;
  font-family: var(--font-display);
}

.contact-luxury {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-xxl) var(--space-md);
}

.contact-luxury-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-xxl);
}

.contact-info-luxury {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.contact-info-card h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-sm);
}

.contact-info-card p {
  font-size: 1.125rem;
  color: var(--color-white);
}

.contact-form-luxury {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-xxl);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1024px) {
  .hero-luxury-content,
  .contact-luxury-grid,
  .product-luxury {
    grid-template-columns: 1fr;
  }

  .product-luxury:nth-child(even) {
    direction: ltr;
  }

  .layered-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .layered-item {
    grid-column: span 6 !important;
    grid-row: span 1 !important;
    transform: none !important;
  }

  .layered-item:hover {
    transform: translateY(-8px) scale(1.01) !important;
  }

  .float-card {
    max-width: 100% !important;
    margin-left: 0 !important;
  }

  .float-card:hover {
    transform: translateY(-8px) !important;
  }
}

@media (max-width: 768px) {
  .contact-split {
    grid-template-columns: 1fr;
  }

  .contact-info-panel {
    margin-bottom: var(--space-xl);
  }

  .split-section {
    grid-template-columns: 1fr !important;
  }

  .split-section > div:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .layered-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .hero-luxury {
    min-height: 80vh;
  }

  .minimal-section {
    padding: var(--space-xxl) var(--space-md);
  }

  .nav-toggle {
    display: block;
  }
}
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(15, 15, 15, 0.98);
    flex-direction: column;
    padding: var(--space-xxl) var(--space-lg);
    gap: var(--space-lg);
    transition: right var(--transition-base);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 9999;
  }
  
  .nav.active {
    right: 0;
  }
  
  .asym-item:nth-child(odd),
  .asym-item:nth-child(even) {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: var(--space-lg);
  }
  
  .cookie-popup {
    left: var(--space-sm);
    right: var(--space-sm);
    bottom: var(--space-sm);
  }

  .policy-hero {
    padding: var(--space-xl) var(--space-md);
  }

  .policy-section {
    padding: var(--space-lg);
  }

  .policy-section:hover {
    transform: translateX(0);
  }

  .error-page h1 {
    font-size: clamp(5rem, 12vw, 10rem);
  }

  .thanks-icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }


@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .section {
    padding: var(--space-xl) var(--space-sm);
  }
  
  .hero {
    min-height: 70vh;
  }
  
  .product-image {
    height: 250px;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 13px;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  .header {
    padding: var(--space-md) var(--space-sm);
  }

  .policy-hero {
    padding: var(--space-lg) var(--space-sm);
  }

  .policy-content {
    padding: 0 var(--space-sm) var(--space-xl);
  }

  .policy-section {
    padding: var(--space-md);
  }

  .error-page::before {
    width: 400px;
    height: 400px;
  }
}
