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

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

.hero-banner::before {
    content: '';
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.8), rgba(25, 25, 25, 0.7));
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    background: linear-gradient(45deg, #0d6efd, #6610f2);
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    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 {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
    color: #ffffff;
    background: linear-gradient(45deg, #0b5ed7, #5a0cbd);
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 80vh;
    }
    
    .hero-content {
        padding: 1rem 0;
    }
    
    .hero-description {
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        min-height: 70vh;
    }
    
    .hero-title {
        margin-bottom: 1rem;
    }
    
    .hero-description {
        margin-bottom: 1.5rem;
    }
}

/* Block 2 */
.ai-integration-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.ai-integration-showcase::before {
    content: '';
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -300px;
    right: -300px;
    z-index: 1;
}

.ai-integration-showcase::after {
    content: '';
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
    z-index: 1;
}

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

.ai-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.ai-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.ai-description {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.ai-features {
    margin-bottom: 40px;
}

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

.ai-feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    flex-shrink: 0;
}

.ai-feature-icon i {
    font-size: 24px;
    color: white;
}

.ai-feature-text h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.ai-feature-text p {
    color: rgba(255,255,255,0.8);
    margin: 0;
    line-height: 1.5;
}

.ai-cta-button {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255,107,107,0.4);
}

.ai-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255,107,107,0.5);
    color: white;
}

.ai-visual-container {
    position: relative;
    z-index: 2;
}

.ai-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.ai-floating-cards {
    position: relative;
}

.ai-stat-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    width: 200px;
    margin-top: -60px;
}

.ai-card-1 {
    margin-left: -30px;
}

.ai-card-2 {
    margin-left: 50%;
    margin-top: -120px;
    transform: translateX(-50%);
}

.ai-card-3 {
    margin-left: calc(100% - 170px);
    margin-top: -80px;
}

.ai-stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ai-stat-icon i {
    color: white;
    font-size: 20px;
}

.ai-stat-content h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.ai-stat-content span {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.ai-tech-item {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.ai-tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.ai-tech-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.ai-tech-content {
    padding: 25px;
}

.ai-tech-content h5 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.ai-tech-content p {
    color: rgba(255,255,255,0.8);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .ai-integration-showcase {
        padding: 60px 0;
    }
    
    .ai-title {
        font-size: 2.2rem;
    }
    
    .ai-main-image {
        height: 300px;
        margin-bottom: 30px;
    }
    
    .ai-stat-card {
        width: 170px;
        padding: 15px;
    }
    
    .ai-card-1,
    .ai-card-2,
    .ai-card-3 {
        margin-left: 0;
        margin-top: 15px;
        position: relative;
    }
    
    .ai-tech-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .ai-feature-item {
        margin-bottom: 25px;
    }
}

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

.quantum-lifestyle-evolution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.evolution-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.evolution-year {
    font-size: 80px;
    font-weight: 900;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 0.8;
    margin-bottom: 20px;
    animation: quantumGlow 3s ease-in-out infinite alternate;
}

@keyframes quantumGlow {
    0% {
        filter: brightness(1) drop-shadow(0 0 20px rgba(0, 255, 255, 0.3));
    }
    100% {
        filter: brightness(1.2) drop-shadow(0 0 40px rgba(255, 0, 255, 0.5));
    }
}

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

.evolution-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.evolution-dimension {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.evolution-dimension:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.3);
}

.dimension-visual {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

.evolution-dimension:hover .dimension-image {
    transform: scale(1.1);
}

.dimension-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.8) 0%, rgba(255, 0, 255, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.evolution-dimension:hover .dimension-overlay {
    opacity: 1;
}

.dimension-overlay i {
    font-size: 48px;
    color: #ffffff;
    animation: pulse 2s infinite;
}

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

.dimension-content {
    padding: 30px;
}

.dimension-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #00ffff;
}

.dimension-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.dimension-metrics {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.metric-item {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 15px;
}

.metric-item strong {
    color: #ff00ff;
}

.evolution-showcase {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
}

.showcase-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 25px;
}

.quantum-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #00ffff;
    border-radius: 50%;
    animation: quantumFloat 4s infinite linear;
}

