:root {
  --color-primary: #1B4332;
  --color-secondary: #452218;
  --color-accent: #D4AF37;
  --color-bg: #FFFDF5;
  --color-bg-alt: #F1EDE4;
  --color-text: #452218;
  --color-text-light: #1B4332;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 2px 8px rgba(27, 67, 50, 0.08);
  --shadow-md: 0 4px 16px rgba(27, 67, 50, 0.12);
  --shadow-lg: 0 8px 32px rgba(27, 67, 50, 0.16);
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 2rem;
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 2rem);
}

p {
  margin-bottom: var(--space-sm);
  font-size: clamp(0.875rem, 2vw, 1rem);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header {
  position: relative;
  padding: var(--space-md) 0;
  background: var(--color-bg);
  z-index: 1000;
  transition: transform var(--transition-slow), opacity var(--transition-slow);
}

.header.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 10;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-primary);
  cursor: pointer;
  z-index: 1001;
}

.nav {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.nav-link {
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 500;
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-base);
}

.nav-link:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.hero-home {
  background: radial-gradient(ellipse at center, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 20s infinite ease-in-out;
}

.hero-shape:nth-child(1) {
  width: 300px;
  height: 300px;
  background: var(--color-accent);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.hero-shape:nth-child(2) {
  width: 200px;
  height: 200px;
  background: var(--color-primary);
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.hero-shape:nth-child(3) {
  width: 150px;
  height: 150px;
  background: var(--color-accent);
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.hero-shape:nth-child(4) {
  width: 250px;
  height: 250px;
  background: var(--color-secondary);
  top: 30%;
  right: 30%;
  animation-delay: 6s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(30px, -30px) rotate(90deg);
  }
  50% {
    transform: translate(-20px, 20px) rotate(180deg);
  }
  75% {
    transform: translate(20px, 30px) rotate(270deg);
  }
}

.hero-stand-visual {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.15;
}

.stand-shelf {
  position: absolute;
  width: 400px;
  height: 20px;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  animation: slideInFromLeft 1s ease forwards;
}

.stand-shelf:nth-child(1) {
  top: 30%;
  animation-delay: 0.2s;
}

.stand-shelf:nth-child(2) {
  top: 45%;
  animation-delay: 0.4s;
}

.stand-shelf:nth-child(3) {
  top: 60%;
  animation-delay: 0.6s;
}

@keyframes slideInFromLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 0.15;
  }
}

.hero-holder-visual {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.holder-item {
  width: 80px;
  height: 120px;
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-accent) 100%);
  border-radius: var(--radius-md);
  opacity: 0.2;
  animation: bounceIn 1s ease forwards;
  transform-origin: bottom;
}

.holder-item:nth-child(1) {
  animation-delay: 0.2s;
}

.holder-item:nth-child(2) {
  animation-delay: 0.4s;
}

.holder-item:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes bounceIn {
  0% {
    transform: scale(0) translateY(100px);
    opacity: 0;
  }
  50% {
    transform: scale(1.1) translateY(-10px);
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 0.2;
  }
}

.hero-contact-waves {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-wave {
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
  opacity: 0.1;
  animation: waveMove 15s infinite ease-in-out;
}

.hero-wave:nth-child(1) {
  top: -50%;
  left: -50%;
  animation-delay: 0s;
}

.hero-wave:nth-child(2) {
  top: -30%;
  right: -50%;
  animation-delay: 5s;
}

.hero-wave:nth-child(3) {
  bottom: -50%;
  left: -30%;
  animation-delay: 10s;
}

@keyframes waveMove {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, 30px) scale(1.1);
  }
  66% {
    transform: translate(-30px, -30px) scale(0.9);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  margin-bottom: var(--space-md);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
  position: relative;
}

.hero-title::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0;
  animation: expandLine 1s ease 0.5s forwards;
}

@keyframes expandLine {
  to {
    width: 200px;
    opacity: 1;
  }
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.3s forwards;
  position: relative;
}

