/* ===================================
   VitalScale - Creative Artistic Design
   CSS Reset & Base Styles
   =================================== */

* {
  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, sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background: linear-gradient(135deg, #F0F4F8 0%, #ffffff 50%, #E8F5F3 100%);
  overflow-x: hidden;
}

/* ===================================
   Typography - Creative & Artistic
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #2D5BFF 0%, #00C9A7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

h2 {
  font-size: 36px;
  color: #2D5BFF;
  position: relative;
  padding-bottom: 15px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00C9A7 0%, #2D5BFF 100%);
  border-radius: 2px;
}

h3 {
  font-size: 24px;
  color: #1a1a1a;
}

h4 {
  font-size: 20px;
  color: #2D5BFF;
}

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

a {
  color: #2D5BFF;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #00C9A7;
  transform: translateX(3px);
}

/* ===================================
   Container & Layout
   =================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* ===================================
   Header - Creative Navigation
   =================================== */

header {
  background: linear-gradient(135deg, rgba(45, 91, 255, 0.95) 0%, rgba(0, 201, 167, 0.95) 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(45, 91, 255, 0.3);
  backdrop-filter: blur(10px);
}

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

.logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.1) rotate(5deg);
}

.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 15px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
  z-index: -1;
}

.main-nav a:hover::before {
  left: 0;
}

.main-nav a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* ===================================
   Mobile Menu - Artistic Slide
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: linear-gradient(135deg, #2D5BFF 0%, #00C9A7 100%);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(45, 91, 255, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 25px rgba(45, 91, 255, 0.6);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #2D5BFF 0%, #00C9A7 100%);
  z-index: 1050;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 30px 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: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-left-color: white;
  transform: translateX(10px);
}

/* ===================================
   Hero Section - Creative & Vibrant
   =================================== */

.hero {
  background: linear-gradient(135deg, rgba(45, 91, 255, 0.1) 0%, rgba(0, 201, 167, 0.1) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(45, 91, 255, 0.1) 0%, transparent 70%);
  animation: pulse 15s ease-in-out infinite;
}

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

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

.hero p {
  font-size: 20px;
  color: #333;
  max-width: 700px;
  margin: 0 auto 32px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

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

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.trust-indicators {
  font-size: 14px;
  color: #666;
  font-weight: 600;
  animation: fadeInUp 0.8s ease 0.6s both;
}

/* ===================================
   Buttons - Artistic & Interactive
   =================================== */

.btn, .btn-primary, .btn-secondary {
  display: inline-block;
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #2D5BFF 0%, #00C9A7 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(45, 91, 255, 0.4);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #00C9A7 0%, #2D5BFF 100%);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 0;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(45, 91, 255, 0.6);
}

.btn-secondary {
  background: white;
  color: #2D5BFF;
  border: 2px solid #2D5BFF;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  background: #2D5BFF;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(45, 91, 255, 0.4);
}

.btn {
  background: linear-gradient(135deg, #00C9A7 0%, #2D5BFF 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 201, 167, 0.4);
}

.btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 201, 167, 0.6);
}

/* ===================================
   Value Proposition Section
   =================================== */

.value-proposition {
  padding: 60px 20px;
  background: white;
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 50px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.benefit {
  flex: 1 1 250px;
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #F0F4F8 0%, #E8F5F3 100%);
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.benefit:hover {
  transform: translateY(-10px) rotate(2deg);
  border-color: #00C9A7;
  box-shadow: 0 10px 30px rgba(0, 201, 167, 0.3);
}

.benefit img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 10px rgba(45, 91, 255, 0.3));
}

.benefit h3 {
  font-size: 18px;
  color: #2D5BFF;
}

/* ===================================
   Services/Products Grid
   =================================== */

.services, .products {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.services h2, .products h2 {
  text-align: center;
  margin-bottom: 50px;
}

.services-grid, .products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-card, .product-card {
  flex: 1 1 300px;
  background: white;
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
  margin-bottom: 20px;
}

.service-card::before, .product-card::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(45, 91, 255, 0.1) 0%, rgba(0, 201, 167, 0.1) 100%);
  transition: top 0.3s ease;
  z-index: 0;
}

.service-card:hover::before, .product-card:hover::before {
  top: 0;
}

