.decimo-page {
    background: #f4f7fb;
    color: #233143;
}

.decimo-hero {
    background: linear-gradient(135deg, #003087 0%, #0f6f96 100%);
    color: #ffffff;
    padding: 58px 0 48px;
}

.decimo-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    align-items: end;
}

.decimo-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 28px;
    border-radius: 6px;
    background: #1fd0bf;
    color: #002750;
    padding: 5px 10px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
    text-decoration: none;
}

.decimo-hero h1 {
    max-width: 720px;
    margin: 22px 0 14px;
    color: #ffffff;
    font-size: clamp(2.15rem, 4vw, 4rem);
    font-weight: 900;
    line-height: 1.04;
}

.decimo-hero p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1rem, 2vw, 1.22rem);
    line-height: 1.55;
}

.decimo-hero__summary {
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    padding: 20px;
    box-shadow: 0 20px 45px rgba(0, 24, 58, 0.2);
}

.decimo-hero__summary strong,
.decimo-hero__summary span,
.decimo-hero__summary small {
    display: block;
}

.decimo-hero__summary strong {
    color: #ffd166;
    font-size: 0.86rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.decimo-hero__summary span {
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 8px;
}

.decimo-hero__summary small {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.78rem;
    line-height: 1.45;
}

.decimo-tool {
    padding: 42px 0 34px;
}

.decimo-tool__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    gap: 24px;
    align-items: start;
}

.decimo-form,
.decimo-results,
.decimo-info article {
    border: 1px solid #dde5ef;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(13, 35, 62, 0.08);
}

.decimo-form {
    padding: 24px;
}

.decimo-form__header {
    margin-bottom: 20px;
}

.decimo-form__header h2,
.decimo-info h2 {
    color: #003087;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.2;
}

.decimo-form__header p {
    color: #667085;
    font-size: 0.9rem;
    margin-top: 4px;
}

.decimo-form__fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.decimo-field {
    display: grid;
    gap: 6px;
}

.decimo-field span {
    color: #233143;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.decimo-field input,
.decimo-field select {
    width: 100%;
    min-height: 44px;
    border: 1px solid #cfd8e3;
    border-radius: 8px;
    background: #ffffff;
    color: #172334;
    font: inherit;
    font-size: 0.94rem;
    outline: none;
    padding: 10px 12px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.decimo-field input:focus,
.decimo-field select:focus {
    border-color: #0f6f96;
    box-shadow: 0 0 0 3px rgba(15, 111, 150, 0.14);
}

.decimo-field input:disabled {
    background: #eef2f6;
    color: #8792a2;
}

.decimo-form__note {
    margin-top: 16px;
    border-left: 4px solid #e8a000;
    padding: 10px 12px;
    background: #fff7e6;
    color: #596575;
    font-size: 0.82rem;
    line-height: 1.45;
}

.decimo-results {
    position: sticky;
    top: 92px;
    overflow: hidden;
}

.decimo-results__top {
    background: #003087;
    color: #ffffff;
    padding: 24px;
}

.decimo-results__top span,
.decimo-results__top small {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.decimo-results__top strong {
    display: block;
    margin: 6px 0 4px;
    color: #ffd166;
    font-size: clamp(1.8rem, 4vw, 2.55rem);
    font-weight: 900;
    line-height: 1.1;
}

.decimo-results__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: #e7edf5;
}

.decimo-result {
    min-height: 92px;
    display: grid;
    align-content: center;
    gap: 5px;
    background: #ffffff;
    padding: 16px;
}

.decimo-result span,
.decimo-breakdown span {
    color: #667085;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.decimo-result strong,
.decimo-breakdown strong {
    color: #172334;
    font-size: 1.04rem;
    font-weight: 900;
}

.decimo-breakdown {
    display: grid;
    gap: 10px;
    padding: 18px 20px 22px;
}

.decimo-breakdown p {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px dashed #d9e1eb;
    padding-bottom: 9px;
}

.decimo-breakdown p:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.decimo-info {
    padding: 0 0 58px;
}

.decimo-info__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
}

.decimo-info article {
    padding: 24px;
}

.decimo-info ol {
    display: grid;
    gap: 10px;
    margin: 16px 0 0 22px;
    color: #4b5565;
}

.decimo-sources {
    display: grid;
    gap: 12px;
    align-content: start;
}

.decimo-sources a {
    display: block;
    border-bottom: 1px solid #e3e9f1;
    color: #0f6f96;
    font-size: 0.9rem;
    font-weight: 800;
    padding-bottom: 10px;
    text-decoration: none;
}

.decimo-sources a:hover {
    color: #e8a000;
}

@media (max-width: 980px) {
    .decimo-hero__grid,
    .decimo-tool__grid,
    .decimo-info__grid {
        grid-template-columns: 1fr;
    }

    .decimo-results {
        position: static;
    }
}

@media (max-width: 640px) {
    .decimo-hero {
        padding: 38px 0 34px;
    }

    .decimo-form {
        padding: 18px;
    }

    .decimo-form__fields,
    .decimo-results__grid {
        grid-template-columns: 1fr;
    }

    .decimo-result {
        min-height: 76px;
    }

    .decimo-breakdown p {
        display: grid;
        gap: 2px;
    }
}
