
/* Block 1 */
.hero-banner-2025 {
  background-image: url('futuristic-tech-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  position: relative;
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(13, 27, 62, 0.8) 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-banner-2025 .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  padding: 4rem 0;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #64b5f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
}

.hero-cta-btn {
  background: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
}

.hero-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(33, 150, 243, 0.4);
  background: linear-gradient(135deg, #1976d2 0%, #1cb5e0 100%);
}

.btn-icon {
  transition: transform 0.3s ease;
}

.hero-cta-btn:hover .btn-icon {
  transform: translateX(5px);
}

.hero-features {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 0;
  position: relative;
  z-index: 2;
}

.feature-item {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 3px solid rgba(100, 181, 246, 0.5);
  transition: all 0.3s ease;
}

.feature-item:hover .feature-img {
  border-color: #64b5f6;
  box-shadow: 0 0 25px rgba(100, 181, 246, 0.4);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #64b5f6;
}

.feature-text {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .hero-banner-2025 {
    min-height: 80vh;
  }
  
  .hero-content {
    padding: 2rem 0;
  }
  
  .hero-features {
    padding: 2rem 0;
  }
  
  .feature-item {
    margin-bottom: 2rem;
    padding: 1.5rem 1rem;
  }
  
  .hero-cta-btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-description {
    font-size: 1.125rem;
  }
  
  .feature-title {
    font-size: 1.25rem;
  }
  
  .feature-text {
    font-size: 0.875rem;
  }
}

/* Block 2 */
.tech-innovations-2025 {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8faff 0%, #e8f4fd 100%);
  position: relative;
  overflow: hidden;
}

.tech-innovations-2025::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

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

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1e40af, #3b82f6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.innovations-grid {
  margin-bottom: 80px;
}

.innovation-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.innovation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.featured-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  border: 2px solid #3b82f6;
}

.card-image-wrapper {
  position: relative;
  overflow: hidden;
}

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

.compact-card .innovation-image {
  height: 180px;
}

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

.innovation-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #ef4444, #f97316);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.innovation-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(59, 130, 246, 0.9);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.card-content {
  padding: 24px;
}

.compact-card .card-content {
  padding: 20px;
}

.innovation-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.compact-card .innovation-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.innovation-description {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.innovation-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #3b82f6;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8rem;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 600;
}

.tech-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.feature-tag {
  background: #e0f2fe;
  color: #0369a1;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.progress-indicator {
  margin-top: 16px;
}

.progress-label {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.progress-bar {
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  border-radius: 4px;
  transition: width 0.8s ease;
}

.capacity-display {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 16px;
}

.capacity-number {
  font-size: 2rem;
  font-weight: 800;
  color: #7c3aed;
}

.capacity-unit {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 600;
}

.speed-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.speed-icon {
  color: #f59e0b;
  font-size: 1.2rem;
}

.speed-text {
  font-weight: 700;
  color: #f59e0b;
}

.innovation-btn {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.innovation-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.innovation-timeline {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.timeline-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 40px;
}

.timeline-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.timeline-item {
  text-align: center;
  position: relative;
}

.timeline-marker {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 20px auto;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.timeline-content h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.timeline-content p {
  color: #64748b;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .tech-innovations-2025 {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .innovations-grid {
    margin-bottom: 60px;
  }
  
  .innovation-stats {
    flex-direction: column;
    gap: 16px;
  }
  
  .timeline-container {
    grid-template-columns: 1fr;
  }
  
  .innovation-timeline {
    padding: 30px 20px;
  }
}

/* Block 3 */
.smart-ecosystem-2025 {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 50%, #2d1b3d 100%);
  color: white;
  overflow: hidden;
}

.ecosystem-header {
  margin-bottom: 80px;
}

.ecosystem-title {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00d4ff, #7b2ff7, #f093fb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  line-height: 1.2;
}

.ecosystem-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 32px;
}

.ecosystem-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-icon {
  color: #00d4ff;
  font-size: 1.2rem;
}

.benefit-text {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.ecosystem-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-hub-image {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
  border: 2px solid rgba(0, 212, 255, 0.2);
}

.connection-indicators {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.indicator-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #00d4ff;
  box-shadow: 0 0 20px #00d4ff;
  animation: pulse 2s infinite;
}

.indicator-dot:nth-child(1) { top: 20%; right: 10%; animation-delay: 0s; }
.indicator-dot:nth-child(2) { bottom: 30%; left: 15%; animation-delay: 0.5s; }
.indicator-dot:nth-child(3) { top: 50%; left: -8px; animation-delay: 1s; }
.indicator-dot:nth-child(4) { bottom: 15%; right: 20%; animation-delay: 1.5s; }

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

.smart-devices-grid {
  margin-bottom: 80px;
}

.device-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  height: 100%;
}

.device-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(0, 212, 255, 0.3);
}