.particle-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.particle-2 {
    top: 60%;
    left: 80%;
    animation-delay: 1s;
    background: #ff00ff;
}

.particle-3 {
    top: 40%;
    left: 25%;
    animation-delay: 2s;
    background: #ffff00;
}

.particle-4 {
    top: 80%;
    left: 60%;
    animation-delay: 3s;
}

.particle-5 {
    top: 10%;
    left: 70%;
    animation-delay: 0.5s;
    background: #ff00ff;
}

@keyframes quantumFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) scale(1.5);
        opacity: 1;
    }
}

.evolution-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid #00ffff;
    position: relative;
    overflow: hidden;
}

.badge-text {
    color: #00ffff;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    z-index: 2;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
    animation: badgeGlow 2s infinite;
}

@keyframes badgeGlow {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.evolution-experience {
    padding-left: 40px;
}

.experience-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.experience-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.experience-features {
    margin-bottom: 40px;
}

.feature-quantum {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.feature-quantum:hover {
    transform: translateX(10px);
}

.feature-icon-quantum {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-icon-quantum i {
    font-size: 20px;
    color: #ffffff;
}

.feature-content-quantum h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.feature-content-quantum p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.experience-cta {
    text-align: left;
}

.btn-quantum-experience {
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    border: none;
    padding: 15px 40px;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    display: block;
}

.btn-quantum-experience:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

.cta-helper {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

@media (max-width: 768px) {
    .evolution-year {
        font-size: 60px;
    }
    
    .evolution-title {
        font-size: 36px;
    }
    
    .evolution-subtitle {
        font-size: 18px;
    }
    
    .evolution-experience {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .experience-title {
        font-size: 28px;
    }
    
    .experience-description {
        font-size: 16px;
    }
    
    .showcase-main-image {
        height: 300px;
    }
}

/* Block 4 */
.advanced-order-system {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

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

.order-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.order-icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #00d4ff, #ff0080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconPulse 3s ease-in-out infinite;
}

.order-icon-container i {
    font-size: 2rem;
    color: white;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }
    50% { transform: scale(1.1); box-shadow: 0 0 40px rgba(255, 0, 128, 0.5); }
}

.order-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff, #ff0080, #00ff88);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.order-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.order-form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.form-floating-group {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.floating-input-wrapper {
    position: relative;
}

.form-input {
    width: 100%;
    height: 60px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem 1rem 0.5rem;
    color: white;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input:focus {
    outline: none;
    border-color: #00d4ff;
    background: rgba(255, 255, 255, 0.12);
}

.floating-label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input:focus + .floating-label,
.form-input:valid + .floating-label {
    top: 1rem;
    transform: translateY(0);
    font-size: 0.85rem;
    color: #00d4ff;
}

.input-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #ff0080);
    transition: width 0.4s ease;
}

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

.quantum-benefits {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(255, 0, 128, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #00d4ff;
}

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

.btn-quantum-order {
    position: relative;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, #00d4ff, #ff0080);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.btn-quantum-order:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
}

.btn-text {
    position: relative;
    z-index: 2;
}

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

.particle-orbit {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: orbit 2s linear infinite;
}

.particle-orbit:nth-child(1) {
    animation-delay: 0s;
    transform: translate(-25px, 0);
}

.particle-orbit:nth-child(2) {
    animation-delay: 0.7s;
    transform: translate(25px, 0);
}

.particle-orbit:nth-child(3) {
    animation-delay: 1.4s;
    transform: translate(0, -25px);
}

@keyframes orbit {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(2); }
}

.form-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.form-guarantee i {
    color: #00ff88;
}

.order-testimonials {
    position: relative;
    z-index: 2;
}

.testimonial-carousel {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-item {
    max-width: 350px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00d4ff;
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author strong {
    color: white;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .order-title {
        font-size: 2.2rem;
    }
    
    .order-form-container {
        padding: 2rem;
        margin: 0 1rem 2rem;
    }
    
    .quantum-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .benefit-item {
        justify-content: center;
    }
    
    .testimonial-carousel {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .advanced-order-system {
        padding: 4rem 0;
    }
    
    .order-header {
        margin-bottom: 3rem;
    }
    
    .btn-quantum-order {
        width: 100%;
        padding: 1rem 2rem;
    }
}
