
/* Block 1 */
.hero-banner {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-image {
    width: 100%;
    height: 100%;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: relative;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 32, 67, 0.85) 0%, rgba(37, 99, 235, 0.7) 100%);
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
    color: white;
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.hero-action {
    margin-top: 2rem;
}

.hero-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border: none;
    color: white;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.hero-btn:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .hero-banner {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
}

/* Block 2 */
.ai-innovation-showcase {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8faff 0%, #f1f5ff 100%);
  overflow: hidden;
}

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

.badge-container {
  margin-bottom: 20px;
}

.innovation-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #718096;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

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

.primary-feature {
  grid-column: span 2;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.feature-icon {
  margin-bottom: 25px;
}

.icon-image {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.primary-feature .icon-image {
  filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: inherit;
}

.feature-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: inherit;
  opacity: 0.9;
}

.feature-stats {
  display: flex;
  gap: 30px;
  margin-top: 25px;
}

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

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #ffd700;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  font-size: 0.95rem;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
}

.quantum-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.quantum-pulse {
  width: 12px;
  height: 12px;
  background: #667eea;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
  }
}

.quantum-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #667eea;
}

.network-visualization {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  position: relative;
}

.network-node {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e2e8f0;
  transition: all 0.3s ease;
}

.network-node.active {
  background: #667eea;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.3);
}

.network-connection {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, #667eea 0%, #e2e8f0 100%);
  width: calc(100% - 24px);
  left: 12px;
  z-index: -1;
}

.innovation-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cta-content {
  text-align: left;
  flex: 1;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-description {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
}

.cta-actions {
  display: flex;
  gap: 15px;
}

.cta-btn {
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-btn.primary {
  background: white;
  color: #667eea;
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-btn.secondary:hover {
  background: white;
  color: #667eea;
}

@media (max-width: 1200px) {
  .primary-feature {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 25px;
  }
  
  .innovation-cta {
    flex-direction: column;
    text-align: center;
    padding: 40px 25px;
  }
  
  .cta-content {
    text-align: center;
  }
  
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }
  
  .feature-stats {
    justify-content: center;
  }
}

/* Block 3 */
.sustainability-tech-hub {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f9ff 50%, #e8f5e8 100%);
    position: relative;
    overflow: hidden;
}

.sustainability-tech-hub::before {
    content: '';
    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="2" fill="%2366bb6a" opacity="0.1"/><circle cx="80" cy="40" r="3" fill="%2342a5f5" opacity="0.1"/><circle cx="60" cy="80" r="2" fill="%2366bb6a" opacity="0.1"/></svg>');
    background-size: 200px 200px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    animation: floatPattern 20s infinite linear;
}

@keyframes floatPattern {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-200px) translateY(-200px); }
}

.section-intro {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.eco-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #66bb6a, #4caf50);
    padding: 12px 28px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    margin-bottom: 32px;
    box-shadow: 0 8px 32px rgba(76, 175, 80, 0.3);
}

.badge-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
}

.main-heading {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1b5e20, #2e7d32, #388e3c);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    line-height: 1.2;
}

.intro-text {
    font-size: 1.3rem;
    color: #37474f;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.impact-metrics {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
}

.metric-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(102, 187, 106, 0.1);
}

.metric-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
}

.metric-card.featured {
    background: linear-gradient(135deg, #e8f5e8, #ffffff);
    border: 2px solid #66bb6a;
}

.metric-visual {
    position: relative;
    margin-bottom: 24px;
    border-radius: 16px;
    overflow: hidden;
}

.metric-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
}

.metric-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(76, 175, 80, 0.95);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    text-align: center;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.metric-unit {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
}

.metric-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 16px;
}

.metric-description {
    color: #546e7a;
    line-height: 1.6;
    margin-bottom: 24px;
}

.energy-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    position: relative;
}

.indicator-icon {
    width: 80px;
    height: 80px;
}

.energy-pulse {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 3px solid #66bb6a;
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0.6;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 0.2; }
    100% { transform: scale(0.8); opacity: 0.6; }
}