.hero-subtitle::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-accent);
  animation: expandUnderline 1s ease 0.8s forwards;
}

@keyframes expandUnderline {
  to {
    width: 150px;
  }
}

.hero-cta {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-primary);
  color: var(--color-bg);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 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.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.hero-cta:hover::before {
  width: 300px;
  height: 300px;
}

.hero-cta:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hero-cta span {
  position: relative;
  z-index: 1;
}

.section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: translateY(20px);
}

.section-title.visible {
  animation: fadeInUp 0.8s ease forwards;
}

.section-content {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  position: relative;
  padding: var(--space-lg) 0;
  transition: all var(--transition-base);
}

.section-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  border-radius: var(--radius-sm);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  transition: width var(--transition-slow);
}

.section-content.visible::before {
  width: 100px;
  animation: expandLine 1.2s ease 0.5s forwards;
}

.section-content.visible {
  animation: contentReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
  position: relative;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
  margin: 0 calc(-1 * var(--space-md));
}

.section-content.visible:hover {
  border-left-color: rgba(212, 175, 55, 0.3);
  border-right-color: rgba(212, 175, 55, 0.3);
}

.section-content.visible::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.04) 0%, rgba(27, 67, 50, 0.04) 50%, rgba(212, 175, 55, 0.04) 100%);
  border-radius: var(--radius-lg);
  opacity: 0;
  animation: fadeInBg 1.5s ease 0.4s forwards;
  pointer-events: none;
  z-index: -1;
  box-shadow: 0 4px 20px rgba(27, 67, 50, 0.08);
}

@keyframes contentReveal {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  50% {
    transform: translateY(-5px) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes expandLine {
  0% {
    width: 0;
    opacity: 0;
  }
  50% {
    width: 150px;
    opacity: 1;
  }
  100% {
    width: 100px;
    opacity: 0.8;
  }
}

@keyframes fadeInBg {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.feature-card {
  background: var(--color-bg-alt);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(20px);
}

.feature-card.visible {
  animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.feature-title {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  margin-bottom: var(--space-xs);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.product-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-slow);
  opacity: 0;
  transform: scale(0.95);
}

.product-card.visible {
  animation: scaleIn 0.6s ease forwards;
}

.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; }

@keyframes scaleIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.product-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.product-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  background: var(--color-bg-alt);
}

.product-info {
  padding: var(--space-md);
}

.product-title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: var(--space-xs);
}

.product-price {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.product-description {
  color: var(--color-text-light);
  font-size: clamp(0.875rem, 2vw, 1rem);
  margin-bottom: var(--space-md);
}

.product-link {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: var(--color-primary);
  color: var(--color-bg);
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: all var(--transition-base);
}

.product-link:hover {
  background: var(--color-accent);
}

.asymmetric-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
  position: relative;
  padding: var(--space-md) 0;
}

.asymmetric-layout::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--color-accent), transparent);
  opacity: 0.2;
  z-index: 0;
}

.asymmetric-item {
  position: relative;
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-slow);
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  border: 2px solid transparent;
  overflow: hidden;
}

.asymmetric-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left var(--transition-slow);
  z-index: 0;
}

.asymmetric-item:hover::before {
  left: 100%;
}

.asymmetric-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary), var(--color-accent));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: -1;
}

.asymmetric-item:hover::after {
  opacity: 1;
}

.asymmetric-item > * {
  position: relative;
  z-index: 1;
}

.asymmetric-item:nth-child(odd) {
  transform: translateX(-30px) translateY(40px) rotate(-2deg) scale(0.95);
  margin-right: var(--space-lg);
  border-left: 4px solid var(--color-accent);
}

.asymmetric-item:nth-child(even) {
  transform: translateX(30px) translateY(40px) rotate(2deg) scale(0.95);
  margin-left: var(--space-lg);
  border-right: 4px solid var(--color-primary);
}