.service-card:hover, .product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 50px rgba(45, 91, 255, 0.3);
  border-color: #00C9A7;
}

.service-card > *, .product-card > * {
  position: relative;
  z-index: 1;
}

.service-card img, .product-card img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 10px rgba(0, 201, 167, 0.3));
}

.service-card h3, .product-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #2D5BFF;
}

.service-card p, .product-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #00C9A7;
  margin: 20px 0;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 20px;
  margin-right: 10px;
}

.rating {
  color: #FFB800;
  font-size: 16px;
  margin: 15px 0;
}

.service-card.featured, .product-card.featured {
  border: 3px solid #00C9A7;
  background: linear-gradient(135deg, rgba(0, 201, 167, 0.05) 0%, rgba(45, 91, 255, 0.05) 100%);
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

/* ===================================
   Testimonials - Creative Design
   =================================== */

.testimonials {
  padding: 60px 20px;
  background: linear-gradient(135deg, #F0F4F8 0%, #E8F5F3 100%);
  margin-bottom: 60px;
  border-radius: 30px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.testimonial-card {
  flex: 1 1 400px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #00C9A7;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: #00C9A7;
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 201, 167, 0.3);
}

.testimonial-card p {
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 15px;
  line-height: 1.7;
}

.testimonial-card .author {
  font-weight: 700;
  color: #2D5BFF;
  font-size: 14px;
  margin-top: 15px;
}

.overall-rating {
  text-align: center;
  font-size: 20px;
  color: #FFB800;
  margin: 20px 0;
}

.trust-badges {
  text-align: center;
  font-size: 14px;
  color: #666;
  font-weight: 600;
}

/* ===================================
   CTA Final Section
   =================================== */

.cta-final, .cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, #2D5BFF 0%, #00C9A7 100%);
  text-align: center;
  color: white;
  margin-bottom: 60px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.cta-final::before, .cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 10s ease-in-out infinite;
}

.cta-final .container, .cta .container {
  position: relative;
  z-index: 1;
}

.cta-final h2, .cta h2 {
  color: white;
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-final h2::after, .cta h2::after {
  background: white;
  left: 50%;
  transform: translateX(-50%);
}

.cta-final p, .cta p {
  color: white;
  font-size: 18px;
  margin-bottom: 15px;
}

.urgency {
  font-size: 20px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  padding: 15px 30px;
  border-radius: 25px;
  display: inline-block;
  margin-bottom: 15px;
}

.guarantee, .note {
  font-size: 14px;
  margin-top: 20px;
  opacity: 0.9;
}

/* ===================================
   Page Hero - Breadcrumbs
   =================================== */

.page-hero {
  background: linear-gradient(135deg, rgba(45, 91, 255, 0.1) 0%, rgba(0, 201, 167, 0.1) 100%);
  padding: 60px 20px 40px;
  text-align: center;
  margin-bottom: 40px;
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 20px;
  color: #666;
}

.breadcrumbs a {
  color: #2D5BFF;
}

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

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.trust-badge {
  display: inline-block;
  background: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #2D5BFF;
  margin-top: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ===================================
   Story & Mission Sections
   =================================== */

.story, .mission {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-wrapper p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-top: 40px;
}

.milestone {
  flex: 1 1 200px;
  text-align: center;
  padding: 25px;
  background: linear-gradient(135deg, #F0F4F8 0%, #E8F5F3 100%);
  border-radius: 15px;
  border-top: 4px solid #00C9A7;
  transition: all 0.3s ease;
}

.milestone:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 201, 167, 0.3);
}

.milestone h3 {
  font-size: 32px;
  color: #2D5BFF;
  margin-bottom: 10px;
}

.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.mission-card {
  flex: 1 1 400px;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #2D5BFF;
  transition: all 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-5px);
  border-left-width: 10px;
  box-shadow: 0 12px 40px rgba(45, 91, 255, 0.3);
}

.values ul {
  list-style: none;
  margin-top: 30px;
}

.values li {
  padding: 20px;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #F0F4F8 0%, #E8F5F3 100%);
  border-radius: 15px;
  border-left: 4px solid #00C9A7;
  transition: all 0.3s ease;
}

.values li:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(0, 201, 167, 0.2);
}

.values strong {
  color: #2D5BFF;
  font-size: 18px;
}

