:root {
  --bg-primary: #0F1412;
  --bg-secondary: #1A1F1D;
  --accent-primary: #B87333;
  --accent-secondary: #D4945A;
  --text-primary: #F4F7F6;
  --text-secondary: #CBDCE6;
  --text-muted: #8A9BA8;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-xxl: 6rem;
  --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 cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

* {
  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(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 0.875rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 2rem);
}

p {
  margin-bottom: var(--space-sm);
  font-size: 0.875rem;
}

a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-secondary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header {
  position: relative;
  padding: var(--space-md) 0;
  z-index: 1000;
  background: rgba(15, 20, 18, 0.95);
  backdrop-filter: blur(10px);
  transition: transform var(--transition-base);
}

.header.hidden {
  transform: translateY(-100%);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-primary);
  letter-spacing: 0.05em;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: var(--space-xs);
}

.nav {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
}

.nav a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  padding: var(--space-xs) 0;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-primary);
  transition: width var(--transition-base);
}

.nav a:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--space-xl) var(--space-md);
}

.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) 0;
}

.hero h1 {
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeInUp 1s var(--transition-base) forwards;
}

.hero p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeInUp 1s 0.3s forwards;
}

.hero-cta {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: var(--accent-primary);
  color: var(--bg-primary);
  border-radius: var(--radius-md);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  transition: all var(--transition-base);
  opacity: 0;
  animation: fadeInUp 1s 0.6s forwards;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.hero-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.hero-cta:hover::before {
  width: 300px;
  height: 300px;
}

.hero-cta:hover {
  background: var(--accent-secondary);
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-lg);
}

.section {
  padding: var(--space-xxl) 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.section-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.card {
  background: var(--bg-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184, 115, 51, 0.2);
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateY(30px) scale(0.95);
}

.card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--accent-primary);
  margin-bottom: var(--space-md);
}

.card h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

.asymmetric-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  padding: var(--space-xl) 0;
}

.asymmetric-item {
  position: relative;
  padding: var(--space-lg);
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184, 115, 51, 0.2);
  opacity: 0;
  transform: translateX(-50px) rotate(-1deg);
  transition: all var(--transition-slow);
}

.asymmetric-item:nth-child(even) {
  transform: translateX(50px) rotate(1deg);
  margin-left: auto;
  max-width: 85%;
}

.asymmetric-item.visible {
  opacity: 1;
  transform: translateX(0) rotate(0deg);
  animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.asymmetric-item:nth-child(even).visible {
  animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.asymmetric-item:nth-child(odd) {
  max-width: 90%;
}

.asymmetric-item:hover {
  transform: translateX(0) rotate(0deg) translateY(-5px);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-lg);
}

.contact-section {
  padding: var(--space-xxl) 0;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.contact-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-item {
  display: flex;
  align-items: start;
  gap: var(--space-md);
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--accent-primary);
  margin-top: var(--space-xs);
}

.contact-form {
  background: var(--bg-secondary);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(184, 115, 51, 0.2);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm);
  background: var(--bg-primary);
  border: 1px solid rgba(184, 115, 51, 0.3);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: start;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  font-size: 0.75rem;
  text-transform: none;
  letter-spacing: 0;
}

