/* =========================================
   GharMetrix - Main Styles
   ========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f8fa;
    color: #172033;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}


/* =========================================
   HEADER
   ========================================= */

.header {
    background: #ffffff;
    border-bottom: 1px solid #e8ebef;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #172033;
    color: #ffffff;
    font-size: 21px;
    font-weight: 800;
}

.logo-highlight {
    color: #e76f24;
}

nav {
    display: flex;
    gap: 28px;
}

nav a {
    font-size: 14px;
    font-weight: 600;
    color: #566070;
    transition: 0.2s;
}

nav a:hover {
    color: #e76f24;
}


/* =========================================
   HERO
   ========================================= */

.hero {
    background: #ffffff;
    padding: 90px 0 100px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 70px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 7px 13px;
    border-radius: 30px;
    background: #fff3eb;
    color: #d45e1b;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.08;
    letter-spacing: -2.5px;
    margin-bottom: 25px;
}

.hero h1 span {
    color: #e76f24;
}

.hero-text > p {
    max-width: 620px;
    color: #667085;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
}


/* =========================================
   BUTTONS
   ========================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    padding: 14px 21px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.btn-primary {
    background: #e76f24;
    color: #ffffff;
}

.btn-primary:hover {
    background: #cf5d17;
    transform: translateY(-1px);
}

.btn-secondary {
    background: #ffffff;
    color: #172033;
    border: 1px solid #dfe3e8;
}

.btn-secondary:hover {
    border-color: #b8bec7;
}


/* =========================================
   HERO CARD
   ========================================= */

.hero-card {
    background: #172033;
    color: #ffffff;
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 25px 60px rgba(23, 32, 51, 0.16);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #cbd2dc;
    font-size: 13px;
    margin-bottom: 35px;
}

.card-top span:first-child {
    font-size: 27px;
}

.estimate-title {
    color: #aeb7c5;
    font-size: 14px;
    margin-bottom: 6px;
}

.estimate-price {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -1px;
}

.estimate-small {
    color: #8e99a9;
    font-size: 12px;
    margin-top: 4px;
}

.progress-row {
    display: flex;
    justify-content: space-between;
    color: #aeb7c5;
    font-size: 12px;
    margin-top: 30px;
    margin-bottom: 8px;
}

.progress {
    height: 7px;
    border-radius: 20px;
    background: #303b4d;
    overflow: hidden;
}

.progress div {
    width: 72%;
    height: 100%;
    background: #e76f24;
    border-radius: 20px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 30px;
}

.hero-stats div {
    background: #202b3e;
    border-radius: 12px;
    padding: 13px;
}

.hero-stats strong {
    display: block;
    font-size: 16px;
}

.hero-stats small {
    display: block;
    color: #8e99a9;
    font-size: 11px;
    margin-top: 3px;
}


/* =========================================
   SECTION HEADING
   ========================================= */

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 45px;
}

.section-heading > span {
    color: #e76f24;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.section-heading h2 {
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: -1px;
    margin: 10px 0 13px;
}

.section-heading p {
    color: #707887;
}


/* =========================================
   FEATURES
   ========================================= */

.features {
    padding: 100px 0;
    background: #f7f8fa;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: #ffffff;
    padding: 30px;
    border: 1px solid #e7e9ed;
    border-radius: 16px;
    transition: 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(20, 30, 45, 0.07);
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #fff3eb;
    font-size: 24px;
    margin-bottom: 22px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-card p {
    color: #707887;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-card a {
    color: #e76f24;
    font-weight: 700;
    font-size: 14px;
}


/* =========================================
   CALCULATOR
   ========================================= */

.calculator-section {
    padding: 100px 0;
    background: #ffffff;
}

.calculator-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 35px;
    background: #f7f8fa;
    border: 1px solid #e3e6eb;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(20, 30, 45, 0.05);
}

.input-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.input-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #343c4b;
}

.input-group input,
.input-group select {
    width: 100%;
    height: 50px;
    padding: 0 14px;
    border: 1px solid #d9dde4;
    border-radius: 10px;
    background: #ffffff;
    color: #172033;
    font-size: 14px;
    outline: none;
    transition: 0.2s;
}

.input-group input:focus,
.input-group select:focus {
    border-color: #e76f24;
    box-shadow: 0 0 0 3px rgba(231, 111, 36, 0.08);
}

.calculate-btn {
    margin-top: 25px;
    width: 100%;
    height: 52px;
}


/* =========================================
   CALCULATOR RESULT
   ========================================= */

.calculator-result {
    margin-top: 30px;
}

.hidden {
    display: none;
}


