:root {
  --color-primary: #8B4C9F;
  --color-secondary: #FF6B9D;
  --color-accent: #4ECDC4;
  --color-dark: #2C3E50;
  --color-light: #F8F9FA;
  --color-text: #1A1A1A;
  --color-text-light: #6C757D;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F5F5F5;
  
  --font-heading: 'Bungee', cursive;
  --font-body: 'Nunito Sans', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;
  
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 20px rgba(139, 76, 159, 0.3);
  --shadow-color: 0 8px 32px rgba(255, 107, 157, 0.25);
  
  --transition: all 0.3s ease;
  --transition-slow: all 0.6s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text);
  background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  position: relative;
}

body.nav-open {
  overflow: hidden !important;
}

html.nav-open {
  overflow: hidden !important;
}



body::after {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(139, 76, 159, 0.02) 100px, rgba(139, 76, 159, 0.02) 102px),
    repeating-linear-gradient(-45deg, transparent, transparent 100px, rgba(78, 205, 196, 0.02) 100px, rgba(78, 205, 196, 0.02) 102px);
  pointer-events: none;
  z-index: 0;
  animation: pattern-move 20s linear infinite;
  opacity: 0.3;
}

@keyframes background-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

@keyframes pattern-move {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(100px, 100px);
  }
}

body > * {
  position: relative;
  z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--color-dark);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  letter-spacing: -0.02em;
}

h1 {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease infinite;
  background-size: 200% 200%;
}

h2 {
  font-size: 1.75rem;
}

h2:not(.section-title) {
  position: relative;
  display: inline-block;
}

h2:not(.section-title)::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
  border-radius: 2px;
}

h3 {
  font-size: 1.5rem;
}

h3:not(.card h3):not(.contact-item h3):not(.product-info h3) {
  position: relative;
  padding-left: var(--space-md);
}

h3:not(.card h3):not(.contact-item h3):not(.product-info h3)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: linear-gradient(180deg, var(--color-primary), var(--color-accent));
  border-radius: 2px;
}

h4 {
  font-size: 1.25rem;
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

p {
  margin-bottom: var(--space-md);
  font-size: 0.875rem;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-secondary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-accent) 100%);
  background-size: 200% 200%;
  animation: header-gradient 8s ease infinite;
  padding: var(--space-md) 0;
  position: relative;
  transform: translateY(0);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(139, 76, 159, 0.2);
  overflow: visible;
  z-index: 9998;
}


.header.hidden {
  transform: translateY(-100%);
}

@keyframes header-gradient {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes header-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-bg);
  font-weight: 400;
  z-index: 10;
  position: relative;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  display: inline-block;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--color-accent);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.logo:hover::after {
  width: 100%;
}

.logo:hover {
  transform: scale(1.05);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-bg);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  padding: var(--space-xs);
  transition: transform 0.3s ease;
}

.menu-toggle i {
  transition: transform 0.3s ease;
}

.menu-toggle.active i {
  transform: rotate(90deg);
}

.nav {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
}

.nav a {
  color: var(--color-bg);
  font-size: 0.875rem;
  font-weight: 600;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  z-index: 0;
  pointer-events: none;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), rgba(255, 255, 255, 0.8));
  transition: width 0.3s ease;
  z-index: 0;
  pointer-events: none;
}

.nav a:hover::before {
  left: 100%;
}

.nav a:hover::after {
  width: 100%;
}

.nav a:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 30%, var(--color-secondary) 60%, var(--color-accent) 100%);
  background-size: 400% 400%;
  animation: hero-gradient 12s ease infinite;
  padding: var(--space-xxl) 0;
  text-align: center;
  color: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
  opacity: 0.8;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(78, 205, 196, 0.25) 0%, transparent 70%);
  animation: rotate-reverse 25s linear infinite;
  opacity: 0.7;
}

.hero {
  background-image: 
    linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 30%, var(--color-secondary) 60%, var(--color-accent) 100%),
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(78, 205, 196, 0.15) 0%, transparent 50%);
  background-size: 400% 400%, 100% 100%, 100% 100%;
  animation: hero-gradient 12s ease infinite, hero-shimmer 8s ease infinite;
}

