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

.hero-background {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 70vh;
}

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

.hero-overlay {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.85) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-banner .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.hero-content {
    padding: 60px 0;
}

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

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ffffff, #f8f9fa);
    color: #667eea;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    border: 3px solid transparent;
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4);
    color: #5a67d8;
    background: linear-gradient(45deg, #ffffff, #ffffff);
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 60vh;
    }
    
    .hero-background {
        min-height: 60vh;
    }
    
    .hero-image {
        min-height: 60vh;
    }
    
    .hero-banner .container {
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-content {
        padding: 40px 0;
    }
    
    .hero-cta-button {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

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

/* Block 2 */
.ai-workflow-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.ai-content-wrapper {
    padding-right: 20px;
}

.ai-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.ai-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 20px;
}

.ai-section-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 40px;
}

.ai-features-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ai-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.ai-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.ai-feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.ai-feature-content p {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

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

.ai-main-image {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.ai-floating-cards {
    position: relative;
    margin-top: -350px;
    margin-left: 50px;
    z-index: 2;
}

.ai-card {
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    transform: translateX(50px);
    animation: floatAnimation 3s ease-in-out infinite;
}

.ai-card-1 {
    animation-delay: 0s;
}

.ai-card-2 {
    animation-delay: 1s;
}

.ai-card-3 {
    animation-delay: 2s;
}

.ai-card-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.ai-card span {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateX(50px) translateY(0px);
    }
    50% {
        transform: translateX(50px) translateY(-10px);
    }
}

.ai-stats-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.ai-stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.ai-stat-image {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ai-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 5px;
}

.ai-stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

@media (max-width: 992px) {
    .ai-section-title {
        font-size: 2rem;
    }
    
    .ai-content-wrapper {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .ai-floating-cards {
        margin-top: 20px;
        margin-left: 0;
    }
    
    .ai-card {
        transform: translateX(0);
    }
    
    @keyframes floatAnimation {
        0%, 100% {
            transform: translateX(0) translateY(0px);
        }
        50% {
            transform: translateX(0) translateY(-10px);
        }
    }
}

@media (max-width: 768px) {
    .ai-workflow-section {
        padding: 60px 0;
    }
    
    .ai-section-title {
        font-size: 1.8rem;
    }
    
    .ai-stats-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .ai-stat-item {
        min-width: auto;
    }
}

/* Block 3 */
.quantum-security-section {
    background: linear-gradient(135deg, #0c0c1e 0%, #1a1a3e 50%, #2d1b69 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.quantum-security-section::before {
    content: '';
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff08" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.quantum-security-section > .container {
    position: relative;
    z-index: 2;
}

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

.quantum-badge {
    background: linear-gradient(45deg, #00d4ff, #7c3aed);
    color: white;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.quantum-main-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(45deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quantum-main-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.quantum-feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.quantum-feature-card::before {
    content: '';
    background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    width: 100%;
    height: 100%;
    top: -50%;
    left: -50%;
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.quantum-feature-card:hover::before {
    opacity: 1;
    top: -10%;
    left: -10%;
}

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

.quantum-feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

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

.quantum-feature-content {
    position: relative;
    z-index: 2;
}

.quantum-feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.quantum-feature-icon {
    background: linear-gradient(45deg, #00d4ff, #7c3aed);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.quantum-feature-header h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.quantum-feature-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.quantum-metrics {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.quantum-metric {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.quantum-visual-stack {
    position: relative;
}

.quantum-main-visual {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.quantum-overlay-stats {
    position: relative;
    margin-top: -100px;
    z-index: 3;
}

.quantum-stat-bubble {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
    margin: 0 10px 15px 0;
    animation: float 3s ease-in-out infinite;
}

.quantum-bubble-1 {
    animation-delay: 0s;
}

.quantum-bubble-2 {
    animation-delay: 1s;
}

.quantum-bubble-3 {
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.quantum-stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a3e;
    margin-bottom: 5px;
}

.quantum-stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.quantum-security-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.quantum-security-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.quantum-security-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.quantum-security-icon {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.quantum-security-details h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.quantum-security-details p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 16px;
}

.quantum-security-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.quantum-badge-small {
    background: rgba(124, 58, 237, 0.3);
    color: #a78bfa;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(124, 58, 237, 0.4);
}

@media (max-width: 768px) {
    .quantum-main-title {
        font-size: 2.2rem;
    }
    
    .quantum-security-item {
        flex-direction: column;
        text-align: center;
    }
    
    .quantum-security-item:hover {
        transform: translateY(-5px);
    }
    
    .quantum-overlay-stats {
        margin-top: 20px;
        text-align: center;
    }
    
    .quantum-stat-bubble {
        margin: 10px;
    }
}

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

.order-form-wrapper {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.order-form-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    color: #ffffff;
    text-align: center;
}

.order-header-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
}

.order-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

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

.order-form-subtitle {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 0;
}

.order-form-container {
    padding: 50px 40px;
}

.premium-order-form {
    max-width: 100%;
}

.form-group-wrapper {
    margin-bottom: 30px;
}

.form-input-group {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f8f9ff;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}

.form-input-group:focus-within {
    border-color: #667eea;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.input-icon-image {
    width: 28px;
    height: 28px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.input-wrapper {
    flex: 1;
    position: relative;
}

.form-control-premium {
    width: 100%;
    border: none;
    background: transparent;
    padding: 12px 0 8px 0;
    font-size: 16px;
    font-weight: 500;
    color: #2d3748;
    outline: none;
}

.form-control-premium::placeholder {
    color: transparent;
}

.floating-label {
    position: absolute;
    left: 0;
    top: 12px;
    color: #718096;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-control-premium:focus + .floating-label,
.form-control-premium:not(:placeholder-shown) + .floating-label {
    top: -8px;
    font-size: 13px;
    color: #667eea;
    font-weight: 600;
}

.order-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    border-radius: 16px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.benefit-item span {
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
}

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

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

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

.button-arrow {
    width: 24px;
    height: 24px;
    object-fit: cover;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

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

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 25px;
    border-top: 1px solid #e2e8f0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #718096;
    font-size: 14px;
    font-weight: 500;
}

.trust-icon {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 60px 0;
    }
    
    .order-form-header {
        padding: 30px 25px;
    }
    
    .order-form-title {
        font-size: 26px;
    }
    
    .order-form-subtitle {
        font-size: 16px;
    }
    
    .order-form-container {
        padding: 40px 25px;
    }
    
    .order-benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 25px 20px;
    }
    
    .trust-indicators {
        gap: 20px;
    }
    
    .trust-item {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .form-input-group {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .input-wrapper {
        width: 100%;
    }
}
