:root {
  --color-black: #0D0D0D;
  --color-blue: #1A2433;
  --color-violet: #3F1F7F;
  --color-mint: #00FFC8;
  --color-gray: #C8C8C8;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --font-display: 'Bungee', cursive;
  --font-body: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-black);
  color: var(--color-gray);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-mint);
  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);
}

p {
  margin-bottom: var(--space-sm);
  font-size: clamp(0.875rem, 2vw, 1rem);
}

a {
  color: var(--color-mint);
  text-decoration: none;
}

a:hover {
  color: var(--color-gray);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header-wrapper {
  position: relative;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.95) 0%, rgba(13, 13, 13, 0.8) 100%);
  backdrop-filter: blur(10px);
  padding: var(--space-md) 0;
}

.header-wrapper.hidden {
  transform: translateY(-100%);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.logo {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-mint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-mint);
  font-size: 1.5rem;
  cursor: pointer;
  padding: var(--space-xs);
}

.nav-menu {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
}

.nav-menu li a {
  font-size: clamp(0.875rem, 2vw, 1rem);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
}

.nav-menu li a:hover {
  background-color: rgba(0, 255, 200, 0.1);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at center, var(--color-violet) 0%, var(--color-black) 70%);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 255, 200, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(63, 31, 127, 0.2) 0%, transparent 50%);
  z-index: 0;
}

.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) var(--space-md);
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--color-mint) 0%, #ffffff 50%, var(--color-mint) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 1;
  transform: none;
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: var(--color-gray);
  margin-bottom: var(--space-lg);
  text-shadow: 0 0 20px rgba(0, 255, 200, 0.3);
  opacity: 1;
  transform: none;
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: var(--space-xl) auto;
  perspective: 1200px;
  perspective-origin: center center;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  transform-style: preserve-3d;
}

.slider-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  opacity: 0;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform: rotateY(90deg) translateZ(-200px);
}

.slider-item.active {
  opacity: 1;
  transform: rotateY(0deg) translateZ(0px);
  z-index: 3;
}

.slider-item.prev {
  opacity: 0.6;
  transform: rotateY(-25deg) translateZ(-150px) scale(0.85);
  z-index: 2;
}

.slider-item.next {
  opacity: 0.6;
  transform: rotateY(25deg) translateZ(-150px) scale(0.85);
  z-index: 2;
}

.slider-item.hidden {
  opacity: 0;
  transform: rotateY(90deg) translateZ(-200px);
  z-index: 1;
}

.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateZ(0);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-item.active img {
  transform: translateZ(0) scale(1.05);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.slider-btn {
  background: var(--color-violet);
  border: 2px solid var(--color-mint);
  color: var(--color-mint);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.slider-btn:hover {
  background: var(--color-mint);
  color: var(--color-black);
}

.section {
  padding: var(--space-xxl) 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.content-card {
  background: linear-gradient(135deg, rgba(26, 36, 51, 0.8) 0%, rgba(63, 31, 127, 0.6) 100%);
  backdrop-filter: blur(10px);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 255, 200, 0.2);
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: none;
}

.content-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 200, 0.15) 0%, transparent 70%);
  opacity: 0;
}

.content-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, var(--color-mint), var(--color-violet));
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
}

.content-card:hover::before {
  opacity: 1;
}

.content-card:hover::after {
  opacity: 1;
}

.content-card:hover {
  border-color: var(--color-mint);
  box-shadow: 0 20px 40px rgba(0, 255, 200, 0.3), 0 0 20px rgba(63, 31, 127, 0.5);
}

.content-card h3 {
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

.content-card p {
  position: relative;
  z-index: 1;
}

.asymmetrical-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  padding: var(--space-xl) 0;
}

.asym-section {
  position: relative;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(26, 36, 51, 0.8) 0%, rgba(63, 31, 127, 0.4) 100%);
  backdrop-filter: blur(15px);
  margin-left: 0;
  margin-right: 0;
  transform: rotate(-1deg) translateX(-20px);
  border: 1px solid rgba(0, 255, 200, 0.1);
  opacity: 1;
}

.asym-section::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--color-mint), var(--color-violet), var(--color-mint));
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0;
  background-size: 200% 200%;
}

.asym-section:nth-child(even) {
  transform: rotate(1deg) translateX(20px);
  margin-left: auto;
  margin-right: 0;
  max-width: 85%;
}