@keyframes hero-shimmer {
  0%, 100% {
    background-position: 0% 50%, 20% 30%, 80% 70%;
  }
  50% {
    background-position: 100% 50%, 30% 40%, 70% 60%;
  }
}

@keyframes hero-gradient {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate-reverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: hero-content-fade 1.5s ease-out;
}

@keyframes hero-content-fade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-home {
  min-height: 90vh;
  padding: var(--space-xxl) 0;
  background-image: 
    url('../visuals/bg-image-1.webp'),
    radial-gradient(ellipse at top, rgba(139, 76, 159, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at bottom, rgba(255, 107, 157, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at left, rgba(78, 205, 196, 0.3) 0%, transparent 50%),
    linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 25%, rgba(240, 147, 251, 0.8) 50%, rgba(79, 172, 254, 0.8) 75%, rgba(0, 242, 254, 0.8) 100%);
  background-size: cover, 100% 100%, 100% 100%, 100% 100%, 400% 400%;
  background-position: center center, 0% 0%, 0% 100%, 0% 0%, 0% 50%;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  background-blend-mode: overlay, normal, normal, normal, normal;
  animation: hero-home-bg 15s ease infinite;
  position: relative;
  overflow: hidden;
}

.hero-home .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
}

.hero-home .hero::before,
.hero-home .hero::after {
  display: none;
}

@keyframes hero-home-bg {
  0%, 100% {
    background-position: center center, 0% 0%, 0% 100%, 0% 0%, 0% 50%;
  }
  50% {
    background-position: center center, 0% 0%, 0% 100%, 0% 0%, 100% 50%;
  }
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}

.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: particle-float 20s linear infinite;
  box-shadow: 
    0 0 10px rgba(255, 255, 255, 0.5),
    200px 300px 0 rgba(255, 255, 255, 0.6),
    400px 100px 0 rgba(255, 255, 255, 0.4),
    600px 500px 0 rgba(255, 255, 255, 0.5),
    800px 200px 0 rgba(255, 255, 255, 0.6),
    1000px 400px 0 rgba(255, 255, 255, 0.4);
}

.hero-particles::after {
  animation-delay: -10s;
  box-shadow: 
    0 0 10px rgba(78, 205, 196, 0.5),
    300px 200px 0 rgba(78, 205, 196, 0.6),
    500px 400px 0 rgba(78, 205, 196, 0.4),
    700px 100px 0 rgba(78, 205, 196, 0.5),
    900px 300px 0 rgba(78, 205, 196, 0.6),
    1100px 500px 0 rgba(78, 205, 196, 0.4);
}

@keyframes particle-float {
  0% {
    transform: translateY(100vh) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(200px) rotate(360deg);
    opacity: 0;
  }
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: shape-move 20s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--color-primary);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 250px;
  height: 250px;
  background: var(--color-secondary);
  top: 60%;
  right: 15%;
  animation-delay: -5s;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: var(--color-accent);
  bottom: 20%;
  left: 20%;
  animation-delay: -10s;
}

.shape-4 {
  width: 350px;
  height: 350px;
  background: var(--color-secondary);
  top: 30%;
  right: 30%;
  animation-delay: -15s;
}

@keyframes shape-move {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(50px, -50px) scale(1.1);
  }
  50% {
    transform: translate(-30px, 30px) scale(0.9);
  }
  75% {
    transform: translate(30px, 50px) scale(1.05);
  }
}

.hero-home-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: var(--space-xl) 0;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: var(--space-sm) var(--space-xl);
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  color: var(--color-bg);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: var(--space-xxl);
  margin-bottom: 0;
  animation: badge-pulse 3s ease infinite, badge-fade-in 1.5s ease-out 1.5s forwards;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25), 0 0 20px rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 11;
  transition: var(--transition);
  opacity: 0;
}

.hero-badge:hover {
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 6px 35px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.2);
}

@keyframes badge-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25), 0 0 20px rgba(255, 255, 255, 0.1);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.2);
  }
}