.premium-device {
  border: 2px solid #ffd700;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 255, 255, 0.05));
}

.security-device {
  border-color: rgba(255, 69, 58, 0.3);
  background: linear-gradient(135deg, rgba(255, 69, 58, 0.1), rgba(255, 255, 255, 0.05));
}

.entertainment-device {
  border-color: rgba(175, 82, 222, 0.3);
  background: linear-gradient(135deg, rgba(175, 82, 222, 0.1), rgba(255, 255, 255, 0.05));
}

.device-header {
  position: relative;
  margin-bottom: 20px;
}

.device-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.device-status {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.online-status .status-indicator {
  color: #34c759;
}

.device-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #7b2ff7, #f093fb);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.security-level {
  background: rgba(255, 69, 58, 0.9);
  color: white;
  display: flex;
  align-items: center;
  gap: 6px;
}

.device-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
}

.device-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-bottom: 20px;
}

.device-metrics {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.metric-item {
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #00d4ff;
}

.metric-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.temperature-display {
  background: rgba(255, 255, 255, 0.1);
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.temp-current {
  font-size: 2rem;
  font-weight: 700;
  color: #00d4ff;
  text-align: center;
}

.temp-target, .temp-efficiency {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-top: 4px;
}

.security-stats {
  background: rgba(255, 255, 255, 0.1);
  padding: 16px;
  border-radius: 12px;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.stat-row:last-child {
  margin-bottom: 0;
}

.stat-name {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.stat-value {
  color: #34c759;
  font-weight: 600;
}

.audio-visualizer {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 3px;
  align-items: end;
}

.visualizer-bar {
  width: 4px;
  background: #00d4ff;
  border-radius: 2px;
  animation: audioWave 1s infinite ease-in-out;
}

.visualizer-bar:nth-child(1) { height: 20px; animation-delay: 0s; }
.visualizer-bar:nth-child(2) { height: 30px; animation-delay: 0.1s; }
.visualizer-bar:nth-child(3) { height: 15px; animation-delay: 0.2s; }
.visualizer-bar:nth-child(4) { height: 25px; animation-delay: 0.3s; }

@keyframes audioWave {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1); }
}

.audio-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-chip {
  background: rgba(175, 82, 222, 0.2);
  color: #af52de;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(175, 82, 222, 0.3);
}

.control-btn {
  background: linear-gradient(135deg, #00d4ff, #7b2ff7);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.control-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.ecosystem-automation {
  margin-bottom: 60px;
}

.automation-header {
  text-align: center;
  margin-bottom: 50px;
}

.automation-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.automation-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
}

.scenario-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  height: 100%;
  transition: all 0.3s ease;
}

.scenario-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.morning-scenario {
  border-left: 4px solid #ff9500;
}

.evening-scenario {
  border-left: 4px solid #5856d6;
}

.away-scenario {
  border-left: 4px solid #34c759;
}

.scenario-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.scenario-icon i {
  font-size: 1.8rem;
  color: #00d4ff;
}

.scenario-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
}

.scenario-steps {
  margin-bottom: 24px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 8px 0;
}

.step-icon {
  color: #00d4ff;
  width: 20px;
  text-align: center;
}

