main.hire-page {
    min-height: 100vh;
    padding: 40px 16px;
    background: #f4f8fc;
    display: flex;
    justify-content: center;
    font-family: var(--font-family, system-ui, sans-serif);
}

.hire-card {
    width: 100%;
    max-width: 760px;
    background: #fff;
    border: 1px solid #dbe7f3;
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 18px 50px rgba(10, 35, 66, 0.08);
}

.hire-header {
    margin-bottom: 28px;
}

.hire-header span {
    display: inline-block;
    color: #087dcc;
    font-weight: 800;
    margin-bottom: 10px;
}

.hire-header h1 {
    margin: 0 0 8px;
    color: #00194f;
    font-size: 30px;
}

.hire-header p {
    margin: 0;
    color: #42526b;
}

.hire-form {
    display: grid;
    gap: 20px;
}

.hire-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.hire-field {
    display: grid;
    gap: 8px;
}

.hire-field label {
    font-weight: 800;
    color: #00194f;
}

.hire-field input,
.hire-field select {
    width: 100%;
    height: 50px;
    border: 1px solid #cfddea;
    border-radius: 12px;
    padding: 0 14px;
    font-size: 16px;
    color: #00194f;
    background: #fff;
    box-sizing: border-box;
}

.hire-field small {
    color: #66758c;
    font-size: 13px;
}

.hire-btn {
    justify-self: center;
    min-width: 220px;
    height: 52px;
    border: 0;
    border-radius: 12px;
    background: #087dcc;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
}

.hire-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.hire-message {
    padding: 14px 16px;
    border-radius: 12px;
    font-weight: 700;
}

.hire-message.is-error {
    background: #fff1f1;
    color: #a40000;
    border: 1px solid #ffd1d1;
}

.hire-hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.hire-card-small {
    max-width: 620px;
}

.verify-form {
    display: grid;
    gap: 24px;
}

.verify-code-group {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.verify-code-input {
    width: 58px;
    height: 68px;
    border: 1px solid #cfddea;
    border-radius: 14px;
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    color: #00194f;
}

.verify-code-input:focus {
    outline: none;
    border-color: #087dcc;
    box-shadow: 0 0 0 3px rgba(8, 125, 204, 0.15);
}
.hire-calculation-page {
    padding-top: 60px;
    padding-bottom: 80px;
}

.hire-calculation-result {
    margin-top: 28px;
    padding: 24px;
    border-radius: 18px;
    background: #f7fbff;
    border: 1px solid #dcecff;
}

.hire-calculation-result strong {
    display: block;
    margin-bottom: 10px;
    color: #00194f;
    font-size: 28px;
    font-weight: 800;
}

.hire-calculation-result span {
    display: block;
    color: #42526b;
    line-height: 1.5;
}

.hire-summary-page {
    padding-top: 60px;
    padding-bottom: 80px;
    background: #f4f8fc;
}

.hire-summary-card {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #dbe7f3;
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 18px 50px rgba(10, 35, 66, 0.08);
}

.hire-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 30px;
}

.hire-summary-item {
    padding: 18px;
    border-radius: 16px;
    background: #f7fbff;
    border: 1px solid #dcecff;
}

.hire-summary-item strong {
    display: block;
    margin-bottom: 8px;
    color: #00194f;
    font-weight: 800;
}

.hire-summary-item span {
    color: #42526b;
}

.hire-summary-total {
    grid-column: 1 / -1;
    background: #eef8ff;
}

.hire-summary-total span {
    font-size: 28px;
    font-weight: 800;
    color: #087dcc;
}

.hire-summary-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.hire-final-card {
    text-align: center;
}

.hire-final-info {
    margin: 28px 0;
    color: #42526b;
    line-height: 1.6;
}
.price-result-top {
    text-align: center;
    margin-bottom: 26px;
}

.price-result-top h3 {
    margin: 0 0 12px;
    color: #00194f;
    font-size: 42px;
    line-height: 1.05;
}

.price-result-top p {
    margin: 0;
    color: #5d6d86;
    font-size: 18px;
    line-height: 1.5;
}

.price-summary-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.price-summary-item {
    padding: 20px;
    border-radius: 16px;
    background: #f8fbff;
    border: 1px solid #dfe7f0;
}

.price-summary-item-large {
    grid-column: span 3;
}

.price-summary-item-small {
    grid-column: span 2;
}

.price-summary-item strong {
    display: block;
    margin-bottom: 8px;
    color: #0079c8;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.price-summary-item span {
    display: block;
    color: #0d1846;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

.price-total-box {
    margin-top: 24px;
    padding: 34px 24px;
    border-radius: 22px;
    background: #087dcc;
    text-align: center;
}

.price-total-box small {
    display: block;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-total-box strong {
    display: block;
    color: #fff;
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
}
@media (max-width: 768px) {
    .hire-card {
        padding: 24px 18px;
    }

    .hire-grid {
        grid-template-columns: 1fr;
    }

    .hire-header h1 {
        font-size: 25px;
    }
    .verify-code-input {
        width: 48px;
        height: 58px;
        font-size: 24px;
    }
    .hire-calculation-result {
        padding: 18px;
    }

    .hire-calculation-result strong {
        font-size: 24px;
    }
    .hire-summary-card {
        padding: 24px 18px;
    }

    .hire-summary-grid {
        grid-template-columns: 1fr;
    }

    .hire-summary-actions {
        flex-direction: column;
    }

    .hire-summary-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hire-summary-total span {
        font-size: 24px;
    }
    .price-result-top h3 {
        font-size: 34px;
    }

    .price-result-top p {
        font-size: 16px;
    }

    .price-summary-grid {
        grid-template-columns: 1fr;
    }

    .price-summary-item-large,
    .price-summary-item-small {
        grid-column: span 1;
    }

    .price-total-box strong {
        font-size: 48px;
    }
}