@keyframes badge-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-home-content h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: var(--space-xl);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), 0 0 80px rgba(255, 255, 255, 0.3), 0 0 120px rgba(255, 255, 255, 0.1);
  color: var(--color-bg);
  -webkit-text-fill-color: var(--color-bg);
  background: none;
  animation: none;
  font-weight: 400;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 11;
}

.hero-title-line {
  display: block;
  animation: title-line-reveal 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
  transform: translateY(40px) scale(0.9);
  margin-bottom: var(--space-sm);
  position: relative;
}

.hero-title-line:last-child {
  margin-bottom: 0;
}

.hero-title-line:nth-of-type(1) {
  animation-delay: 0.3s;
}

.hero-title-line:nth-of-type(2) {
  animation-delay: 0.5s;
}

.hero-title-line:nth-of-type(3) {
  animation-delay: 0.7s;
}

.hero-title-line::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent);
  animation: title-line-underline 0.8s ease-out forwards;
  animation-delay: inherit;
}

.hero-title-line:nth-of-type(1)::after {
  animation-delay: 0.6s;
}

.hero-title-line:nth-of-type(2)::after {
  animation-delay: 0.8s;
}

.hero-title-line:nth-of-type(3)::after {
  animation-delay: 1s;
}

@keyframes title-line-reveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes title-line-underline {
  to {
    width: 100%;
  }
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: description-fade 1.5s ease-out 0.8s forwards;
  opacity: 0;
}

@keyframes description-fade {
  to {
    opacity: 1;
  }
}

.hero-buttons {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  margin-bottom: var(--space-xxl);
  flex-wrap: wrap;
  animation: buttons-fade 1.5s ease-out 1s forwards;
  opacity: 0;
}

@keyframes buttons-fade {
  to {
    opacity: 1;
  }
}

.btn-hero-primary {
  padding: var(--space-md) var(--space-xxl);
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-primary);
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--color-primary);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 0;
}

.btn-hero-primary:hover::before {
  width: 400px;
  height: 400px;
}

.btn-hero-primary {
  position: relative;
  z-index: 1;
}

.btn-hero-primary:hover {
  color: var(--color-bg);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary {
  padding: var(--space-md) var(--space-xxl);
  font-size: 1rem;
  background: transparent;
  color: var(--color-bg);
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
}

.hero-features {
  display: flex;
  gap: var(--space-xl);
  justify-content: center;
  flex-wrap: wrap;
  animation: features-fade 1.5s ease-out 1.2s forwards;
  opacity: 0;
}

@keyframes features-fade {
  to {
    opacity: 1;
  }
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-bg);
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
}

.hero-feature i {
  color: var(--color-accent);
  font-size: 1.125rem;
  text-shadow: 0 0 10px rgba(78, 205, 196, 0.5);
  animation: icon-bounce 2s ease infinite;
}

.hero-feature:nth-child(2) i {
  animation-delay: 0.3s;
}

.hero-feature:nth-child(3) i {
  animation-delay: 0.6s;
}

@keyframes icon-bounce {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.1);
  }
}

.hero-feature:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  animation: scroll-bounce 2s ease infinite;
  pointer-events: none;
}

@keyframes scroll-bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border-right: 3px solid rgba(255, 255, 255, 0.8);
  border-bottom: 3px solid rgba(255, 255, 255, 0.8);
  transform: rotate(45deg);
  animation: arrow-pulse 1.5s ease infinite;
}

@keyframes arrow-pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.hero h1 {
  color: var(--color-bg);
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 255, 255, 0.2);
  animation: hero-title 2s ease-out, hero-title-float 4s ease-in-out infinite 2s;
  -webkit-text-fill-color: var(--color-bg);
  background: none;
  position: relative;
  display: inline-block;
}

.hero h1::before {
  content: attr(title);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: hero-title-shine 3s ease infinite;
  pointer-events: none;
}

@keyframes hero-title {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-title-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes hero-title-shine {
  0% {
    transform: translateX(-100%) skewX(-15deg);
  }
  100% {
    transform: translateX(200%) skewX(-15deg);
  }
}

.hero p {
  font-size: 1rem;
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-xl);
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 50%, var(--color-accent) 100%);
  background-size: 300% 300%;
  color: var(--color-bg);
  border: none;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  animation: btn-glow 3s ease infinite;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 0;
}

.btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  transform: rotate(45deg);
  transition: left 0.6s ease;
  z-index: 0;
}

.btn span, .btn {
  position: relative;
  z-index: 1;
}

.btn:hover::before {
  width: 400px;
  height: 400px;
}

.btn:hover::after {
  left: 100%;
}

.btn:hover {
  background-position: 100% 0;
  transform: translateY(-4px) scale(1.08) rotate(-1deg);
  box-shadow: 0 12px 35px rgba(139, 76, 159, 0.5), 0 0 20px rgba(255, 107, 157, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  animation: btn-pulse 0.6s ease infinite;
}

.btn:active {
  transform: translateY(-2px) scale(1.05) rotate(0deg);
  animation: none;
}

@keyframes btn-glow {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
}

@keyframes btn-pulse {
  0%, 100% {
    transform: translateY(-4px) scale(1.08) rotate(-1deg);
  }
  50% {
    transform: translateY(-6px) scale(1.1) rotate(-1.5deg);
  }
}

.section {
  padding: var(--space-xxl) 0;
  position: relative;
  overflow: hidden;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 76, 159, 0.02), transparent);
  animation: section-sweep 10s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.section > * {
  position: relative;
  z-index: 1;
}

@keyframes section-sweep {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.section-alt {
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, rgba(245, 245, 245, 0.5) 50%, var(--color-bg-alt) 100%);
  position: relative;
}

.section-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  color: var(--color-primary);
  position: relative;
  padding-bottom: var(--space-md);
  padding-left: 40px;
  padding-right: 40px;
  font-size: 2.25rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: section-title-gradient 4s ease infinite;
  display: inline-block;
  width: 100%;
}

.section-title::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-secondary);
  font-size: 1.5rem;
  animation: sparkle-rotate 3s linear infinite;
  opacity: 0.7;
  text-shadow: 0 0 10px rgba(255, 107, 157, 0.5);
  z-index: 1;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 6px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent), var(--color-secondary), var(--color-primary));
  border-radius: 3px;
  animation: title-line 3s ease infinite;
  box-shadow: 0 2px 10px rgba(139, 76, 159, 0.4), 0 0 20px rgba(255, 107, 157, 0.3);
  z-index: 1;
}

.section-title::before {
  content: '✦';
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-secondary);
  font-size: 1.5rem;
  animation: sparkle-rotate 3s linear infinite;
  opacity: 0.7;
  text-shadow: 0 0 10px rgba(255, 107, 157, 0.5);
  z-index: 1;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 6px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent), var(--color-secondary), var(--color-primary));
  border-radius: 3px;
  animation: title-line 3s ease infinite;
  box-shadow: 0 2px 10px rgba(139, 76, 159, 0.4), 0 0 20px rgba(255, 107, 157, 0.3);
  z-index: 1;
}

@keyframes section-title-gradient {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes sparkle-rotate {
  from {
    transform: translateY(-50%) rotate(0deg) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-50%) rotate(180deg) scale(1.2);
    opacity: 1;
  }
  to {
    transform: translateY(-50%) rotate(360deg) scale(1);
    opacity: 0.7;
  }
}

@keyframes sparkle-rotate-reverse {
  from {
    transform: translateY(-50%) rotate(360deg) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-50%) rotate(180deg) scale(1.2);
    opacity: 1;
  }
  to {
    transform: translateY(-50%) rotate(0deg) scale(1);
    opacity: 0.7;
  }
}

@keyframes title-line {
  0%, 100% {
    width: 120px;
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
  }
  50% {
    width: 180px;
    opacity: 0.9;
    transform: translateX(-50%) scaleX(1.1);
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.card {
  background-color: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--color-bg) 0%, rgba(248, 249, 250, 0.8) 100%);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 76, 159, 0.1), rgba(255, 107, 157, 0.1), transparent);
  transition: left 0.6s ease;
  z-index: 0;
}

.card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
}

.card:hover::before {
  left: 100%;
}

.card:hover::after {
  opacity: 1;
}

