:root {
  --color-bg-primary: #0C0C0C;
  --color-bg-secondary: #1C1C1E;
  --color-text-primary: #E2E8F0;
  --color-accent: #064E3B;
  --color-white: #FFFFFF;
  --font-display: 'Bebas Neue', sans-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);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

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-text-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header-wrapper {
  position: relative;
  z-index: 1000;
  padding: var(--space-md) 0;
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.95) 0%, rgba(12, 12, 12, 0) 100%);
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--color-text-primary);
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
  align-items: center;
}

.nav-link {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--transition-base);
}

.nav-link:hover::after {
  width: 100%;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 1001;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  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;
  padding: var(--space-xxl) 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;
  max-width: 800px;
  padding: var(--space-xl);
}

.hero-title {
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-subtitle {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeInUp 1s ease 0.6s forwards;
  color: rgba(226, 232, 240, 0.8);
}

.hero-cta {
  display: inline-block;
  padding: var(--space-sm) var(--space-xl);
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  transition: all var(--transition-base);
  opacity: 0;
  animation: fadeInUp 1s ease 0.9s forwards;
  box-shadow: var(--shadow-md);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: #076b54;
}

.hero-split {
  position: relative;
  min-height: 85vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
}

.hero-split-left {
  position: relative;
  padding: var(--space-xxl);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-split-right {
  position: relative;
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.1) 0%, rgba(12, 12, 12, 0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-split-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(6, 78, 59, 0.15) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite;
}

.hero-split-decoration {
  position: absolute;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(6, 78, 59, 0.3);
  border-radius: 50%;
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
  animation: rotate 20s linear infinite;
}

.hero-split-decoration::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(6, 78, 59, 0.2);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-showcase {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  overflow: hidden;
  padding: var(--space-xxl) 0;
}

.hero-showcase-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: var(--space-xl);
}

.hero-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  opacity: 0;
  animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-showcase-item {
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  border: 1px solid rgba(6, 78, 59, 0.2);
}

.hero-showcase-item:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-lg);
}

.hero-exclusive {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.05) 0%, var(--color-bg-primary) 50%, rgba(6, 78, 59, 0.05) 100%);
  overflow: hidden;
  padding: var(--space-xxl) 0;
}

.hero-exclusive::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(6, 78, 59, 0.1) 0%, transparent 70%);
  animation: pulse 6s ease-in-out infinite;
}

.hero-exclusive-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: var(--space-xl);
}

.hero-exclusive-badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-exclusive-number {
  font-size: clamp(3rem, 8vw, 6rem);
  font-family: var(--font-display);
  color: var(--color-accent);
  margin: var(--space-md) 0;
  opacity: 0;
  animation: fadeInScale 1s ease 0.4s forwards;
  text-shadow: 0 0 30px rgba(6, 78, 59, 0.5);
}

.hero-contact {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--color-bg-primary) 0%, rgba(6, 78, 59, 0.05) 100%);
  overflow: hidden;
  padding: var(--space-xxl) 0;
}