.asymmetric-item.visible {
  animation: asymmetricReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.asymmetric-item:nth-child(1).visible {
  animation-delay: 0.1s;
}

.asymmetric-item:nth-child(2).visible {
  animation-delay: 0.3s;
}

.asymmetric-item:nth-child(3).visible {
  animation-delay: 0.5s;
}

.asymmetric-item:nth-child(4).visible {
  animation-delay: 0.7s;
}

@keyframes asymmetricReveal {
  0% {
    opacity: 0;
  }
  50% {
    transform: translateX(0) translateY(-10px) rotate(0deg) scale(1.02);
    opacity: 0.8;
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) rotate(0deg) scale(1);
  }
}

.asymmetric-item:hover {
  transform: translateX(0) translateY(-8px) rotate(0deg) scale(1.03) !important;
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.asymmetric-item:nth-child(odd):hover {
  border-left-color: var(--color-accent);
  border-right-color: transparent;
}

.asymmetric-item:nth-child(even):hover {
  border-right-color: var(--color-accent);
  border-left-color: transparent;
}

.contact-section {
  padding: var(--space-xl) 0;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-md);
  opacity: 0;
  transform: translateX(-20px);
}

.form-group.visible {
  animation: slideIn 0.5s ease forwards;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }
.form-group:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
  color: var(--color-primary);
  font-size: clamp(0.875rem, 2vw, 1rem);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 2px solid var(--color-bg-alt);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 2vw, 1rem);
  background: var(--color-bg);
  color: var(--color-text);
  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(212, 175, 55, 0.1);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
}

.form-checkbox input {
  margin-top: 0.25rem;
  cursor: pointer;
}

.form-checkbox label {
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  line-height: 1.5;
}

.form-submit {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-primary);
  color: var(--color-bg);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  margin-top: var(--space-md);
}

.form-submit:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.footer {
  padding: var(--space-md) 0;
  text-align: center;
  border-top: 1px solid var(--color-bg-alt);
  margin-top: var(--space-xl);
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  color: var(--color-text-light);
}

.map-container {
  margin-top: var(--space-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.modern-page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: var(--space-xl) 0;
}

.modern-page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.modern-page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-bg);
  max-width: 800px;
  padding: var(--space-lg);
}

.modern-page-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: var(--space-md);
  color: var(--color-bg);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

.modern-page-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: rgba(255, 253, 245, 0.9);
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.3s forwards;
}

.modern-content-section {
  padding: var(--space-xl) 0;
  background: var(--color-bg);
}

.modern-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-bg-alt);
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateY(20px);
}

.modern-card.visible {
  animation: fadeInUp 0.6s ease forwards;
}

.modern-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--color-accent);
}

.modern-card-title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.modern-card-title i {
  color: var(--color-accent);
  font-size: 1.5rem;
}

.modern-card-content {
  color: var(--color-text);
  line-height: 1.8;
}

.modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.modern-list {
  list-style: none;
  padding: 0;
}

.modern-list-item {
  padding: var(--space-sm) 0;
  padding-left: var(--space-lg);
  position: relative;
  color: var(--color-text);
  line-height: 1.8;
}

.modern-list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
  font-size: 1.2rem;
}

.modern-highlight-box {
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
  border-left: 4px solid var(--color-accent);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  margin: var(--space-md) 0;
}

.thank-you-content {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.thank-you-icon-wrapper {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.8s ease 0.3s both;
  box-shadow: var(--shadow-lg);
}

.thank-you-icon-wrapper i {
  font-size: 4rem;
  color: var(--color-bg);
}

.thank-you-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
  opacity: 0;
  animation: fadeInUp 1s ease 0.5s forwards;
}

.thank-you-message {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: var(--space-lg);
  color: var(--color-text);
  line-height: 1.8;
  opacity: 0;
  animation: fadeInUp 1s ease 0.7s forwards;
}