.step-item span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.scenario-trigger {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.trigger-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.trigger-method {
  color: #00d4ff;
  font-weight: 500;
  font-size: 0.9rem;
}

.ecosystem-stats {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box {
  padding: 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00d4ff, #7b2ff7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 12px 0 8px 0;
  font-weight: 500;
}

.stat-trend {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.positive-trend {
  color: #34c759;
}

.stable-trend {
  color: #00d4ff;
}

@media (max-width: 768px) {
  .ecosystem-title {
    font-size: 2.5rem;
  }
  
  .ecosystem-benefits {
    flex-direction: column;
  }
  
  .device-metrics {
    flex-direction: column;
    gap: 12px;
  }
  
  .scenario-trigger {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}

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

.order-form-2025::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 1000 1000"><defs><radialGradient id="bg" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs><circle cx="150" cy="200" r="100" fill="url(%23bg)"/><circle cx="850" cy="300" r="150" fill="url(%23bg)"/><circle cx="300" cy="800" r="120" fill="url(%23bg)"/></svg>');
  pointer-events: none;
}

.form-wrapper {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-content {
  padding: 60px 40px;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f0fe 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-header {
  margin-bottom: 40px;
}

.header-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 15px 30px rgba(102, 126, 234, 0.3);
}

.header-icon i {
  font-size: 36px;
  color: white;
}

.form-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 16px;
  line-height: 1.2;
}

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

.benefits-list {
  margin-bottom: 40px;
}

.benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 1rem;
  color: #475569;
}

.benefit-check {
  color: #10b981;
  font-size: 18px;
  margin-right: 12px;
  flex-shrink: 0;
}

.trust-indicators {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #64748b;
}

.trust-item img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.form-container {
  padding: 60px 40px;
  background: white;
}

.form-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.step-indicator {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #64748b;
  transition: all 0.3s ease;
}

.step-indicator.active-step {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.step-connector {
  width: 60px;
  height: 2px;
  background: #e2e8f0;
  margin: 0 8px;
}

.field-group {
  margin-bottom: 32px;
}

.field-label {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #374151;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.field-icon {
  margin-right: 8px;
  color: #667eea;
  width: 16px;
  flex-shrink: 0;
}

.form-input,
.form-select {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  font-family: inherit;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  transform: translateY(-2px);
}

.field-validation {
  display: none;
  align-items: center;
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 8px;
}

.validation-icon {
  margin-right: 6px;
}

.field-hint {
  display: flex;
  align-items: center;
  color: #64748b;
  font-size: 0.875rem;
  margin-top: 8px;
}

.hint-icon {
  margin-right: 6px;
  font-size: 12px;
}

.phone-format {
  margin-top: 8px;
  color: #64748b;
  font-size: 0.875rem;
}

.format-example {
  font-style: italic;
}

.time-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.time-option {
  display: flex;
}

.time-option input[type="radio"] {
  display: none;
}

.time-label {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.time-option input[type="radio"]:checked + .time-label {
  border-color: #667eea;
  background: rgba(102, 126, 234, 0.05);
}

.time-text {
  font-weight: 500;
  color: #374151;
}

.form-actions {
  margin-top: 40px;
}

.submit-btn {
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.btn-loader {
  display: none;
  gap: 4px;
}

.loader-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
  animation: loader-bounce 1.4s infinite ease-in-out both;
}

.loader-dot:nth-child(1) { animation-delay: -0.32s; }
.loader-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes loader-bounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

.btn-submit-icon {
  transition: transform 0.3s ease;
}

.submit-btn:hover .btn-submit-icon {
  transform: translateX(4px);
}

.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
}

.privacy-link {
  color: #667eea;
  text-decoration: none;
}

.privacy-link:hover {
  text-decoration: underline;
}

.form-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.security-info,
.response-time {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #64748b;
}

.security-shield,
.response-clock {
  color: #10b981;
}

.testimonials-section {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonials-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 50px;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

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

.client-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.client-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 4px;
}

.client-title {
  font-size: 0.9rem;
  color: #64748b;
}

.rating-stars {
  margin-bottom: 16px;
}

.rating-stars i {
  color: #fbbf24;
  margin-right: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 0;
  font-style: italic;
}

@media (max-width: 991px) {
  .form-content {
    padding: 40px 30px;
  }
  
  .form-container {
    padding: 40px 30px;
  }
  
  .form-title {
    font-size: 2rem;
  }
  
  .trust-indicators {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .order-form-2025 {
    padding: 60px 0;
  }
  
  .form-content,
  .form-container {
    padding: 30px 20px;
  }
  
  .form-title {
    font-size: 1.75rem;
  }
  
  .time-options {
    gap: 8px;
  }
  
  .time-label {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
  
  .step-connector {
    width: 40px;
  }
  
  .trust-indicators {
    gap: 15px;
  }
}