.hero-contact-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(90deg, rgba(6, 78, 59, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(6, 78, 59, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

.hero-contact-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: var(--space-xl);
}

.hero-contact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: scaleIn 0.8s ease 0.3s forwards;
}

.hero-contact-icon i {
  font-size: 2rem;
  color: var(--color-white);
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes rotate {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.section {
  padding: var(--space-xxl) 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  opacity: 0;
}

.section-title.animate {
  animation: fadeInUp 0.8s ease forwards;
}

.section-content {
  opacity: 0;
}

.section-content.animate {
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.product-card {
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateY(20px);
  position: relative;
}

.product-card.animate {
  animation: fadeInUp 0.6s ease forwards;
}

.product-card.animate:nth-child(1) {
  animation: fadeInUp 0.6s ease forwards, float 8s ease-in-out 1s infinite;
}

.product-card.animate:nth-child(2) {
  animation: fadeInUp 0.6s ease 0.2s forwards, float 8s ease-in-out 3s infinite;
}

.product-card.animate:nth-child(3) {
  animation: fadeInUp 0.6s ease 0.4s forwards, float 8s ease-in-out 5s infinite;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.product-card:hover::before {
  opacity: 1;
}

.product-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  background: var(--color-bg-primary);
}

.product-info {
  padding: var(--space-md);
}

.product-name {
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
  color: var(--color-text-primary);
}

.product-price {
  font-size: 1.25rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-top: var(--space-sm);
}

.asymmetric-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.asymmetric-item {
  position: relative;
  opacity: 0;
}

.asymmetric-item.animate {
  animation: fadeInScale 0.8s ease forwards;
}

.asymmetric-item:nth-child(odd) {
  margin-left: 0;
  margin-right: 10%;
}

.asymmetric-item:nth-child(even) {
  margin-left: 10%;
  margin-right: 0;
}

.asymmetric-item:nth-child(3n) {
  transform: rotate(-1deg);
}

.asymmetric-item:nth-child(3n+1) {
  transform: rotate(1deg);
}

.contact-section {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xxl) var(--space-md);
}

.contact-form {
  background: var(--color-bg-secondary);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-primary);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-sm);
  background: var(--color-bg-primary);
  border: 1px solid rgba(226, 232, 240, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  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-accent);
  box-shadow: 0 0 0 3px rgba(6, 78, 59, 0.2);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.checkbox-input {
  margin-top: 4px;
  cursor: pointer;
}

.checkbox-label {
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(226, 232, 240, 0.7);
}

.submit-btn {
  width: 100%;
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all var(--transition-base);
  margin-top: var(--space-md);
  box-shadow: var(--shadow-md);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: #076b54;
}

.map-container {
  margin-top: var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%) contrast(1.1);
}

.footer {
  padding: var(--space-lg) 0;
  text-align: center;
  border-top: 1px solid rgba(226, 232, 240, 0.1);
  margin-top: var(--space-xxl);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
}

.footer-link {
  font-size: 0.75rem;
  color: rgba(226, 232, 240, 0.6);
  transition: color var(--transition-base);
}

.footer-link:hover {
  color: var(--color-accent);
}

.footer-text {
  font-size: 0.75rem;
  color: rgba(226, 232, 240, 0.5);
}

.error-page {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xxl) var(--space-md);
  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(6, 78, 59, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

.error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  font-family: var(--font-display);
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeInScale 1s ease 0.3s forwards;
  text-shadow: 0 0 40px rgba(6, 78, 59, 0.5);
  letter-spacing: 0.05em;
}

.error-message {
  font-size: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeInUp 1s ease 0.6s forwards;
}

.error-description {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: rgba(226, 232, 240, 0.7);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeInUp 1s ease 0.9s forwards;
}

.thank-you-page {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xxl) var(--space-md);
  position: relative;
  overflow: hidden;
}

.thank-you-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.05) 0%, transparent 50%, rgba(6, 78, 59, 0.05) 100%);
}

.thank-you-icon {
  width: 120px;
  height: 120px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: scaleIn 0.8s ease 0.3s forwards;
  box-shadow: 0 0 40px rgba(6, 78, 59, 0.4);
}

.thank-you-icon i {
  font-size: 3.5rem;
  color: var(--color-white);
}

.thank-you-title {
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeInUp 1s ease 0.6s forwards;
}

.thank-you-message {
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  color: rgba(226, 232, 240, 0.8);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  line-height: 1.8;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeInUp 1s ease 0.9s forwards;
}

.policy-page {
  padding: var(--space-xxl) 0;
  background: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
}

.policy-hero {
  text-align: center;
  padding: var(--space-xxl) 0 var(--space-xl);
  position: relative;
  overflow: hidden;
}

.policy-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 78, 59, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 6s ease-in-out infinite;
}