/* ===================================
   Achievements Section
   =================================== */

.achievements {
  padding: 60px 20px;
  background: linear-gradient(135deg, #F0F4F8 0%, #E8F5F3 100%);
  margin-bottom: 60px;
  border-radius: 30px;
}

.achievements-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.achievement {
  flex: 1 1 200px;
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.achievement:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 40px rgba(45, 91, 255, 0.3);
}

.achievement h3 {
  font-size: 48px;
  background: linear-gradient(135deg, #2D5BFF 0%, #00C9A7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.achievement p {
  font-size: 16px;
  color: #555;
}

/* ===================================
   Certifications Section
   =================================== */

.certifications {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.cert-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}

.cert-item {
  flex: 1 1 220px;
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.cert-item:hover {
  border-color: #00C9A7;
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 201, 167, 0.3);
}

.cert-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 10px rgba(0, 201, 167, 0.3));
}

.partners {
  text-align: center;
  font-size: 16px;
  color: #666;
  font-weight: 600;
}

/* ===================================
   Consultation Sections
   =================================== */

.consultation-types, .consultation-areas {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.types-grid, .areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.type-card, .area {
  flex: 1 1 250px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.type-card:hover, .area:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(45, 91, 255, 0.3);
}

.type-card h3, .area h3 {
  color: #2D5BFF;
  margin-bottom: 15px;
}

.duration {
  font-weight: 700;
  color: #00C9A7;
  font-size: 18px;
  margin-top: 15px;
}

.area img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 10px rgba(45, 91, 255, 0.3));
}

.consultation-process {
  padding: 60px 20px;
  background: linear-gradient(135deg, #F0F4F8 0%, #E8F5F3 100%);
  margin-bottom: 60px;
  border-radius: 30px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 30px;
}

.step {
  flex: 1 1 220px;
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 201, 167, 0.3);
}

.step-number, .number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: linear-gradient(135deg, #2D5BFF 0%, #00C9A7 100%);
  color: white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(45, 91, 255, 0.4);
}

.response-time {
  text-align: center;
  font-size: 14px;
  color: #666;
  font-style: italic;
}

.experts {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.experts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}

.expert-card {
  flex: 1 1 300px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-top: 5px solid #00C9A7;
  transition: all 0.3s ease;
  text-align: center;
}

.expert-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 201, 167, 0.3);
}

.expert-card h3 {
  color: #2D5BFF;
  margin-bottom: 15px;
}

.success-stories {
  padding: 60px 20px;
  background: linear-gradient(135deg, #F0F4F8 0%, #E8F5F3 100%);
  margin-bottom: 60px;
  border-radius: 30px;
}

.story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.story-card {
  flex: 1 1 400px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #00C9A7;
  transition: all 0.3s ease;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 201, 167, 0.3);
}

.story-card h3 {
  color: #2D5BFF;
  margin-bottom: 15px;
}

.story-card .author {
  font-weight: 700;
  color: #00C9A7;
  font-size: 14px;
  margin-top: 15px;
}

/* ===================================
   Blog Sections
   =================================== */

