/* ===================================
   VISUAHYLOI - PLAYFUL DYNAMIC STYLES
   Ergonomie a styl pro váš digitální pracovní prostor
   =================================== */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2d3436;
  background: linear-gradient(135deg, #fff5f5 0%, #e8f8ff 50%, #fff9e6 100%);
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,107,107,0.1) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ff6b6b;
  text-shadow: 2px 2px 0px rgba(255,107,107,0.2);
  position: relative;
}

h1 {
  font-size: 48px;
  color: #ff6b6b;
  animation: bounce-in 0.8s ease-out;
}

h2 {
  font-size: 32px;
  color: #4ecdc4;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  color: #ffe66d;
  text-shadow: 2px 2px 0px rgba(255,230,109,0.3);
}

h4 {
  font-size: 18px;
  color: #ff6b6b;
}

p {
  margin-bottom: 16px;
  color: #2d3436;
  font-size: 16px;
}

@keyframes bounce-in {
  0% { transform: scale(0.3) rotate(-5deg); opacity: 0; }
  50% { transform: scale(1.05) rotate(2deg); }
  70% { transform: scale(0.9) rotate(-1deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* HEADER & NAVIGATION */
header {
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
  padding: 16px 0;
  box-shadow: 0 4px 20px rgba(255,107,107,0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slide-down 0.5s ease-out;
}

@keyframes slide-down {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.1) rotate(5deg);
  animation: wiggle 0.5s ease;
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(5deg); }
  75% { transform: rotate(-5deg); }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-menu li a {
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 14px;
  border-radius: 25px;
  background: rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  display: block;
  position: relative;
  overflow: hidden;
}

.nav-menu li a::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.4s ease, height 0.4s ease;
}

.nav-menu li a:hover::before {
  width: 300px;
  height: 300px;
}

.nav-menu li a:hover {
  background: rgba(255,255,255,0.4);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  color: #fff;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255,107,107,0.4);
  transition: all 0.3s ease;
  animation: pulse 2s ease-in-out infinite;
}

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

.mobile-menu-toggle:hover {
  transform: scale(1.15) rotate(90deg);
  box-shadow: 0 6px 20px rgba(255,107,107,0.6);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #ff6b6b 0%, #4ecdc4 50%, #ffe66d 100%);
  padding: 80px 24px 24px;
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 20px rgba(0,0,0,0.3);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.3);
  color: #fff;
  border: none;
  padding: 10px 15px;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255,255,255,0.5);
  transform: rotate(90deg) scale(1.2);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav a {
  color: #fff;
  text-decoration: none;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 18px;
  border-radius: 15px;
  background: rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mobile-nav a::after {
  content: '→';
  position: absolute;
  right: 20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(255,255,255,0.4);
  transform: translateX(10px);
  padding-right: 50px;
}

.mobile-nav a:hover::after {
  opacity: 1;
  right: 20px;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
}

/* HERO SECTION */
.hero {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255,107,107,0.1) 0%, rgba(78,205,196,0.1) 100%);
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

.hero::before {
  content: '★';
  position: absolute;
  top: 20px;
  left: 10%;
  font-size: 60px;
  color: rgba(255,230,109,0.3);
  animation: spin 10s linear infinite;
}

.hero::after {
  content: '♥';
  position: absolute;
  bottom: 20px;
  right: 10%;
  font-size: 50px;
  color: rgba(255,107,107,0.3);
  animation: spin 8s linear infinite reverse;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 24px;
  animation: bounce-in 0.8s ease-out;
}

.hero-subheadline {
  font-size: 20px;
  color: #2d3436;
  margin-bottom: 32px;
  font-weight: 600;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, #ff6b6b, #ff8787);
  color: #fff;
  box-shadow: 0 5px 15px rgba(255,107,107,0.4);
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(255,107,107,0.6);
}

.btn-secondary {
  background: linear-gradient(135deg, #4ecdc4, #45b7af);
  color: #fff;
  box-shadow: 0 5px 15px rgba(78,205,196,0.4);
}

.btn-secondary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(78,205,196,0.6);
}

/* TRUST INDICATORS */
.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-indicators span {
  color: #2d3436;
  font-weight: 600;
  font-size: 14px;
  background: rgba(255,255,255,0.8);
  padding: 12px 20px;
  border-radius: 25px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.trust-indicators span:hover {
  transform: translateY(-3px) rotate(2deg);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  background: rgba(255,230,109,0.5);
}

/* SECTIONS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.value-proposition,
.services,
.benefits,
.testimonials {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.value-proposition {
  background: linear-gradient(135deg, rgba(78,205,196,0.1) 0%, rgba(255,230,109,0.1) 100%);
  border-radius: 30px;
  position: relative;
}

.services {
  background: linear-gradient(135deg, rgba(255,230,109,0.1) 0%, rgba(255,107,107,0.1) 100%);
  border-radius: 30px;
}

.benefits {
  background: linear-gradient(135deg, rgba(255,107,107,0.1) 0%, rgba(78,205,196,0.1) 100%);
  border-radius: 30px;
}

h2 {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #ffe66d);
  margin: 16px auto 0;
  border-radius: 2px;
}

.section-subheadline {
  text-align: center;
  font-size: 18px;
  color: #636e72;
  margin-bottom: 40px;
  font-weight: 600;
}

/* GRID LAYOUTS - FLEXBOX ONLY */
.value-grid,
.service-grid,
.benefit-grid,
.category-grid,
.guide-grid,
.recommendation-grid,
.method-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.value-card,
.service-card,
.benefit-card,
.category-card,
.guide-card,
.recommendation-card,
.method-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #fff;
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.value-card::before,
.service-card::before,
.benefit-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,107,107,0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.5s ease;
}

.value-card:hover::before,
.service-card:hover::before,
.benefit-card:hover::before {
  left: 100%;
}

.value-card:hover,
.service-card:hover,
.benefit-card:hover,
.category-card:hover,
.guide-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 40px rgba(255,107,107,0.3);
}