.policy-hero-icon {
  width: 80px;
  height: 80px;
  background: rgba(6, 78, 59, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeInScale 0.8s ease 0.2s forwards;
}

.policy-hero-icon i {
  font-size: 2rem;
  color: var(--color-accent);
}

.policy-hero h1 {
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  margin-bottom: var(--space-md);
}

.policy-hero-meta {
  font-size: 0.875rem;
  color: rgba(226, 232, 240, 0.6);
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

.policy-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.policy-section {
  background: var(--color-bg-secondary);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(6, 78, 59, 0.1);
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateY(20px);
}

.policy-section.animate {
  animation: fadeInUp 0.6s ease forwards;
}

.policy-section:hover {
  border-color: rgba(6, 78, 59, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.policy-section-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(6, 78, 59, 0.1);
}

.policy-section-number {
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.policy-section-title {
  font-size: 1.5rem;
  margin: 0;
  color: var(--color-text-primary);
}

.policy-section-content {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(226, 232, 240, 0.8);
}

.policy-navigation {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xxl);
  flex-wrap: wrap;
}

.policy-nav-link {
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-bg-secondary);
  border: 1px solid rgba(6, 78, 59, 0.2);
  border-radius: var(--radius-lg);
  color: var(--color-text-primary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition-base);
  text-decoration: none;
}

.policy-nav-link:hover {
  border-color: var(--color-accent);
  background: rgba(6, 78, 59, 0.1);
  transform: translateY(-2px);
}

.privacy-popup {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  max-width: 500px;
  background: var(--color-bg-secondary);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  opacity: 0;
  transform: translateY(100px);
  transition: all var(--transition-slow);
}

.privacy-popup.show {
  opacity: 1;
  transform: translateY(0);
}

.privacy-popup-content {
  margin-bottom: var(--space-sm);
  font-size: 0.75rem;
  line-height: 1.5;
}

.privacy-popup-buttons {
  display: flex;
  gap: var(--space-sm);
}

.privacy-btn {
  padding: var(--space-xs) var(--space-md);
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  cursor: pointer;
  transition: all var(--transition-base);
}

.privacy-btn-accept {
  background: var(--color-accent);
  color: var(--color-white);
}

.privacy-btn-accept:hover {
  background: #076b54;
}

.privacy-btn-decline {
  background: transparent;
  color: var(--color-text-primary);
  border: 1px solid rgba(226, 232, 240, 0.2);
}

.privacy-btn-decline:hover {
  border-color: var(--color-accent);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    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 float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.fade-in-left {
  opacity: 0;
}

.fade-in-left.animate {
  animation: slideInLeft 0.8s ease forwards;
}

.fade-in-right {
  opacity: 0;
}

.fade-in-right.animate {
  animation: slideInRight 0.8s ease forwards;
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-bg-secondary);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-xxl) var(--space-lg);
    gap: var(--space-lg);
    transition: right var(--transition-base);
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.active {
    right: 0;
  }

  .burger {
    display: flex;
  }

  .asymmetric-item:nth-child(odd),
  .asymmetric-item:nth-child(even) {
    margin-left: 0;
    margin-right: 0;
    transform: none;
  }

  .hero-section {
    min-height: 70vh;
  }

  .hero-split {
    grid-template-columns: 1fr;
    min-height: 75vh;
  }

  .hero-split-right {
    min-height: 300px;
  }

  .hero-split-decoration {
    display: none;
  }

  .hero-showcase-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .privacy-popup {
    left: var(--space-sm);
    right: var(--space-sm);
    bottom: var(--space-sm);
  }
}

@media (max-width: 480px) {
  body {
    font-size: 0.8125rem;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .contact-form {
    padding: var(--space-md);
  }

  .policy-section {
    padding: var(--space-md);
  }

  .policy-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .policy-section-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .policy-hero-icon {
    width: 60px;
    height: 60px;
  }

  .policy-hero-icon i {
    font-size: 1.5rem;
  }

  .policy-navigation {
    flex-direction: column;
    align-items: stretch;
  }

  .policy-nav-link {
    text-align: center;
  }
}

@media (max-width: 320px) {
  :root {
    --space-xs: 0.375rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.25rem;
    --space-xl: 1.75rem;
    --space-xxl: 2.5rem;
  }

  body {
    font-size: 0.75rem;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .logo {
    font-size: 1rem;
    letter-spacing: 0.05em;
  }

  .header-wrapper {
    padding: var(--space-sm) 0;
  }

  .nav-menu {
    width: 100%;
    right: -100%;
    padding: var(--space-xl) var(--space-md);
  }

  .burger span {
    width: 20px;
  }

  .hero-section,
  .hero-split,
  .hero-showcase,
  .hero-exclusive,
  .hero-contact {
    min-height: 60vh;
    padding: var(--space-lg) 0;
  }

  .hero-content,
  .hero-split-left,
  .hero-showcase-content,
  .hero-exclusive-content,
  .hero-contact-content {
    padding: var(--space-md);
  }

  .hero-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
    margin-bottom: var(--space-sm);
  }

  .hero-subtitle {
    font-size: 0.8125rem;
    margin-bottom: var(--space-md);
  }

  .hero-cta {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.75rem;
  }

  .hero-split {
    grid-template-columns: 1fr;
    min-height: 65vh;
  }

  .hero-split-right {
    min-height: 200px;
  }

  .hero-split-decoration {
    display: none;
  }

  .hero-showcase-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-top: var(--space-md);
  }

  .hero-showcase-item {
    padding: var(--space-md);
  }

  .hero-exclusive-number {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .hero-contact-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--space-md);
  }

  .hero-contact-icon i {
    font-size: 1.5rem;
  }

  .section {
    padding: var(--space-lg) 0;
  }

  .section-title {
    font-size: clamp(1.25rem, 6vw, 1.75rem);
    margin-bottom: var(--space-md);
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .product-card {
    border-radius: var(--radius-md);
  }

  .product-image {
    height: 250px;
  }

  .product-info {
    padding: var(--space-sm);
  }

  .product-name {
    font-size: 1rem;
  }

  .product-price {
    font-size: 1.125rem;
  }

  .asymmetric-layout {
    gap: var(--space-md);
  }

  .asymmetric-item {
    margin-left: 0 !important;
    margin-right: 0 !important;
    transform: none !important;
  }

  .contact-section {
    padding: var(--space-lg) var(--space-sm);
  }

  .contact-form {
    padding: var(--space-md);
  }

  .form-input,
  .form-textarea {
    padding: var(--space-xs);
    font-size: 0.75rem;
  }

  .form-textarea {
    min-height: 100px;
  }

  .submit-btn {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.75rem;
  }

  .map-container {
    height: 250px;
    margin-top: var(--space-md);
  }

  .footer {
    padding: var(--space-md) 0;
  }

  .footer-links {
    gap: var(--space-sm);
    margin-bottom: var(--space-xs);
  }

  .footer-link {
    font-size: 0.6875rem;
  }

  .footer-text {
    font-size: 0.6875rem;
  }

  .error-page {
    min-height: 70vh;
    padding: var(--space-lg) var(--space-sm);
  }

  .error-page::before {
    width: 300px;
    height: 300px;
  }

  .error-code {
    font-size: clamp(4rem, 20vw, 6rem);
    margin-bottom: var(--space-sm);
  }

  .error-message {
    font-size: clamp(1rem, 5vw, 1.25rem);
    margin-bottom: var(--space-md);
  }

  .error-description {
    font-size: 0.8125rem;
    margin-bottom: var(--space-md);
  }

  .thank-you-page {
    min-height: 70vh;
    padding: var(--space-lg) var(--space-sm);
  }

  .thank-you-icon {
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-md);
  }

  .thank-you-icon i {
    font-size: 2.5rem;
  }

  .thank-you-title {
    font-size: clamp(1.25rem, 6vw, 1.75rem);
    margin-bottom: var(--space-sm);
  }

  .thank-you-message {
    font-size: 0.8125rem;
    margin-bottom: var(--space-md);
  }

  .policy-page {
    padding: var(--space-lg) 0;
  }

  .policy-hero {
    padding: var(--space-lg) 0 var(--space-md);
  }

  .policy-hero::before {
    width: 300px;
    height: 300px;
  }

  .policy-hero-icon {
    width: 50px;
    height: 50px;
    margin-bottom: var(--space-sm);
  }

  .policy-hero-icon i {
    font-size: 1.25rem;
  }

  .policy-hero h1 {
    font-size: clamp(1.25rem, 6vw, 1.75rem);
    margin-bottom: var(--space-xs);
  }

  .policy-hero-meta {
    font-size: 0.75rem;
  }

  .policy-content {
    padding: 0 var(--space-sm);
  }

  .policy-section {
    padding: var(--space-sm);
    margin-bottom: var(--space-md);
    border-radius: var(--radius-md);
  }

  .policy-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-sm);
  }

  .policy-section-number {
    width: 30px;
    height: 30px;
    font-size: 0.875rem;
  }

  .policy-section-title {
    font-size: 1.125rem;
  }

  .policy-section-content {
    font-size: 0.75rem;
    line-height: 1.7;
  }

  .policy-navigation {
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
  }

  .policy-nav-link {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.75rem;
    text-align: center;
  }

  .privacy-popup {
    left: var(--space-xs);
    right: var(--space-xs);
    bottom: var(--space-xs);
    padding: var(--space-sm);
    max-width: none;
  }

  .privacy-popup-content {
    font-size: 0.6875rem;
    margin-bottom: var(--space-xs);
  }

  .privacy-popup-buttons {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .privacy-btn {
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.6875rem;
    width: 100%;
  }
}

