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

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

    .hero-overlay {
        background: linear-gradient(135deg, rgba(13, 110, 253, 0.8) 0%, rgba(102, 126, 234, 0.9) 50%, rgba(118, 75, 162, 0.8) 100%);
        z-index: 2;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .hero-overlay,
    .hero-content {
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .hero-content {
        z-index: 3;
        display: flex;
        align-items: center;
    }

    .hero-text-wrapper {
        opacity: 0;
        transform: translateY(50px);
        animation: heroFadeIn 1.2s ease-out 0.3s forwards;
    }

    .hero-title {
        font-size: 3.5rem;
        font-weight: 800;
        color: white;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        letter-spacing: -0.02em;
    }

    .hero-description {
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.95);
        margin-bottom: 2.5rem;
        line-height: 1.6;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .hero-actions {
        display: flex;
        gap: 1.25rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-btn-primary {
        background: white;
        color: #0d6efd;
        border: 2px solid white;
        padding: 1rem 2.5rem;
        font-weight: 700;
        font-size: 1.1rem;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.4s ease;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        letter-spacing: 0.5px;
    }

    .hero-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
        background: rgba(255, 255, 255, 0.95);
        color: #0d6efd;
    }

    .hero-btn-secondary {
        background: transparent;
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.8);
        padding: 1rem 2.5rem;
        font-weight: 600;
        font-size: 1.1rem;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.4s ease;
        letter-spacing: 0.5px;
    }

    .hero-btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: white;
        color: white;
        transform: translateY(-2px);
        backdrop-filter: blur(10px);
    }

    @keyframes heroFadeIn {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media (max-width: 992px) {
        .hero-title {
            font-size: 2.8rem;
        }
        
        .hero-description {
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }
    }

    @media (max-width: 768px) {
        .hero-banner {
            height: 90vh;
        }

        .hero-title {
            font-size: 2.2rem;
            margin-bottom: 1.25rem;
        }

        .hero-description {
            font-size: 1rem;
            margin-bottom: 1.75rem;
            padding: 0 1rem;
        }

        .hero-actions {
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .hero-btn-primary,
        .hero-btn-secondary {
            width: 100%;
            max-width: 280px;
            padding: 0.875rem 2rem;
            font-size: 1rem;
        }
    }

    @media (max-width: 576px) {
        .hero-title {
            font-size: 1.9rem;
        }

        .hero-description {
            font-size: 0.95rem;
        }
    }

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

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

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

.feature-showcase-content {
    padding: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.feature-icon {
    color: white;
    font-size: 1.75rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.showcase-visual {
    position: relative;
}

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

.showcase-image:hover {
    transform: translateY(-5px);
}

.floating-stats {
    position: absolute;
    top: -30px;
    right: -30px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    min-width: 120px;
    animation: float 6s ease-in-out infinite;
}

.stat-card:nth-child(2) {
    animation-delay: -2s;
}

.stat-card:nth-child(3) {
    animation-delay: -4s;
}

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

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

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

.cta-container {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.cta-description {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    color: white;
}

@media (max-width: 768px) {
    .ai-features-showcase {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .feature-icon-wrapper {
        align-self: center;
    }
    
    .floating-stats {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 2rem;
    }
    
    .stat-card {
        min-width: 90px;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .cta-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .floating-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-card {
        width: 100%;
        max-width: 150px;
    }
}

/* Block 3 */
.quantum-security-platform {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
    overflow: hidden;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
}

.security-badge i {
    font-size: 1.1rem;
}

.platform-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

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

.security-visual-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.security-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.encryption-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.1));
}

.encryption-layer {
    position: absolute;
    border: 2px solid rgba(79, 70, 229, 0.4);
    border-radius: 50%;
    animation: pulse-ring 3s ease-out infinite;
}

.layer-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.layer-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.layer-3 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.security-metrics {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.metric-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 120px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.metric-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.metric-data {
    display: flex;
    flex-direction: column;
}

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

.metric-label {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1;
    margin-top: 0.25rem;
}

.security-features-list {
    padding-left: 2rem;
}

.security-feature {
    margin-bottom: 2.5rem;
    padding-left: 1rem;
    border-left: 3px solid #e2e8f0;
    transition: all 0.3s ease;
}

.security-feature:hover {
    border-left-color: #4f46e5;
    transform: translateX(0.5rem);
}

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

.feature-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    line-height: 1.2;
}

.feature-info {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    padding-left: 4rem;
}

.compliance-showcase {
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 2rem;
    padding: 3rem;
    color: white;
    text-align: center;
}

.compliance-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.compliance-description {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.compliance-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.compliance-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-0.25rem);
}

.compliance-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.compliance-name {
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

@media (max-width: 768px) {
    .platform-title {
        font-size: 2.5rem;
    }
    
    .platform-subtitle {
        font-size: 1.1rem;
    }
    
    .security-features-list {
        padding-left: 0;
        margin-top: 3rem;
    }
    
    .feature-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .feature-info {
        padding-left: 0;
        margin-top: 0.5rem;
    }
    
    .compliance-showcase {
        padding: 2rem;
    }
    
    .compliance-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
    }
    
    .security-metrics {
        flex-direction: column;
    }
    
    .metric-item {
        min-width: auto;
    }
}

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

.order-form-section::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 1000 1000"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.form-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.form-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.form-icon i {
    font-size: 32px;
    color: white;
}

.form-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.form-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

.input-group {
    position: relative;
}

.input-wrapper {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 20px 60px 20px 20px;
    border: 2px solid #e8ecef;
    border-radius: 12px;
    font-size: 16px;
    background: white;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-input:focus + .form-label,
.form-input:valid + .form-label {
    transform: translateY(-35px) scale(0.85);
    color: #667eea;
    background: white;
    padding: 0 8px;
}

.form-label {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: #64748b;
    font-weight: 500;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.form-input:focus ~ .input-border {
    width: 100%;
}

.input-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    transition: color 0.3s ease;
}

.form-input:focus + .form-label + .input-border + .input-icon {
    color: #667eea;
}

.form-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.benefit-item {
    display: flex;
    align-items: center;
    color: #475569;
    font-weight: 500;
}

.benefit-item i {
    color: #10b981;
    margin-right: 10px;
    font-size: 14px;
}

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

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

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

.button-background {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #764ba2, #667eea);
    transition: left 0.3s ease;
    z-index: -1;
}

.submit-button:hover .button-background {
    left: 0;
}

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

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

.form-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #64748b;
    font-size: 14px;
}

.security-badge {
    height: 24px;
    width: auto;
}

.success-message {
    display: none;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 12px;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-icon i {
    font-size: 24px;
}

.success-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.success-text {
    font-size: 16px;
    opacity: 0.9;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 25%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    bottom: 30%;
    left: 5%;
    animation-delay: 4s;
}

.element-4 {
    bottom: 15%;
    right: 8%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

@media (max-width: 768px) {
    .form-title {
        font-size: 2.2rem;
    }
    
    .order-form-container {
        padding: 30px 25px;
        margin: 0 15px;
    }
    
    .form-benefits {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px;
    }
    
    .floating-element {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .order-form-section {
        padding: 60px 0;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .form-description {
        font-size: 1rem;
    }
}
