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

.hero-image {
    width: 100%;
    height: 100%;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.85) 0%, rgba(108, 117, 125, 0.75) 50%, rgba(33, 37, 41, 0.9) 100%);
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-overlay,
.hero-content {
    position: absolute;
    top: 0;
    left: 0;
}

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

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

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-cta-btn {
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(13, 110, 253, 0.4);
    background: linear-gradient(135deg, #0b5ed7 0%, #5a0dcf 100%);
}

.hero-cta-btn:active {
    transform: translateY(-1px);
}

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

.hero-cta-btn:hover .btn-icon {
    transform: translateX(4px);
}

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

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

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-cta-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Block 2 */
.innovative-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

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

.features-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-card-wide {
    min-height: 200px;
}

.feature-content-horizontal {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.feature-icon-wrapper {
    text-align: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.feature-card-wide .feature-icon-wrapper {
    margin-bottom: 0;
    width: 80px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.feature-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-card-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.metric-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #495057;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 25px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.metric-item:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.metric-item i {
    color: #667eea;
    transition: color 0.3s ease;
}

.metric-item:hover i {
    color: white;
}

.feature-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 10px;
    width: 0;
    animation: progressAnimation 2s ease-out forwards;
}

@keyframes progressAnimation {
    to {
        width: 98%;
    }
}

.progress-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
    white-space: nowrap;
}

.feature-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.feature-tag {
    padding: 0.3rem 0.8rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-size: 0.8rem;
    border-radius: 15px;
    font-weight: 500;
}

.features-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

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

.features-cta-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.btn-gradient {
    background: inherit;
}

@media (max-width: 768px) {
    .features-title {
        font-size: 2.2rem;
    }
    
    .feature-content-horizontal {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-card-wide .feature-icon-wrapper {
        margin-bottom: 1.5rem;
        width: auto;
    }
    
    .innovative-features {
        padding: 60px 0;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .features-cta {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .features-cta-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Block 3 */
.digital-transformation-2025 {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 50%, #2d1b69 100%);
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

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

.section-header {
    margin-bottom: 3rem;
    position: relative;
}

.year-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

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

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

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

.evolution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.primary-card {
    min-height: 500px;
}

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(138, 43, 226, 0.4) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

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

.overlay-content {
    width: 100%;
}

.card-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.card-description {
    font-size: 1.1rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.performance-metrics {
    display: flex;
    gap: 2rem;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #4fd1c7;
}

.metric-label {
    font-size: 0.9rem;
    color: #a0aec0;
}

.secondary-card {
    min-height: 180px;
    padding: 1.5rem;
}

.card-content-inline {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 100%;
}

.inline-image {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    object-fit: cover;
    flex-shrink: 0;
}

.inline-content {
    flex: 1;
}

.inline-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.inline-description {
    font-size: 0.95rem;
    color: #cbd5e0;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.capability-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag-item {
    background: rgba(79, 209, 197, 0.2);
    color: #4fd1c7;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(79, 209, 197, 0.3);
}

.data-stats {
    display: flex;
    gap: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #a0aec0;
}

.stat-item i {
    color: #b794f6;
}

.innovation-pillar {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.innovation-pillar:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
}

.pillar-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(183, 148, 246, 0.3);
    transition: all 0.3s ease;
}

.innovation-pillar:hover .pillar-icon {
    border-color: #b794f6;
    box-shadow: 0 0 30px rgba(183, 148, 246, 0.4);
}

.pillar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pillar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.pillar-text {
    color: #a0aec0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.pillar-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-point {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #e2e8f0;
}

.feature-point i {
    color: #4fd1c7;
    font-size: 1.1rem;
}

.transformation-showcase {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(30, 144, 255, 0.1) 100%);
    border-radius: 30px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.showcase-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.showcase-description {
    font-size: 1.1rem;
    color: #cbd5e0;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

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

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #4fd1c7;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #a0aec0;
}

.showcase-visual {
    position: relative;
}

.showcase-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-elements div {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #4fd1c7, #b794f6);
    opacity: 0.6;
    animation: float 3s ease-in-out infinite;
}

.element-1 {
    width: 20px;
    height: 20px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

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

.element-3 {
    width: 25px;
    height: 25px;
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

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

.showcase-action {
    text-align: center;
}

.transformation-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #ffffff;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

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

.transformation-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.transformation-cta:hover::before {
    left: 100%;
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .showcase-stats {
        justify-content: center;
    }
    
    .performance-metrics {
        justify-content: center;
    }
    
    .card-content-inline {
        flex-direction: column;
        text-align: center;
    }
    
    .inline-image {
        margin-bottom: 1rem;
    }
}

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

.order-form-2025::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: 
    radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(0, 255, 0, 0.05) 0%, transparent 50%);
pointer-events: none;
z-index: -1;
}

.form-container {
background: rgba(255, 255, 255, 0.02);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 24px;
padding: 3rem;
box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.header-visual {
position: relative;
margin-bottom: 2rem;
display: inline-block;
}

.header-image {
width: 120px;
height: 120px;
border-radius: 50%;
object-fit: cover;
border: 3px solid rgba(0, 255, 255, 0.5);
}

.visual-overlay {
position: relative;
top: -120px;
left: 0;
width: 120px;
height: 120px;
}

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

.pulse-ring.delayed {
animation-delay: 1s;
border-color: rgba(255, 0, 255, 0.4);
}

@keyframes pulse {
0% {
    width: 140px;
    height: 140px;
    opacity: 1;
}
100% {
    width: 200px;
    height: 200px;
    opacity: 0;
}
}

.form-title {
color: #ffffff;
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 1rem;
background: linear-gradient(45deg, #00ffff, #ff00ff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.form-subtitle {
color: rgba(255, 255, 255, 0.7);
font-size: 1.1rem;
margin-bottom: 0;
}

.input-group-container {
margin-bottom: 2rem;
}

.input-wrapper {
position: relative;
margin-bottom: 0.5rem;
}

.input-icon {
position: absolute;
top: 50%;
left: 1rem;
transform: translateY(-50%);
z-index: 2;
}

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

.form-input {
width: 100%;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 12px;
padding: 1rem 1rem 1rem 3.5rem;
color: #ffffff;
font-size: 1rem;
transition: all 0.3s ease;
}

.form-input::placeholder {
color: rgba(255, 255, 255, 0.5);
font-style: italic;
}

.form-input:focus {
outline: none;
border-color: rgba(0, 255, 255, 0.5);
background: rgba(255, 255, 255, 0.08);
}

.input-border {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 12px;
border: 2px solid transparent;
background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.3), transparent) border-box;
opacity: 0;
transition: opacity 0.3s ease;
pointer-events: none;
}

.form-input:focus + .input-border {
opacity: 1;
}

.input-glow {
position: absolute;
top: -2px;
left: -2px;
width: calc(100% + 4px);
height: calc(100% + 4px);
border-radius: 14px;
background: linear-gradient(45deg, #00ffff, #ff00ff);
filter: blur(10px);
opacity: 0;
transition: opacity 0.3s ease;
pointer-events: none;
z-index: -1;
}

.form-input:focus ~ .input-glow {
opacity: 0.3;
}

.input-meta {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 0.5rem;
}

.meta-label {
color: rgba(255, 255, 255, 0.6);
font-size: 0.85rem;
}

.verification-status,
.security-indicator,
.connection-status {
display: flex;
align-items: center;
gap: 0.3rem;
color: #00ff88;
font-size: 0.8rem;
}

.form-actions {
margin: 3rem 0 2rem 0;
text-align: center;
}

.submit-btn {
position: relative;
background: none;
border: none;
padding: 0;
cursor: pointer;
transition: transform 0.3s ease;
}

.submit-btn:hover {
transform: scale(1.02);
}

.btn-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(45deg, #00ffff, #ff00ff, #00ff88);
border-radius: 16px;
opacity: 0.8;
transition: opacity 0.3s ease;
}

.submit-btn:hover .btn-background {
opacity: 1;
}

.btn-content {
position: relative;
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
padding: 1.2rem 3rem;
background: rgba(0, 0, 0, 0.3);
backdrop-filter: blur(10px);
border-radius: 16px;
margin: 2px;
}

.btn-text {
color: #ffffff;
font-size: 1.1rem;
font-weight: 600;
}

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

.btn-particles {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
height: 100%;
pointer-events: none;
}

.particle {
position: absolute;
width: 4px;
height: 4px;
background: #00ffff;
border-radius: 50%;
opacity: 0;
}

.submit-btn:hover .particle {
animation: particleFloat 1.5s ease-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { top: 20%; right: 20%; animation-delay: 0.3s; }
.particle:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 0.6s; }
.particle:nth-child(4) { bottom: 20%; right: 20%; animation-delay: 0.9s; }

@keyframes particleFloat {
0% {
    transform: translateY(0);
    opacity: 0;
}
50% {
    opacity: 1;
}
100% {
    transform: translateY(-20px);
    opacity: 0;
}
}

.processing-indicators {
display: flex;
justify-content: center;
gap: 2rem;
margin-top: 2rem;
flex-wrap: wrap;
}

.indicator-item {
display: flex;
align-items: center;
gap: 0.5rem;
color: rgba(255, 255, 255, 0.8);
font-size: 0.9rem;
}

.indicator-image {
width: 20px;
height: 20px;
filter: brightness(0) invert(1);
opacity: 0.8;
}

.form-footer {
margin-top: 3rem;
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-signals {
display: flex;
justify-content: center;
gap: 3rem;
flex-wrap: wrap;
}

.trust-item {
display: flex;
align-items: center;
gap: 0.5rem;
color: rgba(255, 255, 255, 0.7);
font-size: 0.9rem;
}

.trust-item i {
color: #00ff88;
}

@media (max-width: 768px) {
.order-form-2025 {
    padding: 3rem 0;
}

.form-container {
    margin: 0 1rem;
    padding: 2rem;
}

.form-title {
    font-size: 2rem;
}

.processing-indicators {
    gap: 1rem;
}

.indicator-item {
    font-size: 0.8rem;
}

.trust-signals {
    gap: 1.5rem;
}

.trust-item {
    font-size: 0.8rem;
}

.btn-content {
    padding: 1rem 2rem;
    gap: 0.5rem;
}

.btn-text {
    font-size: 1rem;
}
}
