/* ===== СЕКЦИЯ АРХИТЕКТУРА ===== */
.architecture-section {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.architecture-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.architecture-text-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 430px;
    height: 350px;
    gap: 20px;
    background: hsla(0, 0%, 100%, .1);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    border-radius: 30px;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(22, 65, 98, .05), inset 0 1px 0 hsla(0, 0%, 100%, .2);
    padding: 40px;
}

.architecture-title {
    font-family: 'Manrope', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.architecture-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.architecture-description {
    font-family: 'Manrope', sans-serif;
    font-size: 11pt;
    font-weight: 400;
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
}

.architecture-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #17a2b8;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.architecture-btn:hover {
    background: #138496;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.4);
}

/* Фоновое изображение */
.architecture-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}