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

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.8) 0%, rgba(25, 25, 112, 0.9) 50%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-content-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
}

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

.hero-description {
    font-size: 1.25rem;
    color: #f8f9fa;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    opacity: 0.95;
}

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

.hero-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(238, 90, 36, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(238, 90, 36, 0.4);
    color: #ffffff;
    background: linear-gradient(135deg, #ee5a24 0%, #ff6b6b 100%);
}

@media (max-width: 768px) {
    .hero-banner {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

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

/* Block 2 */
.ai-storage-innovations {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 6rem 0;
    color: white;
    overflow: hidden;
}

.innovation-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.innovation-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.innovation-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
}

.feature-text {
    font-size: 1.1rem;
    font-weight: 500;
}

.innovation-visual {
    text-align: center;
}

.innovation-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.metrics-grid {
    margin: 5rem 0;
}

.metric-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.metric-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.metric-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

.technology-showcase {
    margin-top: 5rem;
}

.showcase-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.showcase-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.tech-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.tech-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.tech-image-wrapper {
    height: 250px;
    overflow: hidden;
}

.tech-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.tech-content {
    padding: 2rem;
}

.tech-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffd700;
}

.tech-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.tech-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.spec-badge {
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: #ffd700;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .innovation-title {
        font-size: 2rem;
    }
    
    .innovation-description {
        font-size: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .showcase-title {
        font-size: 2rem;
    }
    
    .metric-number {
        font-size: 2rem;
    }
    
    .tech-image-wrapper {
        height: 200px;
    }
    
    .tech-content {
        padding: 1.5rem;
    }
}

/* Block 3 */
.next-gen-security {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 50%, #0d1b2a 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.next-gen-security::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(75, 0, 130, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 100, 200, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.security-main-title {
    font-size: 3.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff, #ff6b9d, #c471ed);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
}

.security-subtitle {
    font-size: 1.3rem;
    color: #b8c5d1;
    max-width: 600px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.security-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.security-feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

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

.feature-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.feature-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, #00d4ff, #c471ed);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.5rem;
    color: #ffffff;
}

.feature-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.feature-card-text {
    font-size: 1.1rem;
    color: #b8c5d1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.metric-chip {
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

.security-visualization {
    position: relative;
}

.security-main-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.security-stats-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(15, 15, 35, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00d4ff;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #b8c5d1;
    margin-top: 0.5rem;
}

.threat-landscape {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.threat-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
}

.threat-section-description {
    font-size: 1.2rem;
    color: #b8c5d1;
    text-align: center;
    margin-bottom: 3rem;
}

.threat-protection-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
}

.threat-protection-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 157, 0.4);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.1);
}

.threat-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.threat-icon-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.threat-item-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.threat-item-description {
    font-size: 1rem;
    color: #b8c5d1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.protection-level {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.protection-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.protection-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b9d, #00d4ff);
    border-radius: 4px;
    width: 95%;
    animation: fillBar 2s ease-in-out;
}

.protection-percentage {
    font-weight: 700;
    color: #00d4ff;
    font-size: 1rem;
    min-width: 60px;
}

.compliance-certifications {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.compliance-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3rem;
}

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

