:root {
  --color-black: #0A0A0A;
  --color-purple: #4B0082;
  --color-gold: #D4AF37;
  --color-emerald: #014421;
  --color-gray: #3B3B3B;
  --color-white: #FFFFFF;
  
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  --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;
  --radius-xl: 1.5rem;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
  
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;
  --transition-smooth: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-black);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 0.875rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-purple);
  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, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 2rem);
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-white);
}

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;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.85) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}

.header-container.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.logo {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
  align-items: center;
}

.nav-link {
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--transition-base);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-base);
}

.nav-link:hover::after {
  width: 100%;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 1001;
}

.burger span {
  width: 25px;
  height: 2px;
  background: var(--color-gold);
  transition: all var(--transition-base);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-black);
  padding: var(--space-xxl) 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(75, 0, 130, 0.15) 40%, transparent 70%);
  border-radius: 50%;
  animation: heroGlow 6s ease-in-out infinite;
  z-index: 0;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(45deg, transparent 48%, rgba(212, 175, 55, 0.04) 49%, rgba(212, 175, 55, 0.04) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(75, 0, 130, 0.04) 49%, rgba(75, 0, 130, 0.04) 51%, transparent 52%);
  background-size: 80px 80px;
  opacity: 0.4;
  z-index: 0;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-xl);
  max-width: 1000px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: clamp(3.5rem, 9vw, 7rem);
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.02em;
  font-weight: 900;
  position: relative;
  display: inline-block;
  line-height: 1.1;
}

.hero-title::before {
  content: attr(title);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-purple) 50%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: titleGradient 4s ease infinite;
  z-index: -1;
}

.hero-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  animation: lineExpand 2s ease-in-out infinite;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-xl);
  text-transform: uppercase;
  position: relative;
  padding: 0 var(--space-lg);
}

.hero-subtitle::before,
.hero-subtitle::after {
  content: '◆';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gold);
  font-size: 0.75em;
  opacity: 0.6;
}

.hero-subtitle::before {
  left: 0;
}

.hero-subtitle::after {
  right: 0;
}

.btn-primary {
  display: inline-block;
  padding: var(--space-sm) var(--space-xl);
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-purple) 100%);
  color: var(--color-black);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-gold);
  font-size: 0.875rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
}

.section {
  padding: var(--space-xxl) 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.product-card {
  background: var(--color-gray);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.product-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}

.product-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--color-gray) 0%, var(--color-emerald) 100%);
}

