.the-system {
    padding: 80px 40px;
    background: var(--theme-palette-color-7, #FAF9F6);
    margin-bottom: 0;
}

.the-system__inner {
    max-width: 720px;
    margin: 0 auto;
}

.the-system__label {
    font-family: var(--fw-font-mono, 'JetBrains Mono', monospace);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    color: var(--theme-palette-color-1, #C8922A);
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 8px;
}

.the-system__title {
    font-family: var(--fw-font-serif, 'Lora', Georgia, serif);
    font-size: clamp(1.4rem, 3vw, 1.6rem);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    color: var(--theme-palette-color-3, #2D2D2D);
}

.the-system__desc {
    font-size: 0.92rem;
    color: var(--fw-text-secondary, #777777);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 540px;
}

.the-system__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.the-system__card {
    border-radius: 10px;
    padding: 24px 20px;
    text-align: center;
}

.the-system__dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin: 0 auto 12px;
}

.the-system__card-title {
    font-family: var(--fw-font-sans, 'Inter', sans-serif);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.the-system__card-desc {
    font-size: 0.78rem;
    color: var(--theme-palette-color-4, #555555);
    line-height: 1.5;
    margin: 0;
}

/* Green */
.the-system__card--green {
    background: #e8f5e9;
}
.the-system__card--green .the-system__dot {
    background: #2d8a4e;
}
.the-system__card--green .the-system__card-title {
    color: #1b5e20;
}

/* Yellow */
.the-system__card--yellow {
    background: #fff8e1;
}
.the-system__card--yellow .the-system__dot {
    background: #c49a1a;
}
.the-system__card--yellow .the-system__card-title {
    color: #8a6d14;
}

/* Red */
.the-system__card--red {
    background: #fbe9e7;
}
.the-system__card--red .the-system__dot {
    background: #c44a2d;
}
.the-system__card--red .the-system__card-title {
    color: #a8321e;
}

/* Blue */
.the-system__card--blue {
    background: #e3f2fd;
}
.the-system__card--blue .the-system__dot {
    background: #1976d2;
}
.the-system__card--blue .the-system__card-title {
    color: #0d47a1;
}

/* Purple */
.the-system__card--purple {
    background: #f3e5f5;
}
.the-system__card--purple .the-system__dot {
    background: #7b1fa2;
}
.the-system__card--purple .the-system__card-title {
    color: #4a148c;
}

@media (max-width: 768px) {
    .the-system {
        padding: 64px 20px;
    }

    .the-system__cards {
        grid-template-columns: 1fr;
    }
}