.asym-section:nth-child(odd) {
  max-width: 90%;
}

.asym-section:hover {
  box-shadow: 0 20px 40px rgba(0, 255, 200, 0.2), 0 0 30px rgba(63, 31, 127, 0.4);
}

.asym-section:hover::before {
  opacity: 0.5;
}

.contact-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl);
  background: linear-gradient(135deg, rgba(26, 36, 51, 0.9) 0%, rgba(63, 31, 127, 0.7) 100%);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-mint);
  box-shadow: 0 20px 60px rgba(0, 255, 200, 0.2), 0 0 40px rgba(63, 31, 127, 0.4);
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: none;
}

.contact-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 200, 0.2) 0%, transparent 70%);
}

.contact-wrapper::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(63, 31, 127, 0.2) 0%, transparent 70%);
}

.contact-form {
  position: relative;
  z-index: 1;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-mint);
  font-size: 0.9rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm);
  background: rgba(13, 13, 13, 0.6);
  border: 1px solid rgba(0, 255, 200, 0.3);
  border-radius: var(--radius-md);
  color: var(--color-gray);
  font-family: var(--font-body);
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-mint);
  background: rgba(13, 13, 13, 0.8);
  box-shadow: 0 0 0 3px rgba(0, 255, 200, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
  cursor: pointer;
}

.checkbox-group label {
  margin-bottom: 0;
  font-size: 0.875rem;
  line-height: 1.5;
}

.submit-btn {
  background: linear-gradient(135deg, var(--color-mint) 0%, #00d4a3 100%);
  color: var(--color-black);
  border: none;
  padding: var(--space-sm) var(--space-xl);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 1rem;
  cursor: pointer;
  margin-top: var(--space-md);
  width: 100%;
  position: relative;
  overflow: hidden;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.submit-btn:hover {
  background: linear-gradient(135deg, var(--color-violet) 0%, var(--color-mint) 100%);
  color: var(--color-mint);
  box-shadow: 0 15px 40px rgba(0, 255, 200, 0.4), 0 0 20px rgba(63, 31, 127, 0.6);
}

.map-container {
  margin: var(--space-xl) 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--color-mint);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

.footer {
  background: var(--color-blue);
  padding: var(--space-lg) 0;
  text-align: center;
  border-top: 1px solid rgba(0, 255, 200, 0.2);
  margin-top: var(--space-xxl);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  font-size: 0.875rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.product-card {
  background: linear-gradient(135deg, rgba(26, 36, 51, 0.9) 0%, rgba(63, 31, 127, 0.7) 100%);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 255, 200, 0.2);
  position: relative;
  opacity: 1;
  transform: none;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 255, 200, 0.1) 100%);
  opacity: 0;
  z-index: 1;
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover {
  border-color: var(--color-mint);
  box-shadow: 0 25px 50px rgba(0, 255, 200, 0.3), 0 0 30px rgba(63, 31, 127, 0.6);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-info {
  padding: var(--space-lg);
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-mint);
  margin-top: var(--space-sm);
}

.luxury-card {
  background: linear-gradient(145deg, rgba(13, 13, 13, 0.95) 0%, rgba(26, 36, 51, 0.9) 50%, rgba(63, 31, 127, 0.85) 100%);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(0, 255, 200, 0.3);
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 255, 200, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.luxury-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-mint), var(--color-violet), var(--color-mint), transparent);
  opacity: 0.8;
}

.luxury-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(0, 255, 200, 0.15) 0%, transparent 50%);
  opacity: 0;
  pointer-events: none;
}

.luxury-card:hover::after {
  opacity: 1;
}

.luxury-card:hover {
  border-color: var(--color-mint);
  box-shadow: 0 30px 80px rgba(0, 255, 200, 0.4), 0 0 60px rgba(63, 31, 127, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.luxury-badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: linear-gradient(135deg, var(--color-mint) 0%, var(--color-violet) 100%);
  color: var(--color-black);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 255, 200, 0.4);
  position: relative;
  overflow: hidden;
}

.luxury-badge::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
}

.luxury-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--color-mint) 0%, #00D4A3 50%, var(--color-mint) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: var(--space-md) 0;
  text-shadow: 0 0 30px rgba(0, 255, 200, 0.5);
  position: relative;
}

.luxury-price::before {
  content: '£';
  font-size: 1.5rem;
  vertical-align: top;
  margin-right: 0.2rem;
}