.product-title {
  font-size: 1.25rem;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.product-price {
  font-size: 1.5rem;
  color: var(--color-white);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.feature-card {
  background: rgba(59, 59, 59, 0.3);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--color-gold);
  transition: all var(--transition-base);
}

.feature-card:hover {
  background: rgba(59, 59, 59, 0.5);
  transform: translateX(10px);
}

.feature-icon {
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.asymmetric-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.asymmetric-item {
  padding: var(--space-xl);
  background: rgba(59, 59, 59, 0.2);
  border-radius: var(--radius-xl);
  position: relative;
  transform: rotate(-1deg);
  transition: transform var(--transition-smooth);
}

.asymmetric-item:nth-child(even) {
  transform: rotate(1deg);
  margin-left: auto;
  max-width: 90%;
}

.asymmetric-item:hover {
  transform: rotate(0deg) scale(1.02);
}

.contact-section {
  padding: var(--space-xxl) 0;
  background: linear-gradient(135deg, rgba(75, 0, 130, 0.1) 0%, rgba(1, 68, 33, 0.1) 100%);
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  position: relative;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background: rgba(59, 59, 59, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: all var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.checkbox-input {
  margin-top: 4px;
  accent-color: var(--color-gold);
}

.footer {
  padding: var(--space-lg) 0;
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.privacy-popup {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  max-width: 500px;
  background: var(--color-gray);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gold);
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  animation: slideUp 0.5s ease-out;
  display: none;
}

.privacy-popup.show {
  display: block;
}

.privacy-popup p {
  margin-bottom: var(--space-md);
  font-size: 0.875rem;
}

.privacy-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.btn-accept,
.btn-decline {
  padding: var(--space-xs) var(--space-md);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 0.875rem;
  transition: all var(--transition-base);
}

.btn-accept {
  background: var(--color-gold);
  color: var(--color-black);
}

.btn-decline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

.error-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  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%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
  z-index: 0;
}

.error-code {
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

.thank-you-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.thank-you-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(75, 0, 130, 0.1) 0%, rgba(1, 68, 33, 0.1) 100%);
  z-index: 0;
}

.thank-you-icon {
  font-size: 4rem;
  color: var(--color-gold);
  margin-bottom: var(--space-lg);
  animation: bounce 1s ease-in-out;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.policy-page {
  padding: var(--space-xxl) 0;
  position: relative;
}

.policy-hero {
  text-align: center;
  padding: var(--space-xxl) 0;
  background: linear-gradient(135deg, rgba(75, 0, 130, 0.15) 0%, rgba(1, 68, 33, 0.15) 100%);
  margin-bottom: var(--space-xxl);
  position: relative;
  overflow: hidden;
}

.policy-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.policy-hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(75, 0, 130, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.policy-section {
  margin-bottom: var(--space-xxl);
  padding: var(--space-xl);
  background: rgba(59, 59, 59, 0.2);
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--color-gold);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.policy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.policy-section:hover::before {
  opacity: 1;
}

.policy-section:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.policy-section h2 {
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.policy-section h3 {
  color: var(--color-purple);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
  position: relative;
  z-index: 1;
}

.policy-section p,
.policy-section li {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.9);
}

.policy-section ul {
  margin-left: var(--space-lg);
  margin-top: var(--space-md);
}

.policy-section li {
  margin-bottom: var(--space-xs);
}

.policy-nav {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-xxl);
  flex-wrap: wrap;
}

.modern-card {
  background: rgba(59, 59, 59, 0.3);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.modern-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.modern-card:hover::after {
  transform: scaleX(1);
}

.modern-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}

.gradient-text {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-purple) 100%);
  color: var(--color-black);
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-gold);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0%, 100% {
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
  }
  50% {
    text-shadow: 0 0 50px rgba(212, 175, 55, 0.8), 0 0 80px rgba(212, 175, 55, 0.4);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--color-black);
    flex-direction: column;
    padding: var(--space-xxl) var(--space-lg);
    transition: right var(--transition-smooth);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
  }

  .nav-menu.active {
    right: 0;
  }

  .burger {
    display: flex;
  }

  .hero-section {
    min-height: 70vh;
  }

  .asymmetric-item {
    max-width: 100%;
    transform: rotate(0deg);
  }

  .asymmetric-item:nth-child(even) {
    transform: rotate(0deg);
    margin-left: 0;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .privacy-popup {
    left: var(--space-sm);
    right: var(--space-sm);
    bottom: var(--space-sm);
  }
}

@media (max-width: 320px) {
  html {
    font-size: 12px;
  }

  .header-container {
    padding: var(--space-sm) var(--space-md);
  }

  .product-card {
    padding: var(--space-md);
  }
}

.luxury-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--color-black);
  padding: var(--space-xxl) 0;
}

.luxury-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(75, 0, 130, 0.1) 40%, transparent 70%);
  border-radius: 50%;
  animation: heroGlow 6s ease-in-out infinite;
  z-index: 0;
}

.luxury-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(45deg, transparent 48%, rgba(212, 175, 55, 0.03) 49%, rgba(212, 175, 55, 0.03) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(75, 0, 130, 0.03) 49%, rgba(75, 0, 130, 0.03) 51%, transparent 52%);
  background-size: 60px 60px;
  opacity: 0.3;
  z-index: 0;
}

.luxury-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-xxl);
  max-width: 1000px;
  margin: 0 auto;
}

.luxury-title {
  font-size: clamp(3.5rem, 9vw, 7rem);
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.02em;
  font-weight: 900;
  position: relative;
  display: inline-block;
  line-height: 1.1;
}

.luxury-title::before {
  content: attr(title);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-purple) 50%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: titleGradient 4s ease infinite;
  z-index: -1;
}

.luxury-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  animation: lineExpand 2s ease-in-out infinite;
}

.luxury-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-xl);
  text-transform: uppercase;
  position: relative;
  padding: 0 var(--space-lg);
}

.luxury-subtitle::before,
.luxury-subtitle::after {
  content: '◆';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gold);
  font-size: 0.75em;
  opacity: 0.6;
}

.luxury-subtitle::before {
  left: 0;
}

.luxury-subtitle::after {
  right: 0;
}

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  z-index: 1;
}

.hero-decorative.top-left {
  top: 10%;
  left: 10%;
  animation: rotateSlow 20s linear infinite;
}

.hero-decorative.top-right {
  top: 10%;
  right: 10%;
  animation: rotateSlow 25s linear infinite reverse;
}

