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

.hero-background {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.hero-overlay {
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.85) 0%, rgba(25, 25, 25, 0.75) 100%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

.hero-banner .container {
  position: relative;
  z-index: 3;
  top: -70vh;
  height: 70vh;
  display: flex;
  align-items: center;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
}

.hero-cta {
  background: linear-gradient(45deg, #0d6efd, #0056b3);
  color: white;
  border: none;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-cta:hover {
  background: linear-gradient(45deg, #0056b3, #004085);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

.hero-cta:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .hero-banner {
    min-height: 60vh;
  }
  
  .hero-image {
    height: 60vh;
  }
  
  .hero-banner .container {
    top: -60vh;
    height: 60vh;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-content {
    text-align: center;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-cta {
    padding: 14px 30px;
    font-size: 1rem;
    width: 100%;
  }
}

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

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

.tech-description {
    font-size: 1.1rem;
    color: #5a5a75;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

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

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

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

.feature-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: #5a5a75;
    margin: 0;
    font-size: 0.95rem;
}

.tech-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

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

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

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(102, 126, 234, 0.1);
}

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

.pulse-1 {
    top: 30%;
    left: 25%;
    animation-delay: 0s;
}

.pulse-2 {
    top: 60%;
    right: 30%;
    animation-delay: 0.7s;
}

.pulse-3 {
    bottom: 25%;
    left: 40%;
    animation-delay: 1.4s;
}

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

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

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

.card-header {
    height: 200px;
    overflow: hidden;
}

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

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

.card-body {
    padding: 1.5rem;
}

.card-body h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.card-body p {
    color: #5a5a75;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

.spec-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .tech-showcase {
        padding: 60px 0;
    }
    
    .tech-title {
        font-size: 2rem;
    }
    
    .tech-description {
        font-size: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .tech-image {
        height: 250px;
    }
    
    .pulse-dot {
        display: none;
    }
}

/* Block 3 */
.ai-powered-analytics {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
}

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

.analytics-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.analytics-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.analytics-dashboard {
    margin-bottom: 80px;
}

.main-dashboard-panel {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(103, 126, 234, 0.1);
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eef2f7;
}

.panel-header h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.status-indicators {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.status-optimal {
    background: #10b981;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
}

.status-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #10b981;
}

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

.metric-card {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(103, 126, 234, 0.05);
}

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

.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.metric-label {
    font-size: 0.85rem;
    color: #64748b;
    margin: 5px 0;
}

.metric-change {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 6px;
}

.metric-change.positive {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.metric-change.neutral {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.visualization-area {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.analytics-chart {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.chart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.data-point {
    position: absolute;
}

.data-point-1 {
    top: 25%;
    left: 65%;
}

.data-point-2 {
    top: 45%;
    left: 80%;
}

.point-marker {
    width: 12px;
    height: 12px;
    background: #667eea;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
    animation: pulse-marker 2s infinite;
}

.point-tooltip {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    animation: fade-tooltip 3s infinite;
}

@keyframes pulse-marker {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes fade-tooltip {
    0%, 70% { opacity: 0; }
    80%, 90% { opacity: 1; }
    100% { opacity: 0; }
}

.sidebar-panels {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.prediction-panel,
.security-panel {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(103, 126, 234, 0.1);
}

.panel-mini-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.panel-mini-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.ai-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.security-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.security-status.secure {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.prediction-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.prediction-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.prediction-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.prediction-icon.warning {
    background: #f59e0b;
}

.prediction-icon.success {
    background: #10b981;
}

.prediction-icon.info {
    background: #3b82f6;
}

.prediction-text {
    font-size: 0.9rem;
    color: #374151;
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.prediction-time {
    font-size: 0.8rem;
    color: #9ca3af;
    font-weight: 500;
}

.security-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.security-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
}

.stat-label {
    font-size: 0.75rem;
    color: #6b7280;
}

.security-visual {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.ai-features-showcase .row {
    margin-top: 0;
}

.ai-feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(103, 126, 234, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

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

.feature-visual {
    position: relative;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.feature-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.feature-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(26, 26, 26, 0.9);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
}

.feature-details h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.feature-details p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.stat-chip {
    background: rgba(103, 126, 234, 0.1);
    color: #667eea;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

@media (max-width: 992px) {
    .analytics-title {
        font-size: 2.5rem;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sidebar-panels {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .ai-powered-analytics {
        padding: 60px 0;
    }
    
    .analytics-title {
        font-size: 2rem;
    }
    
    .main-dashboard-panel {
        padding: 20px;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .metric-card {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .panel-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .security-metrics {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

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

.order-form-section::before {
    content: '';
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="0,0 1000,100 1000,0"/></svg>');
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background-size: cover;
}

.form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

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

.header-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: white;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4);
}

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

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

.consultation-form {
    max-width: 100%;
}

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

.input-group {
    position: relative;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.input-icon {
    position: absolute;
    left: 20px;
    color: #9ca3af;
    font-size: 18px;
    z-index: 2;
    transition: color 0.3s ease;
}

.form-input {
    width: 100%;
    padding: 20px 20px 20px 60px;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    font-size: 16px;
    background: white;
    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);
    transform: translateY(-2px);
}

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

.form-input:focus ~ .input-icon,
.form-input:valid ~ .input-icon {
    color: #667eea;
}

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

.form-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #667eea;
}

.feature-badge i {
    font-size: 16px;
}

.submit-button {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 32px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
}

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

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

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

.button-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.form-trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.trust-badge {
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

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

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.float-element {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 48px;
    animation: float 6s ease-in-out infinite;
}

.float-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.float-3 {
    top: 40%;
    left: 5%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 60px 0;
    }
    
    .form-wrapper {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .header-icon {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }
    
    .form-features {
        gap: 12px;
    }
    
    .feature-badge {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .form-input {
        padding: 16px 16px 16px 50px;
    }
    
    .input-icon {
        left: 16px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .form-features {
        flex-direction: column;
        align-items: center;
    }
    
    .form-trust-indicators {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .trust-badge {
        height: 32px;
    }
}
