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

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

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

.hero-banner .container {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ffffff, #e3f2fd);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
    }
}

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

.hero-cta-button {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    transform: translateY(0);
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
    background: linear-gradient(45deg, #ee5a24, #ff6b6b);
    scale: 1.05;
}

.hero-cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
}

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

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

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

        .content-wrapper {
            padding: 0 20px;
        }

        .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
        }

        .section-heading {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            color: #1a202c;
            line-height: 1.2;
            margin-bottom: 25px;
        }

        .section-description {
            font-size: 18px;
            color: #4a5568;
            line-height: 1.7;
            margin-bottom: 40px;
        }

        .features-grid {
            display: grid;
            gap: 25px;
            margin-bottom: 40px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 20px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

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

        .feature-icon i {
            font-size: 20px;
        }

        .feature-content h4 {
            font-size: 18px;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 5px;
        }

        .feature-content p {
            font-size: 14px;
            color: #4a5568;
            margin: 0;
            line-height: 1.5;
        }

        .action-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .primary-button {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .primary-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        }

        .secondary-button {
            background: transparent;
            color: #667eea;
            border: 2px solid #667eea;
            padding: 13px 30px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .secondary-button:hover {
            background: #667eea;
            color: white;
            transform: translateY(-2px);
        }

        .image-container {
            position: relative;
            padding: 40px 20px;
        }

        .main-image {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .floating-card {
            position: absolute;
            background: white;
            padding: 15px 20px;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 10px;
            animation: floatAnimation 6s ease-in-out infinite;
            border: 1px solid #e2e8f0;
        }

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

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

        .card-3 {
            bottom: 15%;
            left: -5%;
            animation-delay: 4s;
        }

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

        .card-icon {
            width: 24px;
            height: 24px;
        }

        .card-text {
            font-size: 12px;
            font-weight: 600;
            color: #1a202c;
            white-space: nowrap;
        }

        .progress-indicator {
            width: 40px;
            height: 4px;
            background: #e2e8f0;
            border-radius: 2px;
            overflow: hidden;
        }

        .progress-indicator::after {
            content: '';
            display: block;
            width: 70%;
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            animation: progressAnimation 3s ease-in-out infinite;
        }

        @keyframes progressAnimation {
            0% { width: 0%; }
            50% { width: 70%; }
            100% { width: 100%; }
        }

        .success-badge {
            background: #48bb78;
            color: white;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
        }

        .accuracy-meter {
            width: 30px;
            height: 30px;
            border: 3px solid #e2e8f0;
            border-top: 3px solid #48bb78;
            border-radius: 50%;
            animation: rotateAnimation 2s linear infinite;
        }

        @keyframes rotateAnimation {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @media (max-width: 992px) {
            .ai-integration-showcase {
                padding: 80px 0;
            }
            
            .floating-card {
                position: static;
                margin: 10px 0;
                animation: none;
            }
            
            .image-container {
                margin-bottom: 40px;
            }
        }

        @media (max-width: 768px) {
            .action-buttons {
                flex-direction: column;
            }
            
            .primary-button,
            .secondary-button {
                width: 100%;
                text-align: center;
            }
        }

/* Block 3 */
.quantum-storage-ecosystem {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    padding: 120px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.quantum-storage-ecosystem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.innovation-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.quantum-icon {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 10px #00ffff);
    animation: quantum-spin 3s linear infinite;
}

@keyframes quantum-spin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.tech-label {
    background: linear-gradient(90deg, #00ffff, #ff00ff, #00ffff);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    animation: gradient-shift 2s ease-in-out infinite alternate;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.ecosystem-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ecosystem-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #b8b8b8;
    max-width: 700px;
    margin: 0 auto;
}

.architecture-showcase {
    position: relative;
    margin-bottom: 100px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.central-hub {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hub-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.5);
    position: relative;
    z-index: 3;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse-expand 2s ease-in-out infinite;
}

@keyframes pulse-expand {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.data-streams {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
}

.stream {
    position: absolute;
    width: 2px;
    height: 200px;
    background: linear-gradient(180deg, transparent, #00ffff, transparent);
    animation: stream-flow 3s linear infinite;
}

.stream-1 { top: 0; left: 50%; transform: translateX(-50%); }
.stream-2 { top: 50%; right: 0; transform: translateY(-50%) rotate(90deg); }
.stream-3 { bottom: 0; left: 50%; transform: translateX(-50%) rotate(180deg); }
.stream-4 { top: 50%; left: 0; transform: translateY(-50%) rotate(270deg); }

@keyframes stream-flow {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

.capability-nodes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1000px;
    z-index: 2;
}

.node {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.node::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.node:hover::before {
    left: 100%;
}

.node:hover {
    transform: translateY(-10px);
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.node-security { grid-column: 1; grid-row: 1; }
.node-speed { grid-column: 2; grid-row: 1; }
.node-intelligence { grid-column: 1; grid-row: 2; }
.node-collaboration { grid-column: 2; grid-row: 2; }

.node-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 10px currentColor);
}

.node h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.node p {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 20px;
}

.security-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00ff00;
    margin: 0 auto;
    animation: security-blink 2s ease-in-out infinite;
}

@keyframes security-blink {
    0%, 50% { opacity: 1; }
    25%, 75% { opacity: 0.3; }
}

.speed-meter {
    width: 100px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    margin: 0 auto;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ff00, #ffff00, #ff0000);
    border-radius: 4px;
    width: 95%;
    animation: meter-pulse 1.5s ease-in-out infinite alternate;
}

@keyframes meter-pulse {
    0% { width: 90%; }
    100% { width: 98%; }
}

.learning-progress {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.synapse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #666;
    transition: all 0.3s ease;
}

.synapse.active {
    background: #00ffff;
    box-shadow: 0 0 10px #00ffff;
}

.synapse.learning {
    background: #ffff00;
    animation: learning-pulse 1s ease-in-out infinite;
}

@keyframes learning-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.sync-animation {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.sync-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff00ff;
    animation: sync-wave 1.2s ease-in-out infinite;
}

.sync-dot:nth-child(2) { animation-delay: 0.2s; }
.sync-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes sync-wave {
    0%, 60%, 100% { transform: scale(1); opacity: 0.5; }
    30% { transform: scale(1.4); opacity: 1; }
}

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

.metric-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.metric-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.metric-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.metric-label {
    font-size: 14px;
    color: #b8b8b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-value {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-description {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.4;
}

.ecosystem-actions {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.quantum-button {
    position: relative;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    min-width: 200px;
}

.quantum-button.primary {
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    color: #000000;
}

.quantum-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.4);
}

.quantum-button.secondary {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.quantum-button.secondary:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-3px);
}

.button-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

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

.button-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    opacity: 0;
    animation: particle-burst 2s ease-in-out infinite;
}

@keyframes particle-burst {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.5); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(0); }
}

@media (max-width: 768px) {
    .ecosystem-title {
        font-size: 36px;
    }
    
    .ecosystem-subtitle {
        font-size: 18px;
    }
    
    .capability-nodes {
        grid-template-columns: 1fr;
        gap: 24px;
        position: static;
        transform: none;
        margin-top: 60px;
    }
    
    .central-hub {
        width: 250px;
        height: 250px;
    }
    
    .hub-image {
        width: 150px;
        height: 150px;
    }
    
    .data-streams {
        width: 300px;
        height: 300px;
    }
    
    .stream {
        height: 150px;
    }
    
    .ecosystem-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .quantum-button {
        min-width: 250px;
    }
}

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

.order-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(255, 99, 132, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

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

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

.icon-image {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

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

.form-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.form-container {
    padding: 60px 40px;
}

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

.input-group {
    position: relative;
}

.input-label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

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

.input-icon {
    position: absolute;
    left: 20px;
    width: 20px;
    height: 20px;
    opacity: 0.6;
    z-index: 2;
}

.form-input {
    width: 100%;
    padding: 20px 20px 20px 56px;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.benefits-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 48px;
}

.benefits-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    text-align: center;
}

.benefits-list {
    display: grid;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    filter: hue-rotate(120deg) saturate(1.5);
}

.benefit-text {
    font-size: 1rem;
    color: #4b5563;
    font-weight: 500;
}

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

.submit-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 20px;
    padding: 24px 48px;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

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

.button-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.button-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.submit-button:hover .button-glow {
    left: 100%;
}

.privacy-notice {
    margin-top: 24px;
    font-size: 0.9rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.privacy-icon {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    background: #f8fafc;
    padding: 40px;
}

.indicator-item {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.indicator-image {
    width: 40px;
    height: 40px;
}

.indicator-content {
    display: flex;
    flex-direction: column;
}

.indicator-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
}

.indicator-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

@media (max-width: 768px) {
    .form-title {
        font-size: 2rem;
    }
    
    .form-header,
    .form-container {
        padding: 40px 24px;
    }
    
    .form-grid {
        gap: 24px;
    }
    
    .benefits-section {
        padding: 24px;
    }
    
    .submit-button {
        padding: 20px 32px;
        font-size: 1rem;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .form-wrapper {
        margin: 0 16px;
        border-radius: 16px;
    }
    
    .button-content {
        flex-direction: column;
        gap: 8px;
    }
}