.luxury-section {
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.98) 0%, rgba(26, 36, 51, 0.95) 50%, rgba(13, 13, 13, 0.98) 100%);
  position: relative;
  padding: var(--space-xxl) 0;
}

.luxury-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(63, 31, 127, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 255, 200, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.luxury-hero {
  background: linear-gradient(135deg, rgba(13, 13, 13, 0.95) 0%, rgba(26, 36, 51, 0.9) 50%, rgba(63, 31, 127, 0.85) 100%);
  position: relative;
  overflow: hidden;
  padding: var(--space-xxl) 0;
}

.luxury-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 255, 200, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.luxury-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(63, 31, 127, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.luxury-feature {
  background: linear-gradient(145deg, rgba(26, 36, 51, 0.6) 0%, rgba(63, 31, 127, 0.4) 100%);
  backdrop-filter: blur(15px);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid rgba(0, 255, 200, 0.2);
  position: relative;
  overflow: hidden;
}

.luxury-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-mint), var(--color-violet));
}

.luxury-feature-icon {
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--color-mint) 0%, var(--color-violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-md);
  filter: drop-shadow(0 0 20px rgba(0, 255, 200, 0.5));
}

.luxury-btn {
  background: linear-gradient(135deg, var(--color-mint) 0%, #00D4A3 100%);
  color: var(--color-black);
  
  border-radius: var(--radius-md);
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 255, 200, 0.3);
  transition: all 0.3s ease;
}

.luxury-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.luxury-btn:hover::before {
  left: 100%;
}

.luxury-btn:hover {
  box-shadow: 0 12px 35px rgba(0, 255, 200, 0.5);
  transform: translateY(-2px);
}

.luxury-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(135deg, var(--color-mint) 0%, #FFFFFF 50%, var(--color-mint) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-md);
  text-align: center;
  line-height: 1.2;
  filter: drop-shadow(0 0 30px rgba(0, 255, 200, 0.3));
}

.luxury-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--color-gray);
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  line-height: 1.6;
}

.privacy-popup {
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  max-width: 400px;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-violet) 100%);
  border: 2px solid var(--color-mint);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  display: none;
  opacity: 1;
  transform: none;
}

.privacy-popup.show {
  display: block;
}

.privacy-popup p {
  margin-bottom: var(--space-sm);
  font-size: 0.875rem;
}

.privacy-buttons {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.privacy-btn {
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.875rem;
}

.privacy-btn.accept {
  background: var(--color-mint);
  color: var(--color-black);
}

.privacy-btn.accept:hover {
  background: var(--color-violet);
  color: var(--color-mint);
}

.privacy-btn.decline {
  background: transparent;
  color: var(--color-gray);
  border: 1px solid var(--color-gray);
}

.privacy-btn.decline:hover {
  border-color: var(--color-mint);
  color: var(--color-mint);
}

.section-title {
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-mint), transparent);
  border-radius: 2px;
  opacity: 1;
}

.content-card i {
  transform: none;
}

.content-card:hover i {
  transform: none;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 255, 200, 0.1) 0%, rgba(63, 31, 127, 0.1) 100%);
  opacity: 0;
  z-index: 1;
}

.product-card:hover::before {
  opacity: 1;
}

.product-info {
  position: relative;
  z-index: 2;
}

.form-group input:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(0, 255, 200, 0.1);
}

.error-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.error-code {
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--color-mint);
  margin-bottom: var(--space-md);
}

.thank-you-page {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(63, 31, 127, 0.2) 0%, transparent 70%);
}

.thank-you-page::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 200, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.thank-you-icon {
  font-size: 6rem;
  color: var(--color-mint);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
  text-shadow: 0 0 30px rgba(0, 255, 200, 0.5);
  transform: none;
  opacity: 1;
}

.thank-you-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: var(--space-xl);
  background: linear-gradient(135deg, rgba(26, 36, 51, 0.8) 0%, rgba(63, 31, 127, 0.6) 100%);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(0, 255, 200, 0.3);
  box-shadow: 0 20px 60px rgba(0, 255, 200, 0.2);
  opacity: 1;
  transform: none;
}

.error-page {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(63, 31, 127, 0.15) 0%, transparent 70%);
}

.error-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 255, 200, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(63, 31, 127, 0.1) 0%, transparent 50%);
  z-index: 0;
}

