/* Technologies & Guarantees Section */
.technologies-section {
    padding: 100px 0;
    background: var(--pure-black);
    position: relative;
    /* Auto height - content based */
    min-height: auto;
}

.technologies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.3), rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.3), transparent);
}

.technologies-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.technologies-header {
    text-align: center;
    margin-bottom: 60px;
}

.technologies-header h2 {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(37, 99, 235, 0.9), rgba(59, 130, 246, 0.85), rgba(37, 99, 235, 0.9), rgba(255, 255, 255, 0.95));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.technologies-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.technology-card {
    background: linear-gradient(135deg, rgba(26, 30, 40, 0.85), rgba(15, 20, 30, 0.95));
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    /* Auto height - content based */
    height: auto;
    min-height: auto;
}

.technology-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.4), rgba(59, 130, 246, 0.3), rgba(37, 99, 235, 0.4), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.technology-card:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(37, 99, 235, 0.15);
}

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

.technology-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(37, 99, 235, 0.8), rgba(59, 130, 246, 0.7));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.technology-card:hover .technology-icon {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(37, 99, 235, 0.5);
}

.technology-card h3 {
    color: rgba(37, 99, 235, 0.95);
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.technology-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.guarantees-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(37, 99, 235, 0.2);
}

.guarantees-header {
    text-align: center;
    margin-bottom: 50px;
}

.guarantees-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(37, 99, 235, 0.9), rgba(59, 130, 246, 0.85), rgba(37, 99, 235, 0.9), rgba(255, 255, 255, 0.95));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.guarantee-item {
    background: linear-gradient(135deg, rgba(26, 30, 40, 0.85), rgba(15, 20, 30, 0.95));
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    /* Auto height - content based */
    height: auto;
    min-height: auto;
}

.guarantee-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.4), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.guarantee-item:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(37, 99, 235, 0.1);
}

.guarantee-item:hover::before {
    transform: scaleX(1);
}

.guarantee-icon {
    font-size: 2.5rem;
    color: rgba(37, 99, 235, 0.9);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.guarantee-item:hover .guarantee-icon {
    transform: scale(1.15);
    color: rgba(59, 130, 246, 0.95);
}

.guarantee-item h4 {
    color: rgba(37, 99, 235, 0.95);
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.guarantee-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cta-technologies {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(37, 99, 235, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .technologies-section {
        padding: 60px 0;
    }
    
    .technologies-header h2 {
        font-size: 2rem;
    }
    
    .technologies-grid,
    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .guarantees-header h3 {
        font-size: 1.8rem;
    }
}