.error-content {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.error-visual {
  width: 300px;
  height: 300px;
  margin: 0 auto var(--space-lg);
  position: relative;
  opacity: 0;
  animation: scaleIn 1s ease 0.3s forwards;
}

.error-visual-circle {
  position: absolute;
  border-radius: 50%;
  border: 4px solid var(--color-accent);
}

.error-visual-circle:nth-child(1) {
  width: 300px;
  height: 300px;
  top: 0;
  left: 0;
  animation: pulse 2s infinite;
}

.error-visual-circle:nth-child(2) {
  width: 200px;
  height: 200px;
  top: 50px;
  left: 50px;
  border-color: var(--color-primary);
  animation: pulse 2s infinite 0.5s;
}

.error-visual-circle:nth-child(3) {
  width: 100px;
  height: 100px;
  top: 100px;
  left: 100px;
  border-color: var(--color-accent);
  animation: pulse 2s infinite 1s;
}

.error-visual-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8rem;
  font-weight: 700;
  color: var(--color-primary);
  z-index: 10;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}

.error-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeInUp 1s ease 0.6s forwards;
}

.error-message {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  margin-bottom: var(--space-lg);
  color: var(--color-text);
  line-height: 1.8;
  opacity: 0;
  animation: fadeInUp 1s ease 0.8s forwards;
}

.policy-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
}

.policy-nav-link {
  padding: var(--space-xs) var(--space-sm);
  background: var(--color-bg);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.policy-nav-link:hover,
.policy-nav-link.active {
  background: var(--color-primary);
  color: var(--color-bg);
  border-color: var(--color-primary);
}

.privacy-popup {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  max-width: 500px;
  margin: 0 auto;
  background: var(--color-bg);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  transform: translateY(150%);
  transition: transform var(--transition-slow);
  border: 2px solid var(--color-accent);
}

.privacy-popup.show {
  transform: translateY(0);
}

.privacy-popup-content {
  margin-bottom: var(--space-sm);
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
}

.privacy-popup-buttons {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.privacy-popup-button {
  flex: 1;
  padding: var(--space-xs) var(--space-sm);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  cursor: pointer;
  transition: all var(--transition-base);
}

.privacy-popup-accept {
  background: var(--color-primary);
  color: var(--color-bg);
}

.privacy-popup-accept:hover {
  background: var(--color-accent);
}

.privacy-popup-decline {
  background: var(--color-bg-alt);
  color: var(--color-text);
}

.privacy-popup-decline:hover {
  background: var(--color-secondary);
  color: var(--color-bg);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--color-bg);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-xl) var(--space-md);
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-slow);
    z-index: 1000;
  }

  .nav.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.125rem;
    padding: var(--space-sm) 0;
  }

  .asymmetric-item {
    padding: var(--space-md);
    margin: 0 !important;
    transform: translateX(0) translateY(20px) rotate(0deg) scale(0.98) !important;
  }

  .asymmetric-item:nth-child(odd),
  .asymmetric-item:nth-child(even) {
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-left: none;
    border-right: none;
    border-top: 3px solid var(--color-accent);
  }

  .asymmetric-item.visible {
    transform: translateX(0) translateY(0) rotate(0deg) scale(1) !important;
  }

  .asymmetric-item:hover {
    transform: translateX(0) translateY(-5px) rotate(0deg) scale(1.01) !important;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-shape {
    width: 150px !important;
    height: 150px !important;
  }

  .hero-shape:nth-child(1) {
    width: 200px !important;
    height: 200px !important;
  }

  .hero-shape:nth-child(2) {
    width: 150px !important;
    height: 150px !important;
  }

  .hero-shape:nth-child(3) {
    width: 100px !important;
    height: 100px !important;
  }

  .hero-shape:nth-child(4) {
    width: 180px !important;
    height: 180px !important;
  }

  .stand-shelf {
    width: 300px;
  }

  .holder-item {
    width: 60px;
    height: 90px;
  }

  .hero-holder-visual {
    gap: 40px;
  }

  .features-grid,
  .products-grid,
  .modern-grid {
    grid-template-columns: 1fr;
  }

  .section-content.visible {
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
    margin: 0 calc(-1 * var(--space-sm));
  }

  .section-content.visible::after {
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
  }

  .modern-page-hero {
    min-height: 40vh;
  }

  .modern-card {
    padding: var(--space-md);
  }

  .policy-nav {
    flex-direction: column;
  }

  .privacy-popup {
    left: var(--space-sm);
    right: var(--space-sm);
  }

  .error-visual {
    width: 250px;
    height: 250px;
  }

  .error-visual-circle:nth-child(1) {
    width: 250px;
    height: 250px;
  }

  .error-visual-circle:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 50px;
    left: 50px;
  }

  .error-visual-circle:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 85px;
    left: 85px;
  }

  .error-visual-number {
    font-size: 5rem;
  }

  .thank-you-icon-wrapper {
    width: 100px;
    height: 100px;
  }

  .thank-you-icon-wrapper i {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  :root {
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .section {
    padding: var(--space-lg) 0;
  }

  .hero-shape {
    width: 100px !important;
    height: 100px !important;
  }

  .stand-shelf {
    width: 250px;
  }

  .holder-item {
    width: 50px;
    height: 75px;
  }

  .hero-holder-visual {
    gap: 30px;
  }

  .modern-page-hero {
    min-height: 35vh;
  }

  .section-content.visible {
    padding-left: var(--space-xs);
    padding-right: var(--space-xs);
    margin: 0 calc(-1 * var(--space-xs));
  }

  .section-content.visible::after {
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
  }

  .modern-card {
    padding: var(--space-sm);
  }

  .error-visual {
    width: 200px;
    height: 200px;
  }

  .error-visual-circle:nth-child(1) {
    width: 200px;
    height: 200px;
  }

  .error-visual-circle:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 40px;
    left: 40px;
  }

  .error-visual-circle:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 70px;
    left: 70px;
  }

  .error-visual-number {
    font-size: 4rem;
  }

  .thank-you-icon-wrapper {
    width: 80px;
    height: 80px;
  }

  .thank-you-icon-wrapper i {
    font-size: 2.5rem;
  }
}

