
/* Block 1 */
.hero-banner {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
    text-align: center;
}

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

.hero-overlay {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(52, 73, 94, 0.75) 100%);
    z-index: 2;
    inset: 0;
}

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

.hero-content {
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-text {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.4);
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 60vh;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-title {
        margin-bottom: 1rem;
    }
    
    .hero-text {
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Block 2 */
.backup-strategies {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.backup-strategies::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(52, 152, 219, 0.08) 0%, transparent 70%);
    transform: rotate(-15deg);
    z-index: 1;
}

.strategies-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.strategies-header {
    text-align: center;
    margin-bottom: 4rem;
}

.strategies-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.strategy-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    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);
    border: 1px solid rgba(52, 152, 219, 0.1);
    position: relative;
    overflow: hidden;
}

.strategy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.strategy-card:hover::before {
    transform: scaleX(1);
}

.strategy-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.strategy-icon {
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 15px;
}

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

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

.strategy-heading {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.strategy-description {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

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

.feature-item {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #475569;
    font-size: 0.95rem;
}

.feature-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.strategies-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.metric-item {
    text-align: center;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.metric-item:hover {
    transform: translateY(-5px);
}

.metric-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .backup-strategies {
        padding: 3rem 1rem;
    }
    
    .strategies-title {
        font-size: 2rem;
    }
    
    .strategies-subtitle {
        font-size: 1rem;
    }
    
    .strategies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .strategy-card {
        padding: 2rem;
    }
    
    .strategies-metrics {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem 1rem;
        gap: 1.5rem;
    }
    
    .metric-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .strategies-metrics {
        grid-template-columns: 1fr;
    }
}

/* Block 3 */
.enterprise-solutions {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 4rem 0;
  min-height: 100vh;
}

.solutions-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.solutions-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.solutions-heading {
  font-size: 3rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.solutions-overview {
  font-size: 1.25rem;
  color: #475569;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.solutions-showcase {
  margin-bottom: 4rem;
}

.showcase-primary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 3rem;
  color: white;
}

.showcase-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.showcase-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.showcase-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.showcase-stats {
  display: flex;
  gap: 2rem;
}

.stat-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: #fbbf24;
}

.stat-description {
  font-size: 0.9rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.solution-panel {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.solution-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.panel-icon {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
}

.panel-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e293b;
}

.panel-text {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.panel-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.benefit-tag {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.solutions-testimonial {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border-radius: 20px;
  padding: 3rem;
  color: white;
}

.testimonial-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #3b82f6;
}

.testimonial-quote {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
  border: none;
  padding: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-role {
  color: #94a3b8;
  font-size: 0.9rem;
}

.testimonial-attribution {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

@media (max-width: 768px) {
  .solutions-heading {
    font-size: 2rem;
  }
  
  .showcase-primary {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .showcase-stats {
    justify-content: center;
  }
  
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

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

.backup-order-form::before {
    content: '';
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -400px;
    right: -400px;
    z-index: 1;
}

.form-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.form-header {
    text-align: center;
    margin-bottom: 4rem;
}

.form-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.form-visual {
    position: relative;
}

.form-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--secondary-color);
}

.feature-icon {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 8px;
}

.feature-text {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.order-form {
    margin-bottom: 3rem;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.form-input {
    width: 100%;
    padding: 1.2rem 1.5rem 1.2rem 4rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    transform: translateY(-2px);
}

.input-icon {
    position: absolute;
    left: 1.2rem;
    top: 3.2rem;
    transform: translateY(-50%);
}

.field-icon {
    width: 24px;
    height: 24px;
    object-fit: cover;
    opacity: 0.6;
}

.form-actions {
    margin: 2.5rem 0;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2980b9 100%);
    color: white;
    border: none;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 8px 30px rgba(52, 152, 219, 0.3);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(52, 152, 219, 0.4);
    background: linear-gradient(135deg, #2980b9 0%, var(--secondary-color) 100%);
}

.button-icon {
    width: 24px;
    height: 24px;
    object-fit: cover;
}

.button-text {
    font-size: 1.1rem;
}

.form-guarantee {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    border-radius: 12px;
    border-left: 4px solid #27ae60;
}

.guarantee-badge {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}

.guarantee-text {
    display: flex;
    flex-direction: column;
}

.guarantee-title {
    font-weight: 700;
    color: #27ae60;
    font-size: 1rem;
}

.guarantee-description {
    font-size: 0.9rem;
    color: #2d5a3d;
}

.form-benefits {
    border-top: 2px solid #f1f5f9;
    padding-top: 2rem;
}

.benefits-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.benefit-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.step-item:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.step-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.step-number {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    background: rgba(52, 152, 219, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    align-self: flex-start;
    margin-bottom: 0.5rem;
}

.step-title {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.step-description {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .form-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .backup-order-form {
        padding: 4rem 1rem;
    }
    
    .form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .form-subtitle {
        font-size: 1.1rem;
    }
    
    .form-input {
        padding: 1rem 1rem 1rem 3.5rem;
    }
    
    .input-icon {
        top: 2.8rem;
        left: 1rem;
    }
    
    .submit-button {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }
    
    .benefit-steps {
        gap: 1rem;
    }
    
    .step-item {
        padding: 0.8rem;
    }
    
    .step-image {
        width: 50px;
        height: 50px;
    }
}