.card:hover {
  transform: translateY(-12px) scale(1.03) rotate(0.5deg);
  box-shadow: 0 12px 40px rgba(139, 76, 159, 0.3), 0 0 0 1px rgba(139, 76, 159, 0.1);
  border-color: var(--color-primary);
  background: linear-gradient(135deg, var(--color-bg) 0%, rgba(255, 255, 255, 1) 100%);
}

.card > * {
  position: relative;
  z-index: 1;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  transition: var(--transition-slow);
  filter: brightness(1) saturate(1) contrast(1);
  position: relative;
  overflow: hidden;
}

.card img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 76, 159, 0.2), rgba(255, 107, 157, 0.2));
  opacity: 0;
  transition: opacity 0.6s ease;
}

.card:hover img {
  transform: scale(1.15) rotate(1deg);
  filter: brightness(1.15) saturate(1.3) contrast(1.1);
  box-shadow: 0 8px 24px rgba(139, 76, 159, 0.3);
}

.card:hover img::after {
  opacity: 1;
}

.card h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  transition: var(--transition);
  position: relative;
  display: inline-block;
}

.card:hover h3 {
  transform: translateX(5px);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 2px solid var(--color-bg-alt);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: var(--transition);
  background-color: var(--color-bg);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(139, 76, 159, 0.15), 0 4px 12px rgba(139, 76, 159, 0.2);
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(135deg, var(--color-bg) 0%, rgba(248, 249, 250, 1) 100%);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  font-weight: 400;
  font-size: 0.8125rem;
}

.map-container {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--space-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  border: 3px solid transparent;
  background: linear-gradient(var(--color-bg), var(--color-bg)) padding-box,
              linear-gradient(135deg, var(--color-primary), var(--color-secondary), var(--color-accent)) border-box;
  transition: var(--transition);
}

.map-container:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-color);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer {
  background: linear-gradient(135deg, var(--color-dark) 0%, #1a252f 50%, var(--color-dark) 100%);
  background-size: 200% 200%;
  animation: footer-gradient 10s ease infinite;
  color: var(--color-bg);
  padding: var(--space-lg) 0;
  text-align: center;
  font-size: 0.75rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent), var(--color-secondary), var(--color-primary));
  background-size: 200% 100%;
  animation: footer-line 3s linear infinite;
  box-shadow: 0 2px 10px rgba(139, 76, 159, 0.5);
}

.footer::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -100%;
  width: 200%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.2), transparent);
  animation: footer-sweep 8s linear infinite;
}