.btn-submit {
  width: 100%;
  padding: var(--space-sm) var(--space-lg);
  background: var(--accent-primary);
  color: var(--bg-primary);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.btn-submit:hover {
  background: var(--accent-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.footer {
  padding: var(--space-lg) 0;
  text-align: center;
  border-top: 1px solid rgba(184, 115, 51, 0.2);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.map-container {
  margin-top: var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.product-card {
  background: var(--bg-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184, 115, 51, 0.2);
  transition: all var(--transition-base);
  opacity: 0;
  transform: scale(0.9) translateY(20px);
}

.product-card.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.product-card:hover {
  transform: scale(1.05) translateY(-8px);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-lg);
}

.product-price {
  font-size: 1.5rem;
  color: var(--accent-primary);
  font-weight: 700;
  margin-top: var(--space-md);
}

.thank-you-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.error-code {
  font-size: 8rem;
  color: var(--accent-primary);
  font-weight: 700;
  line-height: 1;
  margin-bottom: var(--space-md);
}

.cookie-popup {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  background: var(--bg-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184, 115, 51, 0.3);
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  max-width: 600px;
  margin: 0 auto;
  display: none;
}

.cookie-popup.show {
  display: block;
  animation: slideUp 0.5s var(--transition-base);
}

.cookie-popup-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.cookie-btn {
  padding: var(--space-xs) var(--space-md);
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cookie-btn-accept {
  background: var(--accent-primary);
  color: var(--bg-primary);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--text-muted);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: var(--space-xl);
    gap: var(--space-lg);
    transition: right var(--transition-base);
    z-index: 9999;
  }

  .nav.active {
    right: 0;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .asymmetric-item {
    max-width: 100% !important;
    margin-left: 0 !important;
  }

  .hero {
    min-height: 70vh;
  }

  html {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 12px;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .cookie-popup {
    left: var(--space-sm);
    right: var(--space-sm);
    bottom: var(--space-sm);
  }
}

.policy-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(184, 115, 51, 0.1) 0%, rgba(15, 20, 18, 0.9) 100%);
  padding: var(--space-xxl) var(--space-md);
  overflow: hidden;
}

.policy-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(184, 115, 51, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.policy-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.policy-hero h1 {
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.policy-section {
  padding: var(--space-xxl) 0;
}

.policy-card {
  background: var(--bg-secondary);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(184, 115, 51, 0.2);
  margin-bottom: var(--space-lg);
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  overflow: hidden;
}

.policy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.policy-card.visible {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.policy-card:hover {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.policy-card:hover::before {
  opacity: 1;
}

.policy-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  color: var(--bg-primary);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-md);
}

.policy-card h2 {
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.policy-card ul {
  margin-left: var(--space-lg);
  margin-top: var(--space-sm);
  list-style: none;
}

.policy-card ul li {
  position: relative;
  padding-left: var(--space-md);
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
}

.policy-card ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: 700;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.success-animation {
  animation: scaleIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.error-animation {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

.modern-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  color: var(--bg-primary);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.modern-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.modern-button:hover::before {
  width: 300px;
  height: 300px;
}

.modern-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.modern-button-outline {
  background: transparent;
  border: 2px solid var(--accent-primary);
  color: var(--accent-primary);
}

.modern-button-outline:hover {
  background: var(--accent-primary);
  color: var(--bg-primary);
}

.content-highlight {
  background: linear-gradient(135deg, rgba(184, 115, 51, 0.1) 0%, rgba(184, 115, 51, 0.05) 100%);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--accent-primary);
  margin: var(--space-md) 0;
}

.glass-card {
  background: rgba(26, 31, 29, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(184, 115, 51, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(184, 115, 51, 0.1), transparent);
  transition: left 0.6s;
}

.glass-card:hover::before {
  left: 100%;
}

.glass-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(184, 115, 51, 0.5);
  box-shadow: 0 16px 48px rgba(184, 115, 51, 0.2);
}

.floating-element {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

.parallax-section {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(184, 115, 51, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  min-height: 60vh;
}

.split-content {
  position: relative;
  z-index: 2;
}

.split-visual {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.split-visual img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-base);
}

.split-visual img:hover {
  transform: scale(1.05);
}

.morphing-blob {
  position: absolute;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: linear-gradient(135deg, rgba(184, 115, 51, 0.2) 0%, rgba(212, 148, 90, 0.1) 100%);
  animation: morph 8s ease-in-out infinite;
  filter: blur(40px);
}

@keyframes morph {
  0%, 100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: translate(0, 0) scale(1);
  }
  25% {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    transform: translate(20px, -20px) scale(1.1);
  }
  50% {
    border-radius: 30% 70% 70% 30% / 70% 30% 30% 70%;
    transform: translate(-20px, 20px) scale(0.9);
  }
  75% {
    border-radius: 70% 30% 30% 70% / 30% 70% 70% 30%;
    transform: translate(10px, 10px) scale(1.05);
  }
}

.text-reveal {
  overflow: hidden;
  position: relative;
}

.text-reveal::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  transform: translateX(-100%);
  animation: reveal 1s ease-out forwards;
}

@keyframes reveal {
  to {
    transform: translateX(100%);
  }
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 50%, var(--accent-primary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s linear infinite;
}

@keyframes gradient-shift {
  to {
    background-position: 200% center;
  }
}

.interactive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  perspective: 1000px;
}

.interactive-card {
  background: rgba(26, 31, 29, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(184, 115, 51, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
  transform-style: preserve-3d;
  position: relative;
}

.interactive-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary), var(--accent-primary));
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.interactive-card:hover::after {
  opacity: 1;
}

.interactive-card:hover {
  transform: translateY(-15px) rotateX(5deg);
  box-shadow: 0 20px 60px rgba(184, 115, 51, 0.3);
}

.stagger-animation {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-animation.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.hero-v2::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  top: -250px;
  right: -250px;
  animation: pulse-glow 4s ease-in-out infinite;
}

.hero-v2::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 148, 90, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -200px;
  left: -200px;
  animation: pulse-glow 5s ease-in-out infinite reverse;
}

@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.hero-content-v2 {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: var(--space-xxl);
}

.neon-border {
  position: relative;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
}

.neon-border::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary), var(--accent-primary));
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: border-rotate 3s linear infinite;
}

@keyframes border-rotate {
  to {
    filter: hue-rotate(360deg);
  }
}

.contact-form-v2 {
  background: rgba(26, 31, 29, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(184, 115, 51, 0.3);
  border-radius: var(--radius-xl);
  padding: var(--space-xxl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.contact-form-v2::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.1) 0%, transparent 70%);
  animation: rotate 15s linear infinite;
}

.contact-form-v2 > * {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .split-layout {
    grid-template-columns: 1fr;
  }

  .interactive-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-v2 {
    min-height: 80vh;
  }

  .hero-v2::before,
  .hero-v2::after {
    display: none;
  }

  .hero-content-v2 {
    padding: var(--space-lg);
  }

  .hero-content-v2 h1 {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
  }

  .hero-content-v2 p {
    font-size: 1rem;
  }

  .morphing-blob {
    display: none;
  }

  .glass-card {
    padding: var(--space-md);
  }

  .interactive-card {
    padding: var(--space-md);
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    min-height: auto;
  }

  .split-visual {
    min-height: 200px;
  }

  .contact-form-v2 {
    padding: var(--space-lg);
  }

  .contact-section > .container > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: var(--space-lg) !important;
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .parallax-bg {
    animation-duration: 30s;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 10px;
  }

  body {
    font-size: 0.8rem;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .header {
    padding: var(--space-sm) 0;
  }

  .logo {
    font-size: 1.2rem;
  }

  .nav {
    width: 85%;
    padding: var(--space-lg);
  }

  .hero-v2 {
    min-height: 70vh;
  }

  .hero-content-v2 {
    padding: var(--space-md);
  }

  .hero-content-v2 h1 {
    font-size: 1.8rem;
    margin-bottom: var(--space-sm);
  }

  .hero-content-v2 p {
    font-size: 0.9rem;
    margin-bottom: var(--space-lg);
  }

  .floating-element {
    font-size: 3rem !important;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
  }

  .grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .interactive-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .glass-card {
    padding: var(--space-sm);
    border-radius: var(--radius-md);
  }

  .interactive-card {
    padding: var(--space-sm);
    border-radius: var(--radius-md);
  }

  .interactive-card:hover {
    transform: translateY(-5px);
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .split-visual {
    min-height: 150px;
  }

  .split-visual .floating-element {
    font-size: 4rem !important;
  }

  .modern-button {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.75rem;
    width: 100%;
  }

  .contact-form-v2 {
    padding: var(--space-md);
    border-radius: var(--radius-md);
  }

  .form-group {
    margin-bottom: var(--space-sm);
  }

  .form-group input,
  .form-group textarea {
    padding: var(--space-xs);
    font-size: 0.8rem;
  }

  .form-group label {
    font-size: 0.75rem;
  }

  .contact-section > .container > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: var(--space-md) !important;
  }

  .map-container {
    margin-top: var(--space-lg);
  }

  .map-container iframe {
    height: 250px;
  }

  .policy-card {
    padding: var(--space-sm);
    border-radius: var(--radius-md);
  }

  .policy-card-number {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }

  .policy-hero {
    min-height: 30vh;
    padding: var(--space-lg) var(--space-sm);
  }

  .policy-hero-content h1 {
    font-size: 1.8rem;
  }

  .policy-hero-content p {
    font-size: 0.9rem;
  }

  .neon-border {
    padding: var(--space-sm);
  }

  .neon-border[style*="width: 80px"] {
    width: 60px !important;
    height: 60px !important;
  }

  .neon-border[style*="width: 100px"] {
    width: 70px !important;
    height: 70px !important;
  }

  .content-highlight {
    padding: var(--space-sm);
    font-size: 0.75rem;
  }

  .footer {
    padding: var(--space-md) 0;
  }

  .footer-links {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .cookie-popup {
    left: var(--space-xs);
    right: var(--space-xs);
    bottom: var(--space-xs);
    padding: var(--space-md);
  }

  .cookie-popup-content p {
    font-size: 0.75rem;
  }

  .cookie-btn {
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.75rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  h4 {
    font-size: 1rem;
  }

  p {
    font-size: 0.8rem;
  }

  .card-icon {
    font-size: 2rem;
  }

  .product-price {
    font-size: 1.5rem;
  }

  .error-code {
    font-size: 5rem;
  }

  .thank-you-page,
  .error-page {
    min-height: 70vh;
    padding: var(--space-lg);
  }

  .parallax-bg {
    display: none;
  }

  .morphing-blob {
    display: none;
  }

  .hero-v2::before,
  .hero-v2::after {
    display: none;
  }
}