.energy-sources {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.source-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.source-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.source-icon.solar { background: #ff9800; }
.source-icon.wind { background: #2196f3; }
.source-icon.hydro { background: #00bcd4; }

.source-label {
    font-weight: 600;
    color: #37474f;
}

.efficiency-visual {
    margin-bottom: 24px;
}

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

.cooling-stats {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.stat-badge {
    background: linear-gradient(135deg, #42a5f5, #1976d2);
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
}

.stat-text {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 600;
}

.green-tech-showcase {
    background: white;
    border-radius: 32px;
    padding: 64px 48px;
    margin-bottom: 80px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.showcase-header {
    text-align: center;
    margin-bottom: 48px;
}

.showcase-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 16px;
}

.showcase-subtitle {
    font-size: 1.2rem;
    color: #546e7a;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.tech-item {
    text-align: center;
    padding: 32px 24px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.tech-item:hover {
    border-color: #66bb6a;
    transform: translateY(-4px);
}

.tech-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #e8f5e8, #c8e6c8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-icon {
    width: 40px;
    height: 40px;
}

.tech-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 16px;
}

.tech-desc {
    color: #546e7a;
    line-height: 1.6;
}

.partnership-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
    gap: 48px;
    position: relative;
    z-index: 2;
}

.partnership-content {
    flex: 1;
}

.partnership-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 20px;
}

.partnership-text {
    font-size: 1.2rem;
    color: #546e7a;
    line-height: 1.6;
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    flex: 1;
}

.partner-item {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.partner-logo {
    width: 100%;
    height: 60px;
    object-fit: contain;
}

.action-center {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    color: white;
    border-radius: 32px;
    padding: 64px 48px;
    text-align: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.action-center::before {
    content: '';
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,20 Q30,10 40,20 T60,20 T80,20" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></svg>');
    background-size: 150px 150px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.action-content {
    position: relative;
    z-index: 2;
    margin-bottom: 48px;
}

.action-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.action-description {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.calculator-widget {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.calculator-input {
    margin-bottom: 24px;
}

.input-label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
}

.usage-input {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 1.1rem;
    width: 200px;
    text-align: center;
    font-weight: 600;
    color: #1b5e20;
}

.calculator-result {
    display: flex;
    justify-content: center;
    gap: 32px;
}

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

.result-value {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.result-item.positive .result-value {
    color: #4caf50;
}

.result-label {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 600;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.action-btn {
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.action-btn.primary {
    background: white;
    color: #1b5e20;
}

.action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.3);
}

.action-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.action-btn.secondary:hover {
    background: white;
    color: #1b5e20;
}

@media (max-width: 1200px) {
    .impact-metrics {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    
    .metric-card.featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .sustainability-tech-hub {
        padding: 60px 0;
    }
    
    .main-heading {
        font-size: 2.5rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .impact-metrics {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .metric-card.featured {
        grid-column: span 1;
    }
    
    .green-tech-showcase {
        padding: 40px 24px;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .partnership-section {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
    
    .partner-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .action-center {
        padding: 40px 24px;
    }
    
    .action-title {
        font-size: 2rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .calculator-result {
        flex-direction: column;
        gap: 16px;
    }
}

/* Block 4 */
.premium-order-form {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.premium-order-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="%23e2e8f0" opacity="0.5"/><circle cx="80" cy="80" r="1" fill="%23cbd5e1" opacity="0.3"/><circle cx="40" cy="60" r="1" fill="%23e2e8f0" opacity="0.4"/></svg>');
  animation: float 20s linear infinite;
}

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

.form-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}

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

.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
}

.badge-icon {
  width: 20px;
  height: 20px;
}

.form-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 20px;
  line-height: 1.1;
  background: linear-gradient(135deg, #1e293b, #475569);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.form-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.benefits-preview {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.benefits-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 32px;
  text-align: center;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.benefit-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 4px;
}

.benefit-desc {
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.social-proof {
  border-top: 1px solid #e2e8f0;
  padding-top: 32px;
}

.proof-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

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

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

.stat-label {
  color: #64748b;
  font-size: 0.9rem;
}

.client-logos {
  display: flex;
  justify-content: center;
  gap: 32px;
  opacity: 0.6;
}

.client-logo {
  height: 32px;
  filter: grayscale(1);
  transition: all 0.3s ease;
}

.client-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}

.order-form-container {
  background: white;
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
  border: 1px solid #e2e8f0;
  position: sticky;
  top: 40px;
}

.form-header-mini {
  text-align: center;
  margin-bottom: 40px;
}

.form-title-mini {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.form-desc-mini {
  color: #64748b;
  margin: 0;
  font-size: 0.95rem;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.field-group {
  display: flex;
  flex-direction: column;
}

.field-label {
  color: #374151;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 16px;
  width: 20px;
  height: 20px;
  opacity: 0.4;
  z-index: 2;
}

.form-input {
  width: 100%;
  padding: 16px 16px 16px 48px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fafbfc;
}

.form-input:focus {
  outline: none;
  border-color: #3b82f6;
  background: white;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.select-wrapper {
  position: relative;
}

.form-select {
  width: 100%;
  padding: 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  background: #fafbfc;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"><polyline points="6,9 12,15 18,9"/></svg>');
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 20px;
}

.form-select:focus {
  outline: none;
  border-color: #3b82f6;
  background-color: white;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.urgency-indicator {
  margin-bottom: 24px;
}

.urgency-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fef2f2;
  color: #dc2626;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #fecaca;
  font-size: 0.9rem;
  font-weight: 500;
}

.urgency-dot {
  width: 8px;
  height: 8px;
  background: #dc2626;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.submit-btn {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 18px 32px;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.btn-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.security-note {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  color: #64748b;
  font-size: 0.85rem;
}

.security-icon {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.response-timeline {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #e2e8f0;
}

.timeline-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 24px;
  text-align: center;
}

.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-step {
  display: flex;
  align-items: center;
  gap: 16px;
}

.step-number {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.step-content {
  display: flex;
  flex-direction: column;
}

.step-time {
  font-weight: 600;
  color: #1e293b;
  font-size: 0.9rem;
}

.step-desc {
  color: #64748b;
  font-size: 0.85rem;
}

@media (max-width: 1200px) {
  .form-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .order-form-container {
    position: static;
  }
}

@media (max-width: 768px) {
  .premium-order-form {
    padding: 60px 0;
  }
  
  .form-title {
    font-size: 2.5rem;
  }
  
  .form-subtitle {
    font-size: 1.1rem;
  }
  
  .benefits-preview,
  .order-form-container {
    padding: 32px 24px;
  }
  
  .proof-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .client-logos {
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .client-logo {
    height: 24px;
  }
}

@media (max-width: 480px) {
  .form-title {
    font-size: 2rem;
  }
  
  .benefits-preview,
  .order-form-container {
    padding: 24px 16px;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .form-input,
  .form-select {
    padding: 14px;
  }
  
  .input-icon {
    display: none;
  }
  
  .form-input {
    padding-left: 16px;
  }
}