.error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  color: var(--color-mint);
  margin-bottom: var(--space-md);
  font-weight: 900;
  text-shadow: 0 0 40px rgba(0, 255, 200, 0.5);
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--color-mint) 0%, #ffffff 50%, var(--color-mint) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(0, 255, 200, 0.5));
}

.error-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: var(--space-xl);
  background: linear-gradient(135deg, rgba(26, 36, 51, 0.8) 0%, rgba(63, 31, 127, 0.6) 100%);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(0, 255, 200, 0.3);
  box-shadow: 0 20px 60px rgba(0, 255, 200, 0.2);
  opacity: 1;
  transform: none;
}

.legal-section {
  padding: var(--space-xxl) 0;
  position: relative;
}

.legal-hero {
  text-align: center;
  padding: var(--space-xxl) 0;
  margin-bottom: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.legal-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(63, 31, 127, 0.2) 0%, transparent 70%);
  z-index: 0;
}

.legal-hero-content {
  position: relative;
  z-index: 1;
}

.legal-icon {
  font-size: 4rem;
  color: var(--color-mint);
  margin-bottom: var(--space-md);
  transform: none;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-xl);
}

.legal-card {
  background: linear-gradient(135deg, rgba(26, 36, 51, 0.8) 0%, rgba(63, 31, 127, 0.6) 100%);
  backdrop-filter: blur(15px);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 255, 200, 0.2);
  margin-bottom: var(--space-lg);
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: none;
}

.legal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 200, 0.1), transparent);
}

.legal-card:hover {
  border-color: var(--color-mint);
  box-shadow: 0 15px 40px rgba(0, 255, 200, 0.2);
}

