
/* Block 1 */
.hero-banner {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(26,26,26,0.8) 50%, rgba(0,0,0,0.6) 100%);
    z-index: 2;
    width: 100%;
    height: 100%;
}

.hero-overlay,
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 60px 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.hero-button i {
    transition: transform 0.3s ease;
}

.hero-button:hover i {
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-button {
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-button {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
}

/* Block 2 */
.smart-lighting-ecosystem {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  overflow: hidden;
}

.ecosystem-badge {
  display: inline-block;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.ecosystem-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 24px;
  line-height: 1.2;
}

.ecosystem-description {
  font-size: 1.3rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 40px;
}

.ecosystem-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  color: white;
  font-size: 20px;
}

.feature-text h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 8px;
}

.feature-text p {
  color: #718096;
  font-size: 1rem;
  margin: 0;
  line-height: 1.5;
}

.ecosystem-visual {
  transform: translateZ(0);
}

.ecosystem-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.floating-stats {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  justify-content: center;
}

.stat-card {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  min-width: 100px;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  animation: float 3s ease-in-out infinite;
}

.stat-card:nth-child(2) {
  animation-delay: -1s;
}

.stat-card:nth-child(3) {
  animation-delay: -2s;
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  margin-top: 4px;
  opacity: 0.9;
}

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

.innovation-showcase {
  margin-top: 80px;
}

.innovation-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  height: 100%;
}

.innovation-card:hover {
  transform: translateY(-15px) rotate(1deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.innovation-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.innovation-content {
  padding: 24px;
}

.innovation-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 12px;
}

.innovation-content p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 20px;
}

.innovation-tech {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tech-tag {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

@media (max-width: 992px) {
  .ecosystem-title {
    font-size: 2.5rem;
  }
  
  .floating-stats {
    flex-wrap: wrap;
  }
  
  .stat-card {
    flex: 1;
    min-width: 80px;
  }
}

@media (max-width: 768px) {
  .smart-lighting-ecosystem {
    padding: 60px 0;
  }
  
  .ecosystem-title {
    font-size: 2rem;
  }
  
  .ecosystem-description {
    font-size: 1.1rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-item:hover {
    transform: translateY(-5px);
  }
}

/* Block 3 */
.neural-wellness-hub {
  background: linear-gradient(165deg, #f8fffe 0%, #e8f5f3 30%, #f0f4ff 70%, #fff 100%);
  padding: 120px 0;
  overflow: hidden;
  position: relative;
}

.neural-wellness-hub::before {
  content: '';
  position: absolute;
  top: 0;
  right: -20%;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(103, 126, 234, 0.05) 0%, transparent 70%);
  z-index: 1;
}

.section-header {
  margin-bottom: 60px;
}

.wellness-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.wellness-title {
  font-size: 3.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2c3e50 0%, #667eea 50%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.2;
}

.wellness-subtitle {
  font-size: 1.3rem;
  color: #6c757d;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.wellness-grid {
  position: relative;
  z-index: 2;
}

.wellness-main-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.card-header {
  position: relative;
  overflow: hidden;
}

.wellness-hero-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 40px 30px 30px;
}

.card-overlay h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.card-overlay p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
  line-height: 1.5;
}

.card-metrics {
  padding: 30px;
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.metric-row {
  display: flex;
  justify-content: space-around;
}

.metric {
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 5px;
}

.metric-label {
  font-size: 0.9rem;
  color: #6c757d;
  font-weight: 500;
}

.wellness-features-grid {
  height: 100%;
}

.feature-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-visual {
  position: relative;
  overflow: hidden;
}

.feature-image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.feature-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: #667eea;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.feature-content {
  padding: 20px;
}

.feature-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
}

.feature-content p {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 15px;
}

