/* CSS Reset and 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, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 50%, #FFF0F5 100%);
  min-height: 100vh;
}

/* Soft Pastel Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #8B7B9B;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  color: #9B7BA7;
}

h2 {
  font-size: 32px;
  color: #A78BB7;
}

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

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

p {
  margin-bottom: 16px;
  color: #6B5B7B;
}

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

a:hover {
  color: #8B7B9B;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Header */
header {
  background: linear-gradient(135deg, #FFE8ED 0%, #FFF0F5 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(155, 123, 167, 0.1);
}

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

.logo img {
  height: 50px;
  width: auto;
}

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

.main-nav a {
  color: #8B7B9B;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background: rgba(155, 123, 167, 0.1);
  color: #6B5B7B;
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #FFB6C8 0%, #FFC9D8 100%);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(155, 123, 167, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(155, 123, 167, 0.4);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #FFF0F5 0%, #FFE8ED 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 30px rgba(155, 123, 167, 0.2);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(155, 123, 167, 0.1);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  color: #8B7B9B;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(155, 123, 167, 0.2);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #8B7B9B;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(155, 123, 167, 0.2);
  transform: translateX(10px);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 25px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(155, 123, 167, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, #B899C7 0%, #A78BB7 100%);
  color: #fff;
  border-color: #B899C7;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #A78BB7 0%, #9B7BA7 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(155, 123, 167, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: #8B7B9B;
  border-color: #B899C7;
}

.btn-secondary:hover {
  background: rgba(184, 153, 199, 0.1);
  border-color: #A78BB7;
  transform: translateY(-3px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #FFE8ED 0%, #FFF0F5 50%, #FFE8F5 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 0 0 50px 50px;
  box-shadow: 0 10px 40px rgba(155, 123, 167, 0.15);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #9B7BA7;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  color: #8B7B9B;
}

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

.trust-badge {
  color: #A78BB7;
  font-weight: 500;
  font-size: 14px;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #FFE8ED 0%, #FFF0F5 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
  border-radius: 0 0 40px 40px;
}

.page-hero h1 {
  margin-bottom: 16px;
}

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

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

/* Benefits Section */
.benefits {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  margin-bottom: 60px;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.benefit-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(155, 123, 167, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(155, 123, 167, 0.2);
}

.benefit-card h3 {
  margin-bottom: 12px;
  color: #9B7BA7;
}

.benefit-card p {
  color: #6B5B7B;
}

/* Services Section */
.services-preview {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.services-preview h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.service-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background: linear-gradient(135deg, #FFF0F5 0%, #FFE8F5 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(155, 123, 167, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(155, 123, 167, 0.2);
}

.service-card h3 {
  color: #9B7BA7;
  margin-bottom: 12px;
}

.service-card p {
  color: #6B5B7B;
  flex-grow: 1;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #A78BB7;
  margin: 16px 0;
}

/* Products Section */
.products {
  padding: 40px 20px;
  margin-bottom: 60px;
}

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

.product-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 300px;
  background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(155, 123, 167, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(155, 123, 167, 0.2);
}

.product-card h2 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #9B7BA7;
}

.product-card .features {
  list-style: none;
  margin: 24px 0;
}

.product-card .features li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: #6B5B7B;
}

.product-card .features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #B899C7;
  font-weight: bold;
}

.product-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #A78BB7;
  margin: 20px 0;
}

/* How It Works */
.how-it-works {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  margin-bottom: 60px;
}

.how-it-works h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.step {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  background: linear-gradient(135deg, #FFE8ED 0%, #FFF0F5 100%);
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(155, 123, 167, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(155, 123, 167, 0.2);
}

.step h3 {
  color: #9B7BA7;
  margin-bottom: 12px;
}

.step p {
  color: #6B5B7B;
}

/* Process Timeline */
.process-timeline {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.process-timeline h2 {
  text-align: center;
  margin-bottom: 48px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-step {
  background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 100%);
  padding: 32px;
  border-radius: 20px;
  border-left: 4px solid #B899C7;
  box-shadow: 0 4px 20px rgba(155, 123, 167, 0.1);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.timeline-step:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 25px rgba(155, 123, 167, 0.2);
}

.timeline-step h3 {
  color: #9B7BA7;
  margin-bottom: 12px;
}

.timeline-step p {
  color: #6B5B7B;
  margin-bottom: 12px;
}

.timeline-step .duration {
  display: inline-block;
  background: rgba(184, 153, 199, 0.2);
  color: #8B7B9B;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

/* Technology Section */
.technology {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  margin-bottom: 60px;
}

.technology h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.tech-item {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  background: linear-gradient(135deg, #FFE8ED 0%, #FFF0F5 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(155, 123, 167, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.tech-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(155, 123, 167, 0.2);
}

.tech-item h3 {
  color: #9B7BA7;
  margin-bottom: 12px;
}

.tech-item p {
  color: #6B5B7B;
}

/* Scenarios Section */
.scenarios {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.scenarios h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.scenario-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(155, 123, 167, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.scenario-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(155, 123, 167, 0.2);
}

.scenario-card h3 {
  color: #9B7BA7;
  margin-bottom: 12px;
}

.scenario-card p {
  color: #6B5B7B;
}

/* Social Proof Section */
.social-proof {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  margin-bottom: 60px;
}

.social-proof h2 {
  text-align: center;
  margin-bottom: 48px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-around;
  margin-bottom: 48px;
}

.stat {
  text-align: center;
  flex: 1 1 200px;
  min-width: 150px;
  padding: 20px;
}

.stat h3 {
  font-size: 48px;
  color: #B899C7;
  margin-bottom: 8px;
}

.stat p {
  color: #8B7B9B;
  font-weight: 500;
}

/* Stats Grid */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 48px;
}

.stat-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 200px;
  background: linear-gradient(135deg, #FFE8ED 0%, #FFF0F5 100%);
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(155, 123, 167, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(155, 123, 167, 0.2);
}

.stat-card h3 {
  font-size: 48px;
  color: #B899C7;
  margin-bottom: 8px;
}

.stat-card p {
  color: #8B7B9B;
  font-weight: 500;
}

/* Testimonials */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 300px;
  background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(155, 123, 167, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(155, 123, 167, 0.2);
}

.testimonial-card p {
  font-style: italic;
  color: #6B5B7B;
  margin-bottom: 16px;
  line-height: 1.8;
}

.testimonial-card .author {
  font-weight: 600;
  color: #8B7B9B;
  font-style: normal;
}

/* Featured Testimonials */
.featured-testimonials {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.testimonial-featured {
  flex: 1 1 calc(50% - 12px);
  min-width: 300px;
  background: linear-gradient(135deg, #FFF0F5 0%, #FFE8F5 100%);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(155, 123, 167, 0.15);
  margin-bottom: 20px;
}

.testimonial-featured h3 {
  color: #9B7BA7;
  margin-bottom: 8px;
}

.testimonial-featured .project {
  color: #A78BB7;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.testimonial-featured .quote {
  font-style: italic;
  color: #6B5B7B;
  line-height: 1.8;
  margin-bottom: 16px;
}

.testimonial-featured .rating {
  color: #FFB6C8;
  font-size: 18px;
}

/* Testimonials Small Grid */
.testimonials-grid-section {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  margin-bottom: 60px;
}

.testimonials-grid-section h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.testimonial-small {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  background: linear-gradient(135deg, #FFE8ED 0%, #FFF0F5 100%);
  padding: 24px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(155, 123, 167, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.testimonial-small:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(155, 123, 167, 0.15);
}

.testimonial-small p {
  font-style: italic;
  color: #6B5B7B;
  margin-bottom: 12px;
}

.testimonial-small .author {
  font-weight: 600;
  color: #8B7B9B;
  font-style: normal;
  font-size: 14px;
}

.testimonial-small .rating {
  color: #FFB6C8;
  margin-top: 8px;
}

/* Case Studies */
.case-studies {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.case-studies h2 {
  text-align: center;
  margin-bottom: 48px;
}

.case-study {
  background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 100%);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(155, 123, 167, 0.1);
}

.case-study h3 {
  color: #9B7BA7;
  margin-bottom: 24px;
  font-size: 28px;
}

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

.case-section {
  flex: 1 1 300px;
}

.case-section h4 {
  color: #A78BB7;
  margin-bottom: 12px;
}

.case-section p {
  color: #6B5B7B;
}

/* Compatibility Section */
.compatibility {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  margin-bottom: 60px;
}

.compatibility h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.compatibility-item {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  background: linear-gradient(135deg, #FFE8ED 0%, #FFF0F5 100%);
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(155, 123, 167, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.compatibility-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(155, 123, 167, 0.2);
}

.compatibility-item h3 {
  color: #9B7BA7;
  margin-bottom: 12px;
}

.compatibility-item p {
  color: #6B5B7B;
}

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

.faq h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.faq-item {
  background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 100%);
  padding: 24px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(155, 123, 167, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(155, 123, 167, 0.15);
}

.faq-item h3 {
  color: #9B7BA7;
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: #6B5B7B;
}

/* Company Story */
.company-story {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  margin-bottom: 60px;
}

.company-story h2 {
  text-align: center;
  margin-bottom: 32px;
}

.company-story p {
  max-width: 800px;
  margin: 0 auto 24px;
  text-align: center;
  color: #6B5B7B;
  font-size: 18px;
  line-height: 1.8;
}

/* Why Us Section */
.why-us {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.why-us h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.reason-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(155, 123, 167, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(155, 123, 167, 0.2);
}

.reason-card h3 {
  color: #9B7BA7;
  margin-bottom: 12px;
}

.reason-card p {
  color: #6B5B7B;
}

/* Coverage Section */
.coverage {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  margin-bottom: 60px;
  text-align: center;
}

.coverage h2 {
  margin-bottom: 24px;
}

.coverage p {
  max-width: 800px;
  margin: 0 auto;
  color: #6B5B7B;
  font-size: 18px;
}

/* Commitment Section */
.commitment {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.commitment h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.commitment-item {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  background: linear-gradient(135deg, #FFE8ED 0%, #FFF0F5 100%);
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(155, 123, 167, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.commitment-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(155, 123, 167, 0.2);
}

.commitment-item h3 {
  color: #9B7BA7;
  margin-bottom: 12px;
}

.commitment-item p {
  color: #6B5B7B;
}

/* Contact Info Section */
.contact-info {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.contact-info h2 {
  text-align: center;
  margin-bottom: 48px;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-method {
  flex: 1 1 400px;
  background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 100%);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(155, 123, 167, 0.1);
  margin-bottom: 20px;
}

.contact-method h3 {
  color: #9B7BA7;
  margin-bottom: 20px;
}

.contact-method p {
  color: #6B5B7B;
  margin-bottom: 12px;
  line-height: 1.8;
}

.contact-method strong {
  color: #8B7B9B;
}

.contact-method .note {
  font-style: italic;
  color: #A78BB7;
  font-size: 14px;
  margin-top: 16px;
}

/* Consultation Section */
.consultation {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  margin-bottom: 60px;
  text-align: center;
}

.consultation h2 {
  margin-bottom: 24px;
}

.consultation .intro {
  font-size: 18px;
  color: #8B7B9B;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.consultation .cta-text {
  font-size: 18px;
  color: #6B5B7B;
  margin-top: 40px;
}

/* Service Area */
.service-area {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.service-area h2 {
  text-align: center;
  margin-bottom: 24px;
}

.service-area .intro {
  text-align: center;
  font-size: 18px;
  color: #8B7B9B;
  margin-bottom: 32px;
}

.coverage-list {
  max-width: 700px;
  margin: 0 auto;
  list-style: none;
}

.coverage-list li {
  background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 100%);
  padding: 20px;
  margin-bottom: 16px;
  border-radius: 15px;
  color: #6B5B7B;
  box-shadow: 0 2px 10px rgba(155, 123, 167, 0.1);
}

.coverage-list strong {
  color: #9B7BA7;
}

/* Support Section */
.support {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  margin-bottom: 60px;
  text-align: center;
}

.support h2 {
  margin-bottom: 24px;
}

.support > p {
  font-size: 18px;
  color: #8B7B9B;
  margin-bottom: 32px;
}

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

.support-info p {
  color: #6B5B7B;
  margin-bottom: 12px;
}

.support-info strong {
  color: #8B7B9B;
}

/* Business Info */
.business-info {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  margin-bottom: 60px;
  text-align: center;
}

.business-info h2 {
  margin-bottom: 24px;
}

.business-info p {
  color: #6B5B7B;
  line-height: 1.8;
}

.business-info strong {
  color: #9B7BA7;
  font-size: 18px;
}

/* Office Info */
.office-info {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  margin-bottom: 60px;
}

.office-info h2 {
  text-align: center;
  margin-bottom: 32px;
}

.office-details {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 100%);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(155, 123, 167, 0.1);
}

.office-details p {
  color: #6B5B7B;
  margin-bottom: 20px;
  line-height: 1.8;
}

.office-details strong {
  color: #9B7BA7;
}

/* Locations */
.locations {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.locations h2 {
  text-align: center;
  margin-bottom: 32px;
}

.locations-list {
  max-width: 700px;
  margin: 0 auto;
  list-style: none;
}

.locations-list li {
  background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 100%);
  padding: 20px;
  margin-bottom: 16px;
  border-radius: 15px;
  color: #6B5B7B;
  box-shadow: 0 2px 10px rgba(155, 123, 167, 0.1);
}

.locations-list strong {
  color: #9B7BA7;
}

/* Satisfaction Section */
.satisfaction {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  margin-bottom: 60px;
}

.satisfaction h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.satisfaction-item {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  background: linear-gradient(135deg, #FFE8ED 0%, #FFF0F5 100%);
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(155, 123, 167, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.satisfaction-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(155, 123, 167, 0.2);
}

.satisfaction-item h3 {
  font-size: 48px;
  color: #B899C7;
  margin-bottom: 8px;
}

.satisfaction-item p {
  color: #8B7B9B;
  font-weight: 500;
}

/* Energy Savings Section */
.energy-savings {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  margin-bottom: 60px;
}

.energy-savings h2 {
  text-align: center;
  margin-bottom: 24px;
}

.energy-savings .intro {
  text-align: center;
  font-size: 18px;
  color: #8B7B9B;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.savings-item {
  flex: 1 1 250px;
  text-align: center;
  background: linear-gradient(135deg, #FFE8ED 0%, #FFF0F5 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(155, 123, 167, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.savings-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(155, 123, 167, 0.2);
}

.savings-item h3 {
  color: #9B7BA7;
  font-size: 32px;
  margin-bottom: 12px;
}

.savings-item p {
  color: #6B5B7B;
}

/* CTA Section */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FFE8ED 0%, #FFF0F5 100%);
  border-radius: 30px;
  text-align: center;
  margin-bottom: 60px;
  box-shadow: 0 10px 40px rgba(155, 123, 167, 0.15);
}

.cta-section h2 {
  margin-bottom: 24px;
  color: #9B7BA7;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 32px;
  color: #6B5B7B;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .benefits-list {
  list-style: none;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-section .benefits-list li {
  background: rgba(255, 255, 255, 0.7);
  padding: 12px 24px;
  border-radius: 20px;
  color: #8B7B9B;
  font-weight: 600;
}

.cta-section .contact-info {
  margin-top: 24px;
  color: #8B7B9B;
  font-weight: 500;
}

/* Thank You Page */
.thank-you {
  padding: 80px 20px;
  margin-bottom: 60px;
}

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.thank-you h1 {
  margin-bottom: 24px;
  color: #9B7BA7;
}

.thank-you .subtitle {
  font-size: 20px;
  color: #8B7B9B;
  margin-bottom: 48px;
}

.thank-you h2 {
  margin-bottom: 24px;
  margin-top: 48px;
}

.thank-you h3 {
  margin-bottom: 16px;
  margin-top: 32px;
}

.next-steps,
.expectations,
.confirmation,
.explore,
.urgent {
  background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 100%);
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(155, 123, 167, 0.1);
}

.next-steps ol {
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
  padding-left: 20px;
  color: #6B5B7B;
}

.next-steps li {
  margin-bottom: 12px;
}

.expectations ul {
  list-style: none;
  max-width: 500px;
  margin: 0 auto;
}

.expectations li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: #6B5B7B;
  text-align: left;
}

.expectations li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #B899C7;
  font-weight: bold;
}

.explore ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: 20px auto 0;
}

.explore li a {
  display: inline-block;
  color: #A78BB7;
  font-weight: 600;
}

.explore li a:hover {
  color: #8B7B9B;
}

.thank-you .cta {
  margin-top: 48px;
}

/* Legal Pages */
.legal-page {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.legal-page h1 {
  text-align: center;
  margin-bottom: 16px;
}

.legal-page .subtitle {
  text-align: center;
  font-size: 18px;
  color: #8B7B9B;
  margin-bottom: 16px;
}

.legal-page .last-update {
  text-align: center;
  color: #A78BB7;
  font-size: 14px;
  margin-bottom: 48px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(155, 123, 167, 0.1);
}

.legal-content section {
  margin-bottom: 40px;
}

.legal-content h2 {
  color: #9B7BA7;
  margin-bottom: 20px;
  margin-top: 32px;
}

.legal-content h3 {
  color: #A78BB7;
  margin-bottom: 12px;
  margin-top: 24px;
}

.legal-content p {
  color: #6B5B7B;
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
  color: #6B5B7B;
}

.legal-content li {
  margin-bottom: 8px;
  line-height: 1.8;
}

.legal-content a {
  color: #A78BB7;
  font-weight: 600;
}

.legal-content a:hover {
  color: #8B7B9B;
  text-decoration: underline;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #FFE8ED 0%, #FFF0F5 100%);
  padding: 60px 20px 30px;
  margin-top: 80px;
  border-radius: 50px 50px 0 0;
  box-shadow: 0 -5px 30px rgba(155, 123, 167, 0.1);
}

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

.footer-section {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-section h3 {
  color: #9B7BA7;
  margin-bottom: 16px;
}

.footer-section h4 {
  color: #A78BB7;
  margin-bottom: 16px;
}

.footer-section p {
  color: #6B5B7B;
  margin-bottom: 8px;
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #8B7B9B;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #6B5B7B;
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(155, 123, 167, 0.2);
  padding-top: 30px;
  text-align: center;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
}

.footer-legal a {
  color: #8B7B9B;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: #6B5B7B;
}

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

/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #FFF0F5 0%, #FFE8ED 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(155, 123, 167, 0.2);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-consent-text {
  flex: 1 1 400px;
  color: #6B5B7B;
}

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

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

.btn-accept {
  background: linear-gradient(135deg, #B899C7 0%, #A78BB7 100%);
  color: #fff;
  border: none;
}

.btn-accept:hover {
  background: linear-gradient(135deg, #A78BB7 0%, #9B7BA7 100%);
}

.btn-reject {
  background: rgba(255, 255, 255, 0.8);
  color: #8B7B9B;
  border: 2px solid #B899C7;
}

.btn-reject:hover {
  background: rgba(184, 153, 199, 0.1);
}

.btn-settings {
  background: rgba(255, 255, 255, 0.8);
  color: #8B7B9B;
  border: 2px solid #B899C7;
}

.btn-settings:hover {
  background: rgba(184, 153, 199, 0.1);
}

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

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

.cookie-settings-content {
  background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 100%);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 50px rgba(155, 123, 167, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

.cookie-settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cookie-settings-header h2 {
  color: #9B7BA7;
  margin: 0;
}

.cookie-settings-close {
  background: rgba(155, 123, 167, 0.1);
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 20px;
  color: #8B7B9B;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-settings-close:hover {
  background: rgba(155, 123, 167, 0.2);
  transform: rotate(90deg);
}

.cookie-category {
  background: rgba(255, 255, 255, 0.7);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 16px;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cookie-category h3 {
  color: #A78BB7;
  margin: 0;
  font-size: 18px;
}

.cookie-category p {
  color: #6B5B7B;
  font-size: 14px;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(184, 153, 199, 0.3);
  border-radius: 26px;
  transition: 0.3s;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: #B899C7;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-settings-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .main-nav {
    display: none;
  }

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

  .mobile-menu {
    display: block;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .benefit-card,
  .service-card,
  .product-card,
  .step,
  .testimonial-card,
  .testimonial-featured,
  .testimonial-small,
  .scenario-card,
  .tech-item,
  .reason-card,
  .stat-card,
  .compatibility-item,
  .commitment-item,
  .satisfaction-item,
  .savings-item {
    flex: 1 1 100%;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-section {
    flex: 1 1 100%;
  }

  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-consent-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-consent-buttons .btn {
    width: 100%;
  }

  .cookie-settings-content {
    padding: 30px 20px;
  }

  .legal-content {
    padding: 32px 20px;
  }

  .case-content {
    flex-direction: column;
  }

  .contact-methods {
    flex-direction: column;
  }

  .contact-method {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .hero h1 {
    font-size: 28px;
  }

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

  .stat h3,
  .stat-card h3,
  .satisfaction-item h3 {
    font-size: 36px;
  }

  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }
}

/* Smooth Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.benefit-card,
.service-card,
.product-card,
.step,
.testimonial-card,
.scenario-card {
  animation: fadeIn 0.6s ease forwards;
}

/* Focus Styles for Accessibility */
a:focus,
button:focus,
input:focus {
  outline: 2px solid #B899C7;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent-banner,
  .cookie-settings-modal {
    display: none;
  }

  body {
    background: white;
  }

  .container {
    max-width: 100%;
  }
}