.blog-categories {
  padding: 40px 20px;
  background: white;
  margin-bottom: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.category {
  padding: 12px 24px;
  background: #F0F4F8;
  border-radius: 25px;
  font-weight: 600;
  color: #2D5BFF;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.category:hover, .category.active {
  background: linear-gradient(135deg, #2D5BFF 0%, #00C9A7 100%);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(45, 91, 255, 0.4);
}

.featured-posts {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.featured-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.post-card {
  flex: 1 1 300px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.post-card:hover {
  transform: translateY(-10px);
  border-color: #00C9A7;
  box-shadow: 0 12px 40px rgba(0, 201, 167, 0.3);
}

.post-card h3 {
  color: #2D5BFF;
  margin-bottom: 15px;
  font-size: 20px;
}

.post-card .category {
  display: inline-block;
  font-size: 12px;
  padding: 6px 12px;
  margin-bottom: 10px;
}

.post-card .meta {
  font-size: 14px;
  color: #999;
  margin-top: 15px;
}

.post-card.featured {
  background: linear-gradient(135deg, rgba(45, 91, 255, 0.05) 0%, rgba(0, 201, 167, 0.05) 100%);
  border: 2px solid #00C9A7;
}

.blog-posts {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.newsletter {
  padding: 60px 20px;
  background: linear-gradient(135deg, #2D5BFF 0%, #00C9A7 100%);
  text-align: center;
  color: white;
  margin-bottom: 60px;
  border-radius: 30px;
}

.newsletter h2 {
  color: white;
}

.newsletter h2::after {
  background: white;
  left: 50%;
  transform: translateX(-50%);
}

.newsletter p {
  color: white;
  margin-bottom: 15px;
}

.benefits {
  font-size: 16px;
  font-weight: 600;
  margin: 20px 0;
}

.privacy {
  font-size: 14px;
  opacity: 0.9;
}

/* ===================================
   Contact Sections
   =================================== */

.contact-methods {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.method-card {
  flex: 1 1 250px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 5px solid #2D5BFF;
}

.method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(45, 91, 255, 0.3);
  border-top-color: #00C9A7;
}

.method-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 10px rgba(45, 91, 255, 0.3));
}

.method-card h3 {
  color: #2D5BFF;
  margin-bottom: 15px;
}

.contact-info {
  padding: 60px 20px;
  background: linear-gradient(135deg, #F0F4F8 0%, #E8F5F3 100%);
  margin-bottom: 60px;
  border-radius: 30px;
}

.info-wrapper {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.showroom {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.showroom-content, .showroom-info {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.showroom-content h3, .showroom-info h3 {
  color: #2D5BFF;
  margin-bottom: 20px;
}

.showroom-content .features ul {
  list-style: none;
  margin: 20px 0;
}

.showroom-content .features li {
  padding: 10px 0;
  border-bottom: 1px solid #F0F4F8;
}

.showroom-content .features li::before {
  content: '✓';
  color: #00C9A7;
  font-weight: 700;
  margin-right: 10px;
}

.support {
  padding: 60px 20px;
  background: linear-gradient(135deg, #F0F4F8 0%, #E8F5F3 100%);
  margin-bottom: 60px;
  border-radius: 30px;
}

.support-info {
  max-width: 700px;
  margin: 0 auto;
}

.faq-quick {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #00C9A7;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 25px rgba(0, 201, 167, 0.3);
}

.faq-item h3 {
  color: #2D5BFF;
  font-size: 18px;
  margin-bottom: 10px;
}

.faq-item p {
  color: #555;
}

.business-info {
  padding: 60px 20px;
  background: #F0F4F8;
  margin-bottom: 60px;
  border-radius: 20px;
}

.business-details {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

/* ===================================
   Product Benefits & Guarantee
   =================================== */

.product-benefits, .guarantee {
  padding: 60px 20px;
  background: linear-gradient(135deg, #F0F4F8 0%, #E8F5F3 100%);
  margin-bottom: 60px;
  border-radius: 30px;
}

.guarantee-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.guarantee-item {
  flex: 1 1 220px;
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.guarantee-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 201, 167, 0.3);
}

.guarantee-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 10px rgba(0, 201, 167, 0.3));
}

/* ===================================
   Legal Content
   =================================== */

.legal-content {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.legal-content .content-wrapper {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.legal-content h2 {
  font-size: 24px;
  color: #2D5BFF;
  margin-top: 30px;
  margin-bottom: 15px;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.legal-content table th,
.legal-content table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #F0F4F8;
}

.legal-content table th {
  background: #F0F4F8;
  font-weight: 700;
  color: #2D5BFF;
}

.legal-links, .legal-contact {
  background: #F0F4F8;
  padding: 30px;
  border-radius: 15px;
  margin-top: 30px;
}

.legal-links h3, .legal-contact h3 {
  color: #2D5BFF;
  margin-bottom: 15px;
}

.legal-links a {
  display: block;
  padding: 10px 0;
  color: #2D5BFF;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  transform: translateX(10px);
}

/* ===================================
   Thank You Page
   =================================== */

.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 201, 167, 0.1) 0%, rgba(45, 91, 255, 0.1) 100%);
  margin-bottom: 60px;
}

.success-icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  background: linear-gradient(135deg, #00C9A7 0%, #2D5BFF 100%);
  color: white;
  font-size: 60px;
  border-radius: 50%;
  margin: 0 auto 30px;
  box-shadow: 0 10px 40px rgba(0, 201, 167, 0.4);
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.confirmation {
  font-size: 18px;
  color: #00C9A7;
  font-weight: 700;
  background: white;
  padding: 15px 30px;
  border-radius: 25px;
  display: inline-block;
  margin-top: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.next-steps, .while-you-wait {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.action-card {
  flex: 1 1 280px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.action-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(45, 91, 255, 0.3);
}

.urgent-contact {
  padding: 60px 20px;
  background: linear-gradient(135deg, #F0F4F8 0%, #E8F5F3 100%);
  text-align: center;
  margin-bottom: 60px;
  border-radius: 30px;
}

.social-proof {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 30px;
}

.stat {
  flex: 1 1 200px;
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 201, 167, 0.3);
}

.stat h3 {
  font-size: 48px;
  background: linear-gradient(135deg, #2D5BFF 0%, #00C9A7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navigation {
  padding: 40px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.nav-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================================
   Footer - Creative Design
   =================================== */

footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2D5BFF 100%);
  color: white;
  padding: 60px 20px 30px;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 220px;
}

.footer-section img {
  height: 50px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
  color: #00C9A7;
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #00C9A7;
  transform: translateX(5px);
}

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===================================
   Cookie Consent Banner
   =================================== */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2D5BFF 0%, #00C9A7 100%);
  color: white;
  padding: 20px;
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

.cookie-consent .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-consent p {
  flex: 1 1 300px;
  margin: 0;
  color: white;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: white;
  color: #2D5BFF;
}

.cookie-accept:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

.cookie-reject {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cookie-reject:hover {
  background: white;
  color: #2D5BFF;
}

.cookie-settings {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cookie-settings:hover {
  background: rgba(255, 255, 255, 0.2);
}

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

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

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

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

.cookie-modal h3 {
  color: #2D5BFF;
  margin-bottom: 20px;
}

.cookie-category {
  padding: 20px;
  background: #F0F4F8;
  border-radius: 15px;
  margin-bottom: 15px;
}

.cookie-category h4 {
  color: #2D5BFF;
  margin-bottom: 10px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background: #ccc;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: #00C9A7;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: left 0.3s ease;
}

.toggle-switch.active::after {
  left: 27px;
}

.cookie-modal-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* ===================================
   Responsive Design - Mobile First
   =================================== */

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn, .btn-primary, .btn-secondary {
    width: 100%;
  }
  
  .benefits-grid,
  .services-grid,
  .products-grid,
  .testimonial-grid,
  .types-grid,
  .areas-grid,
  .experts-grid,
  .story-grid,
  .featured-grid,
  .posts-grid,
  .methods-grid,
  .cert-grid,
  .achievements-grid,
  .guarantee-grid,
  .timeline,
  .mission-grid {
    flex-direction: column;
  }
  
  .benefit,
  .service-card,
  .product-card,
  .testimonial-card,
  .type-card,
  .area,
  .expert-card,
  .story-card,
  .post-card,
  .method-card,
  .cert-item,
  .achievement,
  .guarantee-item,
  .milestone,
  .mission-card {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .cookie-consent .container {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  .process-steps {
    flex-direction: column;
  }
  
  .step {
    flex: 1 1 100%;
  }
  
  .stats {
    flex-direction: column;
  }
  
  .stat {
    flex: 1 1 100%;
  }
  
  .nav-buttons {
    flex-direction: column;
  }
  
  .nav-buttons a {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 40px;
  }
  
  h1 {
    font-size: 42px;
  }
  
  .benefit,
  .service-card,
  .product-card {
    flex: 1 1 calc(50% - 15px);
  }
}

/* ===================================
   Accessibility & Print Styles
   =================================== */

:focus {
  outline: 3px solid #00C9A7;
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-consent,
  .cta-buttons {
    display: none;
  }
  
  body {
    background: white;
  }
  
  a {
    text-decoration: underline;
  }
}

/* ===================================
   Animation Utilities
   =================================== */

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

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

.slide-in-left {
  animation: slideInLeft 0.6s ease;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in-right {
  animation: slideInRight 0.6s ease;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ===================================
   Loading States
   =================================== */

.loading {
  opacity: 0.6;
  pointer-events: none;
}

.spinner {
  border: 3px solid #F0F4F8;
  border-top: 3px solid #2D5BFF;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

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

/* End of CSS */