@import url('https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css');
@import url('https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css');

:root {
  --primary-rose: #D4A5A5;
  --primary-mauve: #9B7E9E;
  --primary-cream: #F5EBE0;
  --accent-gold: #C9A66B;
  --accent-coral: #E8B4A8;
  --accent-lavender: #B8A9C9;
  --neutral-dark: #3D2E3F;
  --neutral-medium: #6D5D6E;
  --neutral-light: #F9F5F2;
  --white: #FFFFFF;
  --shadow-soft: rgba(157, 126, 158, 0.15);
  --shadow-medium: rgba(157, 126, 158, 0.25);
  --shadow-strong: rgba(61, 46, 63, 0.35);
  --gradient-primary: linear-gradient(135deg, var(--primary-rose) 0%, var(--primary-mauve) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-coral) 0%, var(--accent-lavender) 100%);
  --gradient-shimmer: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--neutral-dark);
  background-color: var(--neutral-light);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background-color: var(--primary-mauve);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--primary-cream);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 6px;
  border: 2px solid var(--primary-cream);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-mauve);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px var(--shadow-soft);
  transition: var(--transition-smooth);
}

.header.scrolled {
  box-shadow: 0 6px 30px var(--shadow-medium);
  background: rgba(255, 255, 255, 0.98);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}

.logo:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

.nav-desktop {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-desktop a {
  color: var(--neutral-medium);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition-smooth);
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-desktop a:hover {
  color: var(--primary-mauve);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--neutral-dark);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.nav-mobile-toggle:hover {
  color: var(--primary-mauve);
  transform: scale(1.1);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, var(--white) 0%, var(--primary-cream) 100%);
  box-shadow: -4px 0 30px var(--shadow-medium);
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2000;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--neutral-dark);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.mobile-menu-close:hover {
  color: var(--primary-mauve);
  transform: rotate(90deg);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu nav a {
  color: var(--neutral-dark);
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  transition: var(--transition-smooth);
}

.mobile-menu nav a:hover {
  background: var(--primary-cream);
  color: var(--primary-mauve);
  transform: translateX(8px);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(61, 46, 63, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.btn {
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn::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;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 15px var(--shadow-soft);
}

.btn-primary:hover {
  box-shadow: 0 6px 25px var(--shadow-medium);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-mauve);
  border: 2px solid var(--primary-mauve);
}

.btn-secondary:hover {
  background: var(--primary-mauve);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--gradient-accent);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(232, 180, 168, 0.3);
}

.btn-accent:hover {
  box-shadow: 0 6px 25px rgba(232, 180, 168, 0.5);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

.section {
  padding: 5rem 2rem;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.125rem;
  text-align: center;
  color: var(--neutral-medium);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.card {
  background: var(--white);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 8px 30px var(--shadow-soft);
  transition: var(--transition-smooth);
  border: 1px solid rgba(212, 165, 165, 0.1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow-medium);
}

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.card:hover .card-image {
  transform: scale(1.05);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--neutral-dark);
}

.card-text {
  color: var(--neutral-medium);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--neutral-dark);
  font-size: 0.95rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--primary-cream);
  border-radius: 16px;
  font-size: 1rem;
  background: var(--white);
  color: var(--neutral-dark);
  transition: var(--transition-smooth);
  font-family: inherit;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-mauve);
  box-shadow: 0 0 0 4px rgba(155, 126, 158, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--neutral-medium);
  opacity: 0.7;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox,
.form-radio {
  width: 20px;
  height: 20px;
  accent-color: var(--primary-mauve);
  cursor: pointer;
  margin-right: 0.5rem;
}

.form-error {
  color: #D64545;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}

.form-input.error,
.form-textarea.error,
.form-select.error {
  border-color: #D64545;
}

.form-input.error ~ .form-error,
.form-textarea.error ~ .form-error,
.form-select.error ~ .form-error {
  display: block;
}

.accordion {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px var(--shadow-soft);
}

.accordion-header {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  transition: var(--transition-smooth);
  border-bottom: 1px solid var(--primary-cream);
}

.accordion-header:hover {
  background: var(--primary-cream);
}

.accordion-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--neutral-dark);
}

.accordion-icon {
  font-size: 1.25rem;
  color: var(--primary-mauve);
  transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content.active {
  max-height: 1000px;
}

.accordion-body {
  padding: 1.5rem;
  color: var(--neutral-medium);
  line-height: 1.8;
}

.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 600px;
  width: calc(100% - 2rem);
  background: var(--white);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 12px 40px var(--shadow-strong);
  z-index: 9999;
  border: 1px solid var(--primary-cream);
  animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
  from {
    transform: translateX(-50%) translateY(200px);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

.cookie-banner-content {
  margin-bottom: 1.5rem;
}

.cookie-banner-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--neutral-dark);
}

.cookie-banner-text {
  color: var(--neutral-medium);
  line-height: 1.6;
  font-size: 0.95rem;
}

.cookie-banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--primary-cream);
  border-top: 4px solid var(--primary-mauve);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 2rem auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--gradient-accent);
  color: var(--white);
}

.badge-outline {
  background: transparent;
  border: 2px solid var(--primary-mauve);
  color: var(--primary-mauve);
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-rose), transparent);
  margin: 3rem 0;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px var(--shadow-soft);
  transition: var(--transition-bounce);
}

.card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.testimonial-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px var(--shadow-soft);
  position: relative;
  border: 1px solid rgba(212, 165, 165, 0.1);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 5rem;
  color: var(--primary-cream);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--neutral-medium);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-cream);
}

.testimonial-author-name {
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 0.25rem;
}

.testimonial-author-title {
  font-size: 0.875rem;
  color: var(--neutral-medium);
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(61, 46, 63, 0.8) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  color: var(--white);
  font-weight: 600;
  font-size: 1.125rem;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow-soft);
  transition: var(--transition-smooth);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow-medium);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--neutral-medium);
  font-weight: 500;
  font-size: 1.125rem;
}

.hero-section {
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 165, 165, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(155, 126, 158, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.price-tag {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-tag-small {
  font-size: 1.125rem;
  color: var(--neutral-medium);
  text-decoration: line-through;
  margin-right: 0.5rem;
}

.shimmer-effect {
  position: relative;
  overflow: hidden;
}

.shimmer-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-shimmer);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.floating-animation {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.fade-in {
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pulse-animation {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-mauve);
  font-size: 1.25rem;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.social-link:hover {
  background: var(--gradient-primary);
  color: var(--white);
  transform: translateY(-3px) rotate(5deg);
}

.footer {
  background: linear-gradient(180deg, var(--neutral-dark) 0%, #2A1E2B 100%);
  color: var(--primary-cream);
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--primary-cream);
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--accent-coral);
  transform: translateX(5px);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 235, 224, 0.1);
  text-align: center;
  color: var(--primary-cream);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .nav-mobile-toggle {
    display: block;
  }

  .section-title {
    font-size: 2rem;
  }

  .section {
    padding: 3rem 1.5rem;
  }

  .cookie-banner {
    bottom: 1rem;
    border-radius: 16px;
    padding: 1.5rem;
  }

  .cookie-banner-actions {
    flex-direction: column;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.75rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  .header-container {
    padding: 1rem 1.5rem;
  }

  .logo {
    font-size: 1.5rem;
  }
}