
/* Block 1 */
.hero-banner {
    position: relative;
    background-image: url('tech-workspace-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.85) 0%, rgba(17, 24, 39, 0.9) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 4rem 0;
}

.hero-text {
    color: white;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #e5e7eb;
    max-width: 500px;
}

.hero-cta {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.hero-image {
    animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.3s ease;
}

.hero-img:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-banner {
        background-attachment: scroll;
    }
    
    .hero-img {
        transform: none;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .hero-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

/* Block 2 */
.quantum-services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.quantum-badge {
    display: inline-block;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.quantum-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #00d4ff, #0099cc, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.quantum-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.quantum-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.quantum-card-header {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.quantum-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.quantum-card:hover .quantum-card-img {
    transform: scale(1.1);
}

.quantum-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.8), rgba(0, 153, 204, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.quantum-card:hover .quantum-overlay {
    opacity: 1;
}

.quantum-icon {
    font-size: 3rem;
    color: white;
    animation: pulse 2s infinite;
}

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

.quantum-card-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.quantum-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #00d4ff;
}

.quantum-card-text {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.quantum-metrics {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.metric {
    background: rgba(0, 212, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.quantum-stats {
    margin-top: 4rem;
    padding: 3rem 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .quantum-services {
        padding: 4rem 0;
    }
    
    .quantum-title {
        font-size: 2rem;
    }
    
    .quantum-subtitle {
        font-size: 1rem;
    }
    
    .quantum-card-header {
        height: 200px;
    }
    
    .quantum-card-body {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .quantum-stats {
        margin-top: 2rem;
        padding: 2rem 0;
    }
}

/* Block 3 */
.neuro-optimization {
    background: linear-gradient(145deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    padding: 6rem 0;
    margin: 4rem 0;
    overflow: hidden;
    position: relative;
}

.neuro-optimization::before {
    content: '';
    background: radial-gradient(circle at 20% 80%, rgba(120, 53, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 53, 120, 0.1) 0%, transparent 50%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.neuro-optimization .container {
    position: relative;
    z-index: 2;
}

.neuro-badge {
    background: linear-gradient(45deg, #7835ff, #ff3578);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.neuro-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #7835ff, #ff3578, #35a3ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.neuro-description {
    font-size: 1.2rem;
    color: #b8b8d4;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.feature-item i {
    color: #7835ff;
    font-size: 1.5rem;
}

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

.neuro-image {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pulse-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pulse-ring {
    border: 2px solid #7835ff;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: pulse 2s infinite;
}

.pulse-delay-1 {
    animation-delay: 0.7s;
    border-color: #ff3578;
}

.pulse-delay-2 {
    animation-delay: 1.4s;
    border-color: #35a3ff;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.evolution-timeline {
    margin: 5rem 0;
}

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

.timeline-header h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #35a3ff, #7835ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.timeline-header p {
    color: #b8b8d4;
    font-size: 1.1rem;
}

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

.timeline-phase {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.timeline-phase:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.phase-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #7835ff;
    margin-bottom: 1rem;
}

.phase-icon {
    margin-bottom: 1.5rem;
}

.phase-icon i {
    font-size: 3rem;
    background: linear-gradient(45deg, #7835ff, #ff3578);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.timeline-phase h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.timeline-phase p {
    color: #b8b8d4;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.phase-metrics {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #35a3ff;
}

.metric-label {
    font-size: 0.9rem;
    color: #b8b8d4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quantum-showcase {
    margin-top: 4rem;
}

.showcase-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    margin-bottom: 2rem;
}

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

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

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(120, 53, 255, 0.8), rgba(255, 53, 120, 0.8));
    display: flex;
    align-items: end;
    padding: 2rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.showcase-card:hover .showcase-overlay {
    opacity: 1;
}

.showcase-content h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.showcase-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.showcase-stats {
    display: flex;
    gap: 2rem;
}

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

.stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.stat-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .neuro-title {
        font-size: 2.2rem;
    }
    
    .timeline-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .neuro-features {
        margin-top: 2rem;
    }
}

/* Block 4 */
.quantum-contact-form {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #0f0f23 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.quantum-contact-form::before {
    content: '';
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="800" cy="300" r="1.5" fill="%23fbbf24" opacity="0.2"/><circle cx="300" cy="700" r="1" fill="%232563eb" opacity="0.3"/><circle cx="700" cy="100" r="2.5" fill="%23ffffff" opacity="0.1"/></svg>') repeat;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: starfield 20s linear infinite;
}

@keyframes starfield {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.form-wrapper {
    position: relative;
    z-index: 10;
}

.quantum-form-badge {
    display: inline-block;
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: #1f2937;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.form-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.form-description {
    font-size: 1.2rem;
    color: #e5e7eb;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.contact-intro {
    padding-right: 2rem;
}

.enhancement-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.benefit-icon {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fbbf24;
}

.benefit-content p {
    color: #d1d5db;
    margin: 0;
    font-size: 1rem;
}

.quantum-form-container {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.form-header {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    overflow: hidden;
}

.form-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.8), rgba(30, 64, 175, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-icon {
    font-size: 3rem;
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.enhancement-form {
    padding: 2.5rem;
}

.form-field-group {
    margin-bottom: 2rem;
}

.input-wrapper {
    position: relative;
}

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

.quantum-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1rem 1.2rem;
    font-size: 1.1rem;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.quantum-input:focus {
    outline: none;
    border-color: #fbbf24;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.quantum-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.input-focus-line {
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    transition: width 0.3s ease;
}

.quantum-input:focus + .input-focus-line {
    width: 100%;
}

.form-actions {
    margin-top: 2.5rem;
    text-align: center;
}

.quantum-submit-btn {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0 auto;
}

.quantum-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.btn-particles {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.quantum-submit-btn:hover .btn-particles {
    left: 100%;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.quantum-submit-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.form-security-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    color: #9ca3af;
    font-size: 0.9rem;
}

.form-security-notice i {
    color: #10b981;
}

@media (max-width: 768px) {
    .form-title {
        font-size: 2.2rem;
    }
    
    .contact-intro {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .quantum-form-container {
        margin-top: 2rem;
    }
    
    .enhancement-form {
        padding: 2rem 1.5rem;
    }
    
    .quantum-submit-btn {
        width: 100%;
        justify-content: center;
    }
}