.cert-item {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.cert-item:hover {
    border-color: rgba(196, 113, 237, 0.4);
    transform: scale(1.02);
}

.cert-badge {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #c471ed, #ff6b9d);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
    color: #ffffff;
}

.cert-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.cert-description {
    font-size: 0.9rem;
    color: #b8c5d1;
    margin: 0;
}

@keyframes fillBar {
    from {
        width: 0;
    }
    to {
        width: 95%;
    }
}

@media (max-width: 992px) {
    .security-main-title {
        font-size: 2.5rem;
    }
    
    .security-stats-overlay {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .next-gen-security {
        padding: 3rem 0;
    }
    
    .security-main-title {
        font-size: 2rem;
    }
    
    .security-subtitle {
        font-size: 1.1rem;
    }
    
    .security-stats-overlay {
        grid-template-columns: 1fr;
    }
    
    .stat-item:last-child {
        grid-column: unset;
    }
    
    .feature-card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-card-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .certification-grid {
        grid-template-columns: 1fr;
    }
}

/* Block 4 */
.order-form-section {
  background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
  padding: 6rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

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

.form-main-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #1a2238;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

.order-form-wrapper {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(26, 34, 56, 0.15);
  position: relative;
  margin-bottom: 4rem;
}

.form-visual-element {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.form-background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.form-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.85) 0%, rgba(102, 126, 234, 0.85) 100%);
}

.form-container {
  padding: 3rem;
}

.form-intro {
  text-align: center;
  margin-bottom: 2.5rem;
}

.form-section-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1a2238;
  margin-bottom: 1rem;
}

.form-description {
  color: #6c757d;
  font-size: 1.1rem;
  line-height: 1.6;
}

.form-fields-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.form-field-group {
  position: relative;
}

.form-field-label {
  display: block;
  font-weight: 600;
  color: #1a2238;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.input-wrapper {
  position: relative;
}

.form-control-custom {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid #e8ecef;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fafbfc;
}

.form-control-custom:focus {
  outline: none;
  border-color: #0d6efd;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  font-size: 1rem;
}

.storage-requirements {
  margin-bottom: 2.5rem;
}

.requirements-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a2238;
  margin-bottom: 1.5rem;
  text-align: center;
}

.requirement-category {
  margin-bottom: 2rem;
}

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

.category-icon {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 1rem;
}

.category-label {
  font-weight: 600;
  color: #1a2238;
  font-size: 1.1rem;
}

.option-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
}

.option-btn {
  padding: 0.75rem 1rem;
  border: 2px solid #e8ecef;
  border-radius: 10px;
  background: #fafbfc;
  color: #495057;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.option-btn:hover,
.option-btn.selected {
  border-color: #0d6efd;
  background: #0d6efd;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

.form-benefits {
  margin-bottom: 2.5rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
}

.benefit-icon-wrapper {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0d6efd 0%, #667eea 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.benefit-icon {
  color: #ffffff;
  font-size: 1.25rem;
}

.benefit-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a2238;
  margin-bottom: 0.25rem;
}

.benefit-text {
  font-size: 0.875rem;
  color: #6c757d;
  margin: 0;
}

.form-submission {
  text-align: center;
}

.submit-order-button {
  display: inline-flex;
  align-items: center;
  padding: 1.25rem 3rem;
  background: linear-gradient(135deg, #0d6efd 0%, #667eea 100%);
  border: none;
  border-radius: 50px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.submit-order-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(13, 110, 253, 0.4);
  background: linear-gradient(135deg, #0b5ed7 0%, #5a6fd8 100%);
}

.button-text {
  margin-right: 0.75rem;
}

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

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

.privacy-notice {
  max-width: 500px;
  margin: 0 auto;
}

.privacy-text {
  font-size: 0.9rem;
  color: #6c757d;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.trust-indicators {
  background: #ffffff;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(26, 34, 56, 0.1);
}

.trust-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1a2238;
  margin-bottom: 2rem;
}

.trust-stat {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.trust-stat:hover {
  transform: translateY(-5px);
}

.stat-visual {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stat-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-weight: 600;
  color: #495057;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .order-form-section {
    padding: 3rem 0;
  }
  
  .form-main-title {
    font-size: 2.25rem;
  }
  
  .form-container {
    padding: 2rem;
  }
  
  .option-buttons {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
  }
  
  .benefit-icon-wrapper {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .trust-indicators {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .form-main-title {
    font-size: 1.875rem;
  }
  
  .form-container {
    padding: 1.5rem;
  }
  
  .submit-order-button {
    width: 100%;
    justify-content: center;
  }
}