.feature-tech-stack {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tech-chip {
  background: linear-gradient(135deg, #667eea20, #764ba220);
  color: #667eea;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid #667eea30;
}

.wellness-results-section {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid rgba(108, 117, 125, 0.2);
}

.results-visual {
  position: relative;
}

.results-chart {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.results-callout {
  position: absolute;
  top: 20px;
  left: -20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.callout-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.callout-text {
  font-size: 0.9rem;
  opacity: 0.9;
  max-width: 140px;
  line-height: 1.3;
}

.results-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.results-description {
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 40px;
}

.clinical-stats {
  margin-bottom: 40px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 2px;
}

.stat-desc {
  font-size: 0.95rem;
  color: #6c757d;
  font-weight: 500;
}

.certification-badges {
  display: flex;
  gap: 20px;
  align-items: center;
}

.cert-badge {
  height: 50px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.cert-badge:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .wellness-title {
    font-size: 2.4rem;
  }
  
  .wellness-subtitle {
    font-size: 1.1rem;
  }
  
  .results-callout {
    position: static;
    margin-bottom: 20px;
  }
  
  .certification-badges {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .metric-row {
    flex-direction: column;
    gap: 20px;
  }
}

/* Block 4 */
.quantum-consultation-form {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.quantum-consultation-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100vh) rotate(360deg); }
}

.form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
}

.form-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px;
    background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
    position: relative;
}

.header-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.consultation-hero {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.quantum-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    animation: quantum-float 3s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.particle-2 {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.particle-3 {
    bottom: 30%;
    left: 60%;
    animation-delay: 2s;
}

@keyframes quantum-float {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
    50% { transform: translate(15px, -15px) scale(1.2); opacity: 1; }
}

.consultation-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.form-description {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #475569;
}

.benefit-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.consultation-form-container {
    padding: 60px;
}

.form-fields {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.field-group {
    position: relative;
}

.field-label {
    display: block;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 15px;
}

.input-wrapper {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 16px;
    background: #ffffff;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.input-decoration {
    position: absolute;
    bottom: 0;
    left: 24px;
    right: 24px;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.form-input:focus + .input-decoration {
    transform: scaleX(1);
}

.form-extras {
    background: #f8faff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
}

.ai-analysis-preview {
    text-align: left;
}

.analysis-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.ai-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #667eea;
}

.analysis-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.analysis-info p {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 8px 0;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #059669;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.analysis-features {
    display: grid;
    gap: 8px;
}

.feature-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #475569;
}

.feature-check i {
    color: #10b981;
    font-size: 12px;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 16px;
    padding: 20px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.submit-button:active {
    transform: translateY(0);
}

.button-text {
    position: relative;
    z-index: 2;
}

.button-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 20px;
}

.button-icon {
    font-size: 20px;
    opacity: 0.8;
}

.ripple-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    animation: ripple 2s ease-out infinite;
}

@keyframes ripple {
    0% { width: 0; height: 0; opacity: 1; }
    100% { width: 400px; height: 400px; opacity: 0; }
}

.form-guarantee {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #f0fdf4;
    border-radius: 12px;
    border: 1px solid #bbf7d0;
}

.guarantee-seal {
    width: 48px;
    height: 48px;
}

.guarantee-text strong {
    display: block;
    color: #15803d;
    font-size: 14px;
    margin-bottom: 4px;
}

.guarantee-text p {
    margin: 0;
    font-size: 12px;
    color: #16a34a;
}

.testimonial-carousel {
    background: rgba(0, 0, 0, 0.05);
    padding: 40px 0;
    margin-top: 60px;
}

.carousel-container {
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    animation: scroll-testimonials 20s linear infinite;
    width: fit-content;
}

@keyframes scroll-testimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    width: 350px;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 16px;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 4px 0;
}

.author-info span {
    font-size: 14px;
    color: #6b7280;
}

@media (max-width: 768px) {
    .form-header {
        grid-template-columns: 1fr;
        padding: 40px 30px;
        text-align: center;
    }
    
    .consultation-hero {
        height: 200px;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .consultation-form-container {
        padding: 40px 30px;
    }
    
    .testimonial-card {
        width: 300px;
    }
}