.legal-card h2 {
  color: var(--color-mint);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.legal-card h2::before {
  content: '';
  width: 4px;
  height: 2rem;
  background: linear-gradient(180deg, var(--color-mint), var(--color-violet));
  border-radius: 2px;
}

.legal-card p {
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.legal-card ul {
  list-style: none;
  padding-left: 0;
  margin: var(--space-md) 0;
}

.legal-card ul li {
  padding: var(--space-xs) 0;
  padding-left: var(--space-lg);
  position: relative;
}

.legal-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-mint);
  font-weight: bold;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--color-blue);
    flex-direction: column;
    padding: var(--space-xl) var(--space-lg);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    margin-bottom: var(--space-md);
  }

  .slider-wrapper {
    height: 300px;
  }

  .asym-section {
    transform: rotate(0deg) !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .asym-section:hover {
    transform: scale(1.01) !important;
  }

  .privacy-popup {
    max-width: calc(100% - var(--space-md) * 2);
    right: var(--space-md);
    left: var(--space-md);
  }

  .contact-wrapper {
    padding: var(--space-md);
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hero-section {
    min-height: 70vh;
  }

  .slider-wrapper {
    height: 250px;
  }

  .section {
    padding: var(--space-lg) 0;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 12px;
  }

  body {
    font-size: 0.875rem;
    overflow-x: hidden;
    word-wrap: break-word;
  }

  * {
    max-width: 100%;
  }

  .container {
    padding: 0 var(--space-xs);
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .header-wrapper {
    padding: var(--space-xs) 0;
  }

  .header-content {
    padding: 0 var(--space-xs);
    flex-wrap: wrap;
    gap: var(--space-xs);
  }

  .logo {
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    word-break: break-word;
    line-height: 1.2;
  }

  .nav-toggle {
    padding: var(--space-xs);
    font-size: 1rem;
    min-width: 32px;
    min-height: 32px;
  }

  .nav-menu {
    width: 100%;
    max-width: 100%;
    padding: var(--space-md) var(--space-sm);
    box-sizing: border-box;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-section {
    min-height: 60vh;
    padding: var(--space-md) 0;
    overflow: hidden;
  }

  .hero-content {
    padding: var(--space-md) var(--space-xs);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    line-height: 1.1;
    word-wrap: break-word;
    hyphens: auto;
  }

  .hero-subtitle {
    font-size: 0.8125rem;
    margin-bottom: var(--space-md);
    line-height: 1.5;
    word-wrap: break-word;
  }

  .hero-canvas {
    width: 100% !important;
    height: 200px !important;
  }

  .slider-container {
    margin: var(--space-md) var(--space-xs);
    max-width: calc(100% - var(--space-xs) * 2);
    width: 100%;
    box-sizing: border-box;
  }

  .slider-wrapper {
    height: 180px;
    border-radius: var(--radius-md);
    width: 100%;
    overflow: hidden;
  }

  .slider-item {
    width: 100%;
    height: 100%;
  }

  .slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .slider-controls {
    gap: var(--space-xs);
    margin-top: var(--space-sm);
    flex-wrap: wrap;
    justify-content: center;
  }

  .slider-btn {
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.75rem;
    min-width: 80px;
    flex: 1;
    max-width: 120px;
  }

  .section {
    padding: var(--space-md) 0;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
  }

  .section-title::after {
    width: 50px;
    height: 3px;
  }

  .content-grid,
  .product-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-top: var(--space-md);
  }

  .content-card {
    padding: var(--space-md);
    border-radius: var(--radius-md);
  }

  .content-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
  }

  .content-card p {
    font-size: 0.875rem;
    line-height: 1.6;
  }

  .content-card i {
    font-size: 2rem;
  }

  .product-card {
    border-radius: var(--radius-md);
    margin: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .product-image {
    height: 160px;
    width: 100%;
    object-fit: cover;
  }

  .product-info {
    padding: var(--space-sm);
  }

  .product-info h3 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
    line-height: 1.2;
    word-wrap: break-word;
  }

  .product-info p {
    font-size: 0.8125rem;
    line-height: 1.5;
    margin-bottom: var(--space-sm);
  }

  .product-info ul {
    margin: var(--space-sm) 0;
  }

  .product-info ul li {
    font-size: 0.8125rem;
    margin-bottom: var(--space-xs);
    padding-left: var(--space-md);
  }

  .product-price {
    font-size: 1.125rem;
    margin: var(--space-sm) 0;
  }

  .asymmetrical-layout {
    gap: var(--space-md);
    padding: var(--space-md) 0;
  }

  .asym-section {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    transform: rotate(0deg) !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .asym-section h2 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
  }

  .asym-section p {
    font-size: 0.875rem;
    line-height: 1.7;
  }

  .luxury-title {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
  }

  .luxury-subtitle {
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
  }

  .luxury-card {
    border-radius: var(--radius-md);
    border-width: 1px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .luxury-card::before {
    height: 2px;
  }

  .luxury-card:hover {
    transform: none;
  }

  .luxury-price {
    font-size: 1.5rem;
    margin: var(--space-sm) 0;
    word-break: break-word;
  }

  .luxury-price::before {
    font-size: 1.125rem;
  }

  .luxury-badge {
    padding: 0.25rem var(--space-xs);
    font-size: 0.5625rem;
    letter-spacing: 0.5px;
    line-height: 1.2;
  }

  .luxury-feature {
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    width: 100%;
    box-sizing: border-box;
  }

  .luxury-feature::before {
    width: 3px;
  }

  .luxury-feature-icon {
    font-size: 2rem;
    margin-bottom: var(--space-xs);
  }

  .luxury-feature h2 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
    line-height: 1.2;
    word-wrap: break-word;
  }

  .luxury-feature p {
    font-size: 0.8125rem;
    line-height: 1.6;
    margin-bottom: var(--space-xs);
  }

  .luxury-btn {
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.8125rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    display: block;
  }

  .luxury-btn:hover {
    transform: none;
  }

  .luxury-hero {
    padding: var(--space-sm) 0;
    min-height: auto;
  }

  .luxury-hero::before,
  .luxury-hero::after {
    display: none;
  }

  .luxury-section {
    padding: var(--space-sm) 0;
  }

  .luxury-section::before {
    opacity: 0.5;
  }

  .contact-wrapper {
    padding: var(--space-sm);
    margin: var(--space-sm) var(--space-xs);
    border-radius: var(--radius-md);
    width: calc(100% - var(--space-xs) * 2);
    box-sizing: border-box;
  }

  .contact-wrapper h2 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    line-height: 1.2;
    word-wrap: break-word;
  }

  .form-group {
    margin-bottom: var(--space-xs);
    width: 100%;
  }

  .form-group label {
    font-size: 0.8125rem;
    margin-bottom: var(--space-xs);
    display: block;
    width: 100%;
  }

  .form-group input,
  .form-group textarea {
    padding: var(--space-xs);
    font-size: 0.8125rem;
    border-radius: var(--radius-sm);
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
  }

  .form-group textarea {
    min-height: 80px;
    resize: vertical;
  }

  .form-group input[type="checkbox"] {
    width: auto;
    min-width: 18px;
    height: 18px;
  }

  .submit-btn {
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.8125rem;
    margin-top: var(--space-sm);
    width: 100%;
    box-sizing: border-box;
  }

  .map-container {
    margin: var(--space-sm) var(--space-xs);
    border-radius: var(--radius-md);
    width: calc(100% - var(--space-xs) * 2);
    box-sizing: border-box;
    overflow: hidden;
  }

  .map-container iframe {
    height: 250px;
    width: 100%;
    border: none;
  }

  .footer {
    padding: var(--space-md) 0;
  }

  .footer-content {
    padding: 0 var(--space-xs);
    font-size: 0.75rem;
  }

  .footer-content p {
    margin-bottom: var(--space-xs);
  }

  .footer-content a {
    font-size: 0.75rem;
  }

  .privacy-popup {
    bottom: var(--space-xs);
    right: var(--space-xs);
    left: var(--space-xs);
    max-width: 100%;
    padding: var(--space-md);
    border-radius: var(--radius-md);
  }

  .privacy-popup p {
    font-size: 0.75rem;
    margin-bottom: var(--space-xs);
  }

  .privacy-buttons {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .privacy-btn {
    width: 100%;
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.75rem;
  }

  .thank-you-page {
    min-height: 80vh;
    padding: var(--space-md);
  }

  .thank-you-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
  }

  .thank-you-content {
    padding: var(--space-md);
    border-radius: var(--radius-md);
  }

  .thank-you-content h1 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
  }

  .thank-you-content p {
    font-size: 0.875rem;
    margin-bottom: var(--space-sm);
  }

  .error-page {
    min-height: 80vh;
    padding: var(--space-md);
  }

  .error-code {
    font-size: 4rem;
    margin-bottom: var(--space-sm);
  }

  .error-content {
    padding: var(--space-md);
    border-radius: var(--radius-md);
  }

  .error-content h1 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
  }

  .error-content p {
    font-size: 0.875rem;
    margin-bottom: var(--space-sm);
  }

  .legal-section {
    padding: var(--space-md) 0;
  }

  .legal-hero {
    padding: var(--space-lg) 0;
    margin-bottom: var(--space-md);
  }

  .legal-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
  }

  .legal-hero h1 {
    font-size: 1.75rem;
  }

  .legal-hero p {
    font-size: 0.875rem;
  }

  .legal-content {
    padding: var(--space-md) var(--space-xs);
  }

  .legal-card {
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    border-radius: var(--radius-md);
  }

  .legal-card h2 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    flex-wrap: wrap;
  }

  .legal-card h2 i {
    font-size: 1.25rem;
  }

  .legal-card p {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: var(--space-sm);
  }

  .legal-card ul {
    margin: var(--space-sm) 0;
  }

  .legal-card ul li {
    font-size: 0.875rem;
    padding: var(--space-xs) 0;
    padding-left: var(--space-md);
    line-height: 1.6;
  }

  .slider-btn,
  .submit-btn {
    font-size: 0.8125rem;
    padding: var(--space-xs) var(--space-sm);
    min-height: 36px;
  }

  .slider-btn i,
  .submit-btn i {
    font-size: 0.6875rem;
    margin-left: var(--space-xs);
  }

  h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    hyphens: auto;
    overflow-wrap: break-word;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  ul, ol {
    padding-left: var(--space-md);
  }

  .content-card {
    width: 100%;
    box-sizing: border-box;
  }

  .content-card i {
    font-size: 1.75rem;
  }

  .asymmetrical-layout {
    width: 100%;
    box-sizing: border-box;
  }

  .asym-section {
    width: 100%;
    box-sizing: border-box;
  }

  .product-grid {
    width: 100%;
    box-sizing: border-box;
  }

  .content-grid {
    width: 100%;
    box-sizing: border-box;
  }

  .section-title {
    word-wrap: break-word;
    hyphens: auto;
  }

  .section-title::after {
    width: 40px;
    height: 2px;
  }
}

@media (max-width: 768px) {
  .legal-card {
    padding: var(--space-md);
  }

  .legal-icon {
    font-size: 3rem;
  }

  .thank-you-icon {
    font-size: 4rem;
  }

  .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .thank-you-content,
  .error-content {
    padding: var(--space-md);
  }
}