.hero-decorative.bottom-left {
  bottom: 10%;
  left: 10%;
  animation: rotateSlow 30s linear infinite;
}

.hero-decorative.bottom-right {
  bottom: 10%;
  right: 10%;
  animation: rotateSlow 22s linear infinite reverse;
}

.hero-decorative::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border: 1px solid rgba(75, 0, 130, 0.3);
  border-radius: 50%;
}

.hero-accent-line {
  position: absolute;
  width: 2px;
  height: 150px;
  background: linear-gradient(180deg, transparent, var(--color-gold), transparent);
  z-index: 1;
}

.hero-accent-line.left {
  left: 15%;
  top: 20%;
  animation: accentPulse 3s ease-in-out infinite;
}

.hero-accent-line.right {
  right: 15%;
  bottom: 20%;
  animation: accentPulse 3s ease-in-out infinite 1.5s;
}

@keyframes heroGlow {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

@keyframes titleGradient {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes lineExpand {
  0%, 100% {
    width: 100px;
    opacity: 0.6;
  }
  50% {
    width: 200px;
    opacity: 1;
  }
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes accentPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.8;
    transform: scaleY(1.2);
  }
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xxl);
}

.luxury-card {
  position: relative;
  background: rgba(59, 59, 59, 0.3);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-smooth);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.luxury-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(75, 0, 130, 0.1) 100%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  z-index: 1;
}

.luxury-card:hover::before {
  opacity: 1;
}

.luxury-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
  border-color: var(--color-gold);
}

.luxury-card-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  position: relative;
  z-index: 0;
  transition: transform var(--transition-smooth);
}

.luxury-card:hover .luxury-card-image {
  transform: scale(1.1);
}

.luxury-card-content {
  padding: var(--space-xl);
  position: relative;
  z-index: 2;
}

.luxury-card-title {
  font-size: 1.5rem;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.luxury-card-price {
  font-size: 2rem;
  color: var(--color-white);
  font-weight: 700;
  margin-bottom: var(--space-md);
  font-family: var(--font-display);
}

.luxury-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  margin: var(--space-lg) 0;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  align-items: center;
  margin: var(--space-xxl) 0;
}

.split-content {
  padding: var(--space-xl);
}

.split-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.contact-luxury-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-xxl);
  margin-top: var(--space-xxl);
}

.contact-info-panel {
  background: linear-gradient(135deg, rgba(75, 0, 130, 0.15) 0%, rgba(1, 68, 33, 0.15) 100%);
  padding: var(--space-xxl);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-info-panel::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-purple) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-form-panel {
  background: rgba(59, 59, 59, 0.3);
  padding: var(--space-xxl);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-label-luxury {
  display: block;
  margin-bottom: var(--space-sm);
  color: var(--color-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

.form-input-luxury {
  width: 100%;
  padding: var(--space-md);
  background: rgba(10, 10, 10, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-base);
  margin-bottom: var(--space-lg);
}

.form-input-luxury:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
  background: rgba(10, 10, 10, 0.7);
}

.form-textarea-luxury {
  min-height: 180px;
  resize: vertical;
}

.floating-badge {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-purple) 100%);
  color: var(--color-black);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 3;
  box-shadow: var(--shadow-gold);
}

@keyframes luxuryPulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

@keyframes luxuryShine {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@media (max-width: 768px) {
  .policy-hero {
    padding: var(--space-xl) 0;
  }

  .policy-section {
    padding: var(--space-md);
  }

  .policy-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .policy-nav .btn-primary {
    width: 100%;
    text-align: center;
  }

  .icon-badge {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .split-layout {
    grid-template-columns: 1fr;
  }

  .contact-luxury-grid {
    grid-template-columns: 1fr;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .hero-decorative {
    width: 120px;
    height: 120px;
  }

  .hero-decorative::before {
    width: 90px;
    height: 90px;
  }

  .hero-accent-line {
    height: 100px;
  }

  .hero-accent-line.left {
    left: 5%;
  }

  .hero-accent-line.right {
    right: 5%;
  }

  .luxury-hero::before {
    width: 400px;
    height: 400px;
  }

  .hero-section::before {
    width: 500px;
    height: 500px;
  }
}

@media (max-width: 480px) {
  .hero-decorative {
    width: 80px;
    height: 80px;
    opacity: 0.5;
  }

  .hero-decorative::before {
    width: 60px;
    height: 60px;
  }

  .hero-accent-line {
    display: none;
  }
}
