.kata-quote-page {
    margin: 0;
    background: #f6f8fb;
    color: #182230;
    font-family: Roboto, Arial, sans-serif;
    overflow-x: hidden;
}

.kata-quote-main {
    min-height: 70vh;
}

.kata-quote-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.kata-quote-hero {
    padding: 88px 0 38px;
    background: linear-gradient(135deg, #ffffff 0%, #eef5ff 64%, #e8f2ff 100%);
    color: #fff;
    border-bottom: 1px solid #d8e3f1;
}

.kata-quote-eyebrow {
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    color: #008dd2;
}

.kata-quote-hero h1 {
    margin: 0 0 14px;
    color: #0e1726;
    font-size: 40px;
    line-height: 1.15;
}

.kata-quote-hero p {
    max-width: 860px;
    margin: 0;
    color: #344256;
    font-size: 17px;
    line-height: 1.6;
}

.kata-quote-hero a {
    color: #d94a1c;
    font-weight: 800;
    text-decoration: none;
}

.kata-quote-hero a:hover {
    text-decoration: underline;
}

.kata-quote-section {
    padding: 34px 0 56px;
}

.kata-quote-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    align-items: start;
}

.kata-quote-panel,
.kata-quote-note {
    background: #fff;
    border: 1px solid #dbe4ef;
    border-radius: 8px;
    padding: 26px;
    box-shadow: 0 18px 42px rgba(15, 37, 64, 0.07);
}

.kata-quote-panel h2,
.kata-quote-note h2 {
    margin: 0 0 18px;
    font-size: 22px;
    color: #0e1726;
}

.kata-quote-pricebox {
    margin: 0 0 24px;
    overflow: hidden;
    border: 1px solid #cfdceb;
    border-radius: 8px;
    background: #f8fbff;
}

.kata-quote-pricebox-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-bottom: 1px solid #d9e5f2;
    background: #eef6ff;
}

.kata-quote-pricebox-head span {
    color: #53657c;
    font-size: 13px;
    font-weight: 700;
}

.kata-quote-pricebox-head strong {
    color: #0e3f78;
    font-size: 16px;
}

.kata-quote-price-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.kata-quote-price-table th,
.kata-quote-price-table td {
    padding: 13px 16px;
    border-bottom: 1px solid #d9e5f2;
    border-left: 1px solid #d9e5f2;
    color: #0e1726;
    line-height: 1.35;
    vertical-align: middle;
}

.kata-quote-price-table th:first-child,
.kata-quote-price-table td:first-child {
    width: 22%;
    border-left: 0;
}

.kata-quote-price-table th {
    background: #f3f8fe;
    color: #334155;
    font-size: 13px;
    font-weight: 900;
    text-align: left;
}

.kata-quote-price-table td {
    font-size: 15px;
    font-weight: 800;
}

.kata-quote-price-table td:not(:first-child) {
    color: #d94a1c;
}

.kata-quote-price-note {
    margin: 12px 16px 14px;
    color: #53657c;
    font-size: 13px;
    line-height: 1.5;
}

.kata-quote-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.kata-quote-field {
    display: grid;
    gap: 7px;
}

.kata-quote-field label {
    font-weight: 700;
    font-size: 14px;
    color: #1f2d3d;
}

.kata-quote-input {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #c9d4e2;
    border-radius: 6px;
    background: #fff;
    color: #182230;
    padding: 11px 12px;
    font-size: 15px;
    font-family: inherit;
}

.kata-quote-input:focus {
    border-color: #008dd2;
    outline: 2px solid rgba(0, 141, 210, 0.15);
}

.kata-quote-choice,
.kata-quote-company,
.kata-quote-field:has(textarea),
.kata-quote-captcha,
.kata-quote-submit,
.kata-quote-message {
    grid-column: 1 / -1;
}

.kata-quote-choice {
    display: flex;
    gap: 22px;
    align-items: center;
    padding: 6px 0;
}

.kata-quote-is-hidden {
    display: none !important;
}

.kata-quote-company {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.kata-quote-hidden {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.kata-quote-submit {
    border: 0;
    border-radius: 6px;
    background: #ff5a2a;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    padding: 13px 18px;
    min-width: 220px;
    width: fit-content;
    box-shadow: 0 14px 26px rgba(255, 90, 42, 0.18);
}

.kata-quote-submit:hover {
    background: #e24b20;
}

.kata-quote-message {
    display: block;
    color: #c62828;
    font-weight: 700;
    line-height: 1.5;
}

.kata-quote-message:empty {
    display: none;
}

.kata-quote-note ul {
    margin: 0;
    padding-left: 20px;
    line-height: 1.7;
    color: #344256;
}

@media (max-width: 820px) {
    .kata-quote-page .kata-shared-actions {
        grid-template-columns: 76px minmax(0, 1fr);
    }

    .kata-quote-page .kata-shared-button,
    .kata-quote-page .kata-shared-button-primary {
        display: none;
    }

    .kata-quote-hero {
        padding: 70px 0 30px;
    }

    .kata-quote-hero h1 {
        max-width: 100%;
        font-size: 30px;
        overflow-wrap: anywhere;
    }

    .kata-quote-hero p {
        max-width: 100%;
        font-size: 16px;
        overflow-wrap: anywhere;
    }

    .kata-quote-pricebox-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .kata-quote-grid,
    .kata-quote-form,
    .kata-quote-company {
        grid-template-columns: 1fr;
    }

    .kata-quote-price-table th,
    .kata-quote-price-table td {
        padding: 11px 10px;
        font-size: 12px;
        overflow-wrap: anywhere;
    }

    .kata-quote-price-table td {
        font-size: 13px;
    }

    .kata-quote-panel,
    .kata-quote-note {
        padding: 20px;
    }

    .kata-quote-submit {
        width: 100%;
    }
}