/* =========================================
   RESULT SUMMARY
   ========================================= */

.result-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.result-card {
    background: #ffffff;
    border: 1px solid #e1e5ea;
    border-radius: 14px;
    padding: 20px;
}

.result-card span {
    display: block;
    color: #747d8b;
    font-size: 12px;
    margin-bottom: 7px;
}

.result-card strong {
    display: block;
    color: #172033;
    font-size: 24px;
    letter-spacing: -0.5px;
}

.result-card-main {
    grid-column: 1 / -1;
    background: #172033;
    border-color: #172033;
}

.result-card-main span {
    color: #aeb7c5;
}

.result-card-main strong {
    color: #ffffff;
    font-size: 34px;
}


/* =========================================
   COST BREAKDOWN
   ========================================= */

.cost-breakdown {
    background: #ffffff;
    border: 1px solid #e1e5ea;
    border-radius: 16px;
    overflow: hidden;
}

.breakdown-header {
    padding: 24px;
    border-bottom: 1px solid #e8ebef;
}

.breakdown-header h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.breakdown-header p {
    color: #7a8290;
    font-size: 12px;
}


/* Individual rows */

.breakdown-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 24px;
    border-bottom: 1px solid #edf0f3;
}

.breakdown-row span {
    color: #4e5868;
    font-size: 14px;
}

.breakdown-row strong {
    color: #172033;
    font-size: 14px;
}


/* Final total */

.breakdown-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    background: #fff3eb;
}

.breakdown-total span {
    color: #172033;
    font-weight: 800;
    font-size: 15px;
}

.breakdown-total strong {
    color: #e76f24;
    font-size: 23px;
}


/* =========================================
   CALCULATOR NOTE
   ========================================= */

.calculator-note {
    margin-top: 15px;
    padding: 15px 17px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #e3e6eb;
    color: #737c89;
    font-size: 11px;
    line-height: 1.7;
}

.calculator-note strong {
    color: #4a5361;
}


/* =========================================
   MOBILE CALCULATOR
   ========================================= */

@media (max-width: 600px) {

    .calculator-box {
        padding: 20px;
    }

    .input-grid {
        grid-template-columns: 1fr;
    }

    .result-summary {
        grid-template-columns: 1fr;
    }

    .result-card-main {
        grid-column: auto;
    }

    .result-card-main strong {
        font-size: 28px;
    }

    .breakdown-row {
        padding: 15px 17px;
    }

    .breakdown-row span {
        font-size: 13px;
    }

    .breakdown-total {
        padding: 19px 17px;
    }
}


/* =========================================
   QUOTE CHECKER
   ========================================= */

.quote-section {
    padding: 100px 0;
    background: #f7f8fa;
}