.service-card h3 {
  margin-bottom: 16px;
  color: #ff6b6b;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #4ecdc4;
  margin: 16px 0;
}

.price-range {
  font-size: 18px;
  font-weight: 700;
  color: #ffe66d;
  margin: 12px 0;
}

.product-count {
  font-size: 14px;
  color: #636e72;
  font-weight: 600;
  margin: 8px 0;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, rgba(255,230,109,0.2) 0%, rgba(78,205,196,0.2) 100%);
  padding: 60px 20px;
  border-radius: 30px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 100px;
  color: rgba(255,107,107,0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 20px;
  color: #2d3436;
  position: relative;
  z-index: 1;
}

.author {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #ffe66d;
  color: #2d3436;
}

.author strong {
  color: #ff6b6b;
  font-size: 16px;
}

/* CTA BANNER */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 50%, #ffe66d 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-banner h2,
.cta-section h2 {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  margin-bottom: 16px;
}

.cta-banner p,
.cta-section p {
  color: #fff;
  font-size: 18px;
  margin-bottom: 32px;
  font-weight: 600;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.guarantee,
.consultation-note,
.contact-info {
  color: #fff;
  font-size: 14px;
  margin-top: 24px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* BREADCRUMBS */
.breadcrumbs {
  margin-bottom: 24px;
  font-size: 14px;
}

.breadcrumbs a {
  color: #4ecdc4;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.breadcrumbs a:hover {
  color: #ff6b6b;
  text-decoration: underline;
}

.breadcrumbs span {
  color: #636e72;
  font-weight: 600;
}

/* CONTENT SECTIONS */
.intro-content,
.legal-content {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.benefits-list ul {
  list-style: none;
  margin-top: 24px;
}

.benefits-list li {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 600;
  color: #2d3436;
}

/* MISSION & VISION */
.mission-vision {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.mission-card,
.vision-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: linear-gradient(135deg, rgba(255,107,107,0.1), rgba(78,205,196,0.1));
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.values {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(255,230,109,0.1) 0%, rgba(255,107,107,0.1) 100%);
  border-radius: 30px;
  margin-bottom: 40px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

/* STORY */
.story {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

blockquote {
  border-left: 5px solid #ffe66d;
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  background: rgba(255,230,109,0.1);
  padding: 24px;
  border-radius: 10px;
}

blockquote p {
  font-size: 18px;
  color: #2d3436;
  font-weight: 600;
}

cite {
  display: block;
  margin-top: 16px;
  color: #ff6b6b;
  font-style: normal;
  font-weight: 700;
}

/* BLOG */
.featured-article {
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  padding: 60px 40px;
  border-radius: 30px;
  color: #fff;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.featured-badge {
  display: inline-block;
  background: #ffe66d;
  color: #2d3436;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.featured-article h2 {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.featured-article p {
  color: #fff;
  font-size: 18px;
  margin-bottom: 24px;
}

.article-grid {
  padding: 40px 20px;
}

.articles {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.article-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.article-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 15px 40px rgba(78,205,196,0.3);
}

.meta {
  font-size: 14px;
  color: #636e72;
  margin-top: 16px;
  font-weight: 600;
}

/* NEWSLETTER */
.newsletter-signup {
  background: linear-gradient(135deg, #4ecdc4, #ffe66d);
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  margin: 60px 0;
}

.newsletter-signup h2 {
  color: #fff;
}

.newsletter-signup p {
  color: #fff;
  font-size: 18px;
}

.benefits {
  margin-top: 24px;
}

/* CONTACT */
.contact-methods {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.showroom-info {
  background: linear-gradient(135deg, rgba(78,205,196,0.1), rgba(255,230,109,0.1));
  padding: 60px 40px;
  border-radius: 30px;
  margin-bottom: 40px;
}

.address-block {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  margin-top: 24px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* FAQ */
.faq-contact {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(255,107,107,0.3);
}

/* ERGONOMIC GUIDE */
.ergonomic-setup-guide {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.common-problems {
  background: linear-gradient(135deg, rgba(255,230,109,0.1), rgba(78,205,196,0.1));
  padding: 60px 20px;
  border-radius: 30px;
  margin-bottom: 40px;
}

.problem-list {
  max-width: 900px;
  margin: 0 auto;
}

.problem-item {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.product-recommendations {
  padding: 60px 20px;
  margin-bottom: 40px;
}

/* THANK YOU PAGE */
.success-icon {
  font-size: 80px;
  color: #4ecdc4;
  margin-bottom: 24px;
  animation: bounce-in 0.8s ease-out;
}

.confirmation-content {
  text-align: center;
  padding: 60px 20px;
}

.confirmation-message {
  font-size: 20px;
  color: #2d3436;
  margin-bottom: 40px;
  font-weight: 600;
}

.next-steps {
  padding: 60px 20px;
}

.action-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.action-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.action-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255,107,107,0.3);
}

/* TRUST BAR */
.trust-signals {
  padding: 40px 20px;
  margin-bottom: 40px;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.trust-item {
  background: linear-gradient(135deg, rgba(78,205,196,0.2), rgba(255,230,109,0.2));
  padding: 16px 24px;
  border-radius: 25px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.trust-item span {
  color: #2d3436;
  font-weight: 700;
  font-size: 14px;
}

/* BUYING GUIDE */
.buying-guide {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(255,107,107,0.1), rgba(78,205,196,0.1));
  border-radius: 30px;
  margin-bottom: 40px;
}

/* LEGAL PAGES */
.last-updated,
.effective-date {
  font-size: 14px;
  color: #636e72;
  font-style: italic;
  margin-top: 8px;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
  color: #fff;
  padding: 60px 20px 24px;
  margin-top: 60px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #ffe66d, #ff6b6b);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1 1 200px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-column h4 {
  color: #ffe66d;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-column p,
.footer-column li {
  color: #dfe6e9;
  font-size: 14px;
  line-height: 1.8;
}

.footer-column ul {
  list-style: none;
}

.footer-column a {
  color: #dfe6e9;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-column a:hover {
  color: #4ecdc4;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
  color: #b2bec3;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2d3436, #636e72);
  padding: 24px;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-content p {
  color: #fff;
  flex: 1 1 300px;
  margin: 0;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  padding: 12px 24px;
  font-size: 14px;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-category {
  padding: 20px;
  background: rgba(78,205,196,0.1);
  border-radius: 15px;
  margin-bottom: 16px;
}

.cookie-category h4 {
  color: #ff6b6b;
  margin-bottom: 8px;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .hero { padding: 40px 20px; }
  
  .value-card,
  .service-card,
  .benefit-card,
  .category-card,
  .guide-card,
  .recommendation-card,
  .method-card,
  .action-card {
    flex: 1 1 100%;
  }
  
  .testimonial-card,
  .mission-card,
  .vision-card,
  .article-card {
    flex: 1 1 100%;
  }
  
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .trust-indicators {
    flex-direction: column;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  
  .mobile-menu {
    width: 100%;
  }
  
  .container {
    padding: 0 16px;
  }
}

/* ANIMATIONS */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* ACCESSIBILITY */
.btn:focus,
a:focus,
button:focus {
  outline: 3px solid #4ecdc4;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent {
    display: none;
  }
  
  body {
    background: #fff;
  }
  
  .hero,
  .cta-banner {
    background: #fff;
    border: 2px solid #000;
  }
}