.arch-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1180px;
    margin: 0 auto;
    padding: 60px 20px;
    gap: 50px;
    font-family: "Inter", sans-serif;
}

/* LEFT */
.arch-left {
    flex: 1;
}

.arch-eyebrow {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 8px;
}

.arch-title {
    font-size: 42px;
    font-weight: 800;
    color: #0e1325;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.arch-desc {
    font-size: 16px;
    color: #616777;
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 40px;
}

/* STATS */
.arch-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    gap: 30px 50px;
}

.arch-stat {
    position: relative;
}

.arch-divider {
    width: 40px;
    height: 2px;
    background-color: #09b884;
    margin-bottom: 12px;
}

.arch-stat-number {
    font-size: 20px;
    font-weight: 700;
    color: #0e1325;
    margin: 0 0 6px 0;
}

.arch-stat-text {
    font-size: 14px;
    line-height: 1.5;
    color: #616777;
    margin: 0;
}

/* RIGHT */
.arch-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.arch-figure {
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
}

.arch-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
    .arch-container {
        flex-direction: column;
        text-align: center;
    }

    .arch-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .arch-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