.quote-box {
    background: #172033;
    color: #ffffff;
    border-radius: 22px;
    padding: 55px;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.quote-text > span {
    color: #e76f24;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.quote-text h2 {
    font-size: 38px;
    line-height: 1.2;
    margin: 12px 0 18px;
}

.quote-text p {
    color: #b9c1ce;
    line-height: 1.8;
    margin-bottom: 25px;
}

.upload-placeholder {
    min-height: 250px;
    border: 1px dashed #586579;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #202b3e;
}

.upload-icon {
    font-size: 38px;
    margin-bottom: 12px;
}

.upload-placeholder h3 {
    font-size: 17px;
}

.upload-placeholder p {
    color: #929dad;
    font-size: 12px;
    margin: 5px 0 15px;
}

.coming-soon {
    padding: 5px 10px;
    border-radius: 20px;
    background: #303b4d;
    color: #c2c9d4;
    font-size: 11px;
}


/* =========================================
   PROFESSIONALS
   ========================================= */

.professionals {
    padding: 100px 0;
    background: #ffffff;
}


/* =========================================
   TRUST
   ========================================= */

.trust-section {
    padding: 35px 0;
    background: #f7f8fa;
    border-top: 1px solid #e6e8ec;
    border-bottom: 1px solid #e6e8ec;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-grid div {
    padding: 10px;
}

.trust-grid strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.trust-grid span {
    display: block;
    color: #747d8b;
    font-size: 12px;
}


/* =========================================
   FOOTER
   ========================================= */

footer {
    background: #ffffff;
    padding-top: 45px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 35px;
}

.footer-content p {
    color: #7a8290;
    font-size: 12px;
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 22px;
}

.footer-links a {
    color: #697281;
    font-size: 13px;
}

.footer-links a:hover {
    color: #e76f24;
}

.footer-bottom {
    border-top: 1px solid #e7e9ed;
    text-align: center;
    padding: 18px;
    color: #8a919c;
    font-size: 12px;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 850px) {

    nav {
        display: none;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .hero h1 {
        font-size: 45px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .quote-box {
        grid-template-columns: 1fr;
        padding: 35px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 600px) {

    .hero h1 {
        font-size: 38px;
    }

    .hero-text > p {
        font-size: 16px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .input-grid {
        grid-template-columns: 1fr;
    }

    .calculator-box {
        padding: 22px;
    }

    .calculator-result {
        grid-template-columns: 1fr;
    }

    .quote-text h2 {
        font-size: 30px;
    }

    .hero-stats {
        gap: 7px;
    }

    .hero-stats div {
        padding: 10px;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }
} /* =========================================
   MATERIAL ESTIMATE
   ========================================= */

.materials-section {
    padding: 100px 0;
    background: #f7f8fa;
}

.material-box {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e3e6eb;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 45px rgba(20, 30, 45, 0.05);
}

.material-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.material-header h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.material-header p {
    color: #7a8290;
    font-size: 12px;
}

.material-badge {
    padding: 6px 11px;
    border-radius: 20px;
    background: #fff3eb;
    color: #d45e1b;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.material-input {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: end;
}

.material-input label {
    grid-column: 1 / -1;
    font-size: 13px;
    font-weight: 700;
    color: #343c4b;
    margin-bottom: -5px;
}

.material-input input {
    height: 50px;
    padding: 0 14px;
    border: 1px solid #d9dde4;
    border-radius: 10px;
    outline: none;
    font-size: 14px;
}

.material-input input:focus {
    border-color: #e76f24;
    box-shadow: 0 0 0 3px rgba(231, 111, 36, 0.08);
}

.material-input .btn {
    height: 50px;
}

.material-result {
    margin-top: 30px;
}

.material-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.material-card {
    padding: 20px 15px;
    background: #f7f8fa;
    border: 1px solid #e5e8ec;
    border-radius: 14px;
    text-align: center;
}

.material-icon {
    font-size: 25px;
    margin-bottom: 10px;
}

.material-card span {
    display: block;
    color: #596272;
    font-size: 12px;
    font-weight: 600;
}

.material-card strong {
    display: block;
    color: #172033;
    font-size: 18px;
    margin: 7px 0 3px;
}

.material-card small {
    color: #929aa6;
    font-size: 10px;
}

.material-note {
    margin-top: 18px;
    padding: 15px 17px;
    background: #fffaf6;
    border: 1px solid #f2dfd0;
    border-radius: 10px;
    color: #737c89;
    font-size: 11px;
    line-height: 1.7;
}

.material-note strong {
    color: #4a5361;
}


/* Mobile */

@media (max-width: 800px) {

    .material-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .material-box {
        padding: 20px;
    }

    .material-header {
        flex-direction: column;
    }

    .material-input {
        grid-template-columns: 1fr;
    }

    .material-input .btn {
        width: 100%;
    }

    .material-grid {
        grid-template-columns: 1fr 1fr;
    }

} /* =========================================
   AI QUOTE CHECKER
   ========================================= */

.quote-section {
    padding: 100px 0;
    background: #172033;
}

.quote-section .section-heading > span {
    color: #e76f24;
}

.quote-section .section-heading h2 {
    color: #ffffff;
}

.quote-section .section-heading p {
    color: #aeb7c5;
}

.quote-checker {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}


/* LEFT PANEL */

.quote-input-panel {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
}

.quote-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.quote-panel-header h3 {
    font-size: 21px;
    margin-bottom: 5px;
}

.quote-panel-header p {
    color: #7a8290;
    font-size: 12px;
}

.ai-badge {
    background: #fff3eb;
    color: #d45e1b;
    padding: 7px 11px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}


/* INPUTS */

.quote-input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.quote-items-title {
    margin: 25px 0 12px;
    font-size: 14px;
}

.quote-item {
    display: grid;
    grid-template-columns: 1fr 120px;
    align-items: center;
    gap: 15px;
    padding: 13px 0;
    border-bottom: 1px solid #edf0f3;
}

.quote-item strong {
    display: block;
    font-size: 13px;
}

.quote-item small {
    display: block;
    color: #89919d;
    font-size: 10px;
    margin-top: 2px;
}

.quote-item input {
    width: 100%;
    height: 40px;
    border: 1px solid #d9dde4;
    border-radius: 8px;
    padding: 0 10px;
    outline: none;
}

.quote-item input:focus {
    border-color: #e76f24;
}

.quote-check-btn {
    width: 100%;
    margin-top: 25px;
}


/* RIGHT PANEL */

.quote-result-panel {
    background: #202b3e;
    border-radius: 18px;
    padding: 30px;
    color: #ffffff;
    min-height: 500px;
}

.result-placeholder {
    height: 100%;
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.large-ai-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.result-placeholder h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.result-placeholder p {
    max-width: 300px;
    color: #9da7b6;
    font-size: 13px;
}


/* RESULTS */

.quote-results {
    animation: quoteFadeIn 0.3s ease;
}

@keyframes quoteFadeIn {

    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.quote-score {
    padding-bottom: 20px;
    border-bottom: 1px solid #344154;
}

.quote-score span {
    display: block;
    color: #9da7b6;
    font-size: 12px;
    margin-bottom: 5px;
}

.quote-score strong {
    font-size: 32px;
}


/* STATUS */

.review-status {
    display: flex;
    gap: 13px;
    align-items: center;
    margin: 22px 0;
    padding: 15px;
    background: #283549;
    border-radius: 12px;
}

.status-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e76f24;
    color: #ffffff;
    border-radius: 50%;
    font-weight: 800;
}

.review-status strong {
    font-size: 14px;
}

.review-status p {
    color: #aeb7c5;
    font-size: 11px;
    margin-top: 3px;
}


/* REVIEW LIST */

.review-list {
    margin-top: 25px;
}

.review-list h4,
.contractor-questions h4 {
    font-size: 14px;
    margin-bottom: 12px;
}

.review-item {
    display: flex;
    gap: 10px;
    padding: 9px 0;
}

.review-item span {
    color: #e76f24;
    font-weight: 800;
}

.review-item p {
    color: #c0c7d1;
    font-size: 12px;
}


/* QUESTIONS */

.contractor-questions {
    margin-top: 25px;
    padding: 18px;
    background: #283549;
    border-radius: 12px;
}

.contractor-questions ul {
    padding-left: 18px;
}

.contractor-questions li {
    color: #bfc7d2;
    font-size: 11px;
    margin-bottom: 8px;
}


/* DISCLAIMER */

.quote-disclaimer {
    max-width: 850px;
    margin: 18px auto 0;
    padding: 15px 18px;
    background: #202b3e;
    border: 1px solid #344154;
    border-radius: 10px;
    color: #9da7b6;
    font-size: 11px;
    line-height: 1.7;
}

.quote-disclaimer strong {
    color: #d2d7df;
}


/* MOBILE */

@media (max-width: 800px) {

    .quote-checker {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 600px) {

    .quote-input-panel,
    .quote-result-panel {
        padding: 20px;
    }

    .quote-input-grid {
        grid-template-columns: 1fr;
    }

    .quote-item {
        grid-template-columns: 1fr 100px;
    }

} 
/* =========================================
   QUOTE CHECKER - TEXT OVERFLOW FIX
   ========================================= */

.quote-result-panel {
    min-width: 0;
    overflow: hidden;
}

.quote-results {
    width: 100%;
    min-width: 0;
}

.quote-score {
    min-width: 0;
}

.quote-score strong {
    display: block;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.review-status {
    min-width: 0;
}

.review-status > div:last-child {
    min-width: 0;
    flex: 1;
}

.review-status strong {
    display: block;
    line-height: 1.4;
    white-space: normal;
    overflow-wrap: anywhere;
}

.review-status p {
    line-height: 1.5;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.review-list {
    min-width: 0;
}

.review-item {
    align-items: flex-start;
}

.review-item p {
    flex: 1;
    min-width: 0;
    line-height: 1.6;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contractor-questions {
    min-width: 0;
}

.contractor-questions li {
    line-height: 1.6;
    overflow-wrap: anywhere;
    word-break: break-word;
}


/* Better mobile behaviour */

@media (max-width: 800px) {

    .quote-checker {
        grid-template-columns: 1fr;
    }

    .quote-result-panel {
        min-height: auto;
    }

}


@media (max-width: 480px) {

    .quote-panel-header {
        flex-direction: column;
    }

    .quote-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .quote-item input {
        width: 100%;
    }

    .quote-score strong {
        font-size: 26px;
    }

} /* =========================================
   QUOTE CHECK BUTTON FIX
   ========================================= */

.quote-check-btn {
    display: flex;
    width: 100%;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    margin-top: 25px;

    background: #e76f24;
    color: #ffffff;

    border: none;
    border-radius: 10px;

    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;

    cursor: pointer;
    white-space: normal;
    overflow: visible;
}

.quote-check-btn:hover {
    background: #cf5d17;
}