@keyframes footer-gradient {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes footer-line {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}

@keyframes footer-sweep {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.footer a {
  color: var(--color-accent);
}

.footer a:hover {
  color: var(--color-secondary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.product-card {
  background-color: var(--color-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
  position: relative;
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--color-bg) 0%, rgba(248, 249, 250, 0.8) 100%);
}

.product-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(139, 76, 159, 0.1), transparent 30%);
  animation: product-rotate 8s linear infinite;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
}

.product-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 76, 159, 0.08) 0%, rgba(255, 107, 157, 0.08) 50%, rgba(78, 205, 196, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: 1;
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover::after {
  opacity: 1;
}

.product-card:hover {
  transform: translateY(-12px) scale(1.05) rotate(1deg);
  box-shadow: 0 15px 45px rgba(139, 76, 159, 0.35), 0 0 0 2px rgba(255, 107, 157, 0.2);
  border-color: var(--color-secondary);
  background: linear-gradient(135deg, var(--color-bg) 0%, rgba(255, 255, 255, 1) 100%);
}

.product-card > * {
  position: relative;
  z-index: 2;
}

@keyframes product-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-info {
  padding: var(--space-lg);
}

.product-info h3 {
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

.price {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: var(--space-sm);
  display: inline-block;
  position: relative;
}

.price::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.product-card:hover .price::after {
  transform: scaleX(1);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: linear-gradient(135deg, var(--color-bg) 0%, rgba(248, 249, 250, 0.95) 100%);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 3px solid transparent;
  background-clip: padding-box;
  animation: modal-appear 0.3s ease;
}

.modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

@keyframes modal-appear {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text);
}

.error-page {
  text-align: center;
  padding: var(--space-xxl) 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-page h1 {
  font-size: 4rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
  animation: error-pulse 2s ease infinite;
}

@keyframes error-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.thank-you {
  text-align: center;
  padding: var(--space-xxl) 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.thank-you h1 {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
  animation: thank-you-bounce 1s ease;
}

@keyframes thank-you-bounce {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  60% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.contact-hero {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 50%, var(--color-primary) 100%);
  background-size: 200% 200%;
  animation: contact-gradient 8s ease infinite;
  padding: var(--space-xxl) 0;
  text-align: center;
  color: var(--color-bg);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  margin-bottom: var(--space-xxl);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(255, 107, 157, 0.2);
}


@keyframes contact-gradient {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.contact-hero h1 {
  color: var(--color-bg);
  margin-bottom: var(--space-md);
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.contact-item {
  text-align: center;
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--color-bg) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.contact-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  box-shadow: 0 2px 10px rgba(139, 76, 159, 0.4);
}

.contact-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 76, 159, 0.1), transparent);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.contact-item:hover::before {
  transform: scaleX(1);
}

.contact-item:hover::after {
  width: 300px;
  height: 300px;
}

.contact-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 40px rgba(139, 76, 159, 0.3), 0 0 0 1px rgba(139, 76, 159, 0.2);
  border-color: var(--color-primary);
  background: linear-gradient(135deg, var(--color-bg) 0%, rgba(248, 249, 250, 1) 100%);
}

.contact-item i {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  transition: var(--transition-slow);
  display: inline-block;
  position: relative;
  text-shadow: 0 2px 8px rgba(139, 76, 159, 0.3);
}

.contact-item i::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 76, 159, 0.2), transparent);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.contact-item:hover i {
  transform: scale(1.3) rotate(15deg);
  color: var(--color-secondary);
  text-shadow: 0 4px 15px rgba(255, 107, 157, 0.5);
}

.contact-item:hover i::before {
  width: 80px;
  height: 80px;
}

.contact-item h3 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.contact-item p {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin: 0;
}

@media (max-width: 992px) {
  .header {
    z-index: 9999;
  }
  
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 10001;
    margin-left: auto;
  }
  
  .menu-toggle.active {
    color: var(--color-bg);
  }
  
  .menu-toggle.active i {
    transform: rotate(180deg);
  }
  
  .nav {
    position: fixed !important;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%) !important;
    flex-direction: column;
    padding: var(--space-xxl) var(--space-lg);
    padding-top: calc(var(--space-xxl) + 60px);
    transition: right 0.3s ease;
    z-index: 10000 !important;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    margin: 0;
    display: none;
  }
  
  .nav.active {
    right: 0 !important;
    display: block;
  }
  
  body.nav-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  .nav a {
    padding: var(--space-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-xs);
  }
  
  .nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-home-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-title-line {
    display: block;
    margin-bottom: var(--space-xs);
  }
  
  .hero-badge {
    font-size: 0.75rem;
    padding: var(--space-xs) var(--space-lg);
    letter-spacing: 2px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    max-width: 300px;
  }
  
  .hero-features {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .hero-feature {
    width: 100%;
    justify-content: center;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-title::after {
    width: 80px;
  }
  
  .grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .card:hover {
    transform: translateY(-4px) scale(1.01);
  }
  
  .product-card:hover {
    transform: translateY(-4px) scale(1.01);
  }
}


@media (max-width: 576px) {
  .logo{
    font-size: 1rem;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  .section {
    padding: var(--space-xl) 0;
  }
  
  .hero {
    padding: var(--space-xl) 0;
  }
  
  .hero-home {
    min-height: 80vh;
    padding: var(--space-xl) 0;
  }
  
  .hero-home-content h1 {
    font-size: 2rem;
  }
  
  .hero-title-line {
    font-size: 2rem;
    margin-bottom: var(--space-xs);
  }
  
  .hero-badge {
    font-size: 0.6875rem;
    padding: var(--space-xs) var(--space-md);
    letter-spacing: 1.5px;
    margin-bottom: var(--space-lg);
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .shape {
    filter: blur(40px);
  }
  
  .shape-1,
  .shape-2,
  .shape-3,
  .shape-4 {
    width: 150px;
    height: 150px;
  }
}