@media (max-width: 320px) {
  :root {
    --space-xs: 0.375rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2.5rem;
  }

  html {
    font-size: 14px;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .header {
    padding: var(--space-sm) 0;
  }

  .logo {
    font-size: 1rem;
  }

  .nav-toggle {
    font-size: 1.25rem;
  }

  .hero {
    min-height: 60vh;
    padding: var(--space-md) 0;
  }

  .hero-shape {
    width: 60px !important;
    height: 60px !important;
  }

  .hero-home {
    min-height: 50vh;
  }

  .hero-shape:nth-child(1),
  .hero-shape:nth-child(4) {
    width: 80px !important;
    height: 80px !important;
  }

  .hero-content {
    padding: var(--space-md) var(--space-sm);
  }

  .hero-title {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
  }

  .hero-subtitle {
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
  }

  .hero-cta {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.875rem;
  }

  .modern-page-hero {
    min-height: 30vh;
    padding: var(--space-lg) 0;
  }

  .modern-page-title {
    font-size: 1.75rem;
  }

  .modern-page-subtitle {
    font-size: 0.875rem;
  }

  .section {
    padding: var(--space-lg) 0;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
  }

  .stand-shelf {
    width: 180px;
    height: 15px;
  }

  .holder-item {
    width: 35px;
    height: 50px;
  }

  .hero-holder-visual {
    gap: 15px;
  }

  .features-grid,
  .products-grid,
  .modern-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .feature-card,
  .product-card,
  .modern-card {
    padding: var(--space-sm);
    margin-bottom: var(--space-sm);
  }

  .feature-card-title,
  .product-title,
  .modern-card-title {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
  }

  .modern-card-title i {
    font-size: 1.25rem;
  }

  .modern-card-content {
    font-size: 0.875rem;
  }

  .feature-title {
    font-size: 1.125rem;
  }

  .feature-icon {
    font-size: 2rem;
    margin-bottom: var(--space-xs);
  }

  .product-image {
    height: 200px;
  }

  .product-price {
    font-size: 1rem;
  }

  .asymmetric-item {
    padding: var(--space-md);
    margin: 0 !important;
    transform: translateX(0) translateY(20px) rotate(0deg) scale(0.98) !important;
    border-left: none !important;
    border-right: none !important;
    border-top: 3px solid var(--color-accent);
  }

  .asymmetric-item::after {
    display: none;
  }

  .asymmetric-item.visible {
    transform: translateX(0) translateY(0) rotate(0deg) scale(1) !important;
  }

  .asymmetric-item:hover {
    transform: translateX(0) translateY(-5px) rotate(0deg) scale(1.01) !important;
  }

  .contact-section {
    padding: var(--space-md) 0;
    margin: var(--space-md) 0;
  }

  .contact-form {
    padding: var(--space-sm);
  }

  .form-group {
    margin-bottom: var(--space-sm);
  }

  .form-label {
    font-size: 0.875rem;
  }

  .form-input,
  .form-textarea {
    padding: var(--space-xs);
    font-size: 0.875rem;
  }

  .form-textarea {
    min-height: 120px;
  }

  .form-submit {
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.875rem;
  }

  .modern-highlight-box {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }

  .modern-list-item {
    padding: var(--space-xs) 0;
    padding-left: var(--space-md);
    font-size: 0.875rem;
  }

  .policy-nav {
    padding: var(--space-sm);
    gap: var(--space-xs);
  }

  .policy-nav-link {
    padding: var(--space-xs);
    font-size: 0.75rem;
  }

  .thank-you-content {
    padding: var(--space-lg) var(--space-sm);
  }

  .thank-you-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: var(--space-md);
  }

  .thank-you-icon-wrapper i {
    font-size: 2rem;
  }

  .thank-you-title {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
  }

  .thank-you-message {
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
  }

  .error-content {
    padding: var(--space-lg) var(--space-sm);
    min-height: 60vh;
  }

  .error-visual {
    width: 150px;
    height: 150px;
    margin-bottom: var(--space-md);
  }

  .error-visual-circle:nth-child(1) {
    width: 150px;
    height: 150px;
  }

  .error-visual-circle:nth-child(2) {
    width: 100px;
    height: 100px;
    top: 25px;
    left: 25px;
  }

  .error-visual-circle:nth-child(3) {
    width: 50px;
    height: 50px;
    top: 50px;
    left: 50px;
  }

  .error-visual-number {
    font-size: 3rem;
  }

  .error-title {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
  }

  .error-message {
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
  }

  .footer {
    padding: var(--space-md) 0;
    font-size: 0.75rem;
  }

  .footer p {
    font-size: 0.75rem;
    margin-top: var(--space-xs);
  }

  .map-container {
    height: 250px;
    margin-top: var(--space-md);
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.125rem;
  }

  p {
    font-size: 0.875rem;
    margin-bottom: var(--space-sm);
  }

  .nav {
    width: 85%;
    padding: var(--space-lg) var(--space-sm);
  }

  .nav-link {
    font-size: 1rem;
    padding: var(--space-sm) 0;
  }

  .section-content {
    padding: var(--space-md) 0;
  }

  .section-content.visible {
    padding-left: 0;
    padding-right: 0;
    margin: 0;
    border-left: none;
    border-right: none;
  }

  .section-content.visible::after {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .section-content.visible::before {
    width: 60px;
  }

  .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.75rem;
    margin-bottom: var(--space-xs);
  }

  .privacy-popup-button {
    padding: var(--space-xs);
    font-size: 0.75rem;
  }

  .map-container {
    height: 250px;
    margin-top: var(--space-md);
  }

  .product-link {
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.875rem;
  }
}

