/* ==========================================================
   HomeDen — Estimate Landing Page

   File:
   static/css/estimates/estimate_home.css
========================================================== */


/* ==========================================================
   Page Variables
========================================================== */

.estimate-home-page {
    --estimate-brand:
        var(--color-brand, #0f6e56);

    --estimate-brand-dark:
        #0b5946;

    --estimate-brand-deep:
        #084b3b;

    --estimate-brand-soft:
        #eaf5f1;

    --estimate-primary:
        var(--color-primary, #e07a3f);

    --estimate-primary-hover:
        var(--color-primary-hover, #c96932);

    --estimate-primary-soft:
        #fff4ec;

    --estimate-heading:
        var(--color-heading-primary, #1a1a1a);

    --estimate-subheading:
        var(--color-heading-secondary, #3d3d3d);

    --estimate-body:
        var(--color-body, #6b6b6b);

    --estimate-caption:
        var(--color-caption, #9a9a9a);

    --estimate-border:
        var(--color-border, #eaeaea);

    --estimate-border-strong:
        #d7dfdb;

    --estimate-page-background:
        var(--color-page-bg, #faf8f5);

    --estimate-surface:
        #ffffff;

    --estimate-surface-muted:
        #f7f8f7;

    --estimate-success:
        var(--color-success, #4c8c3c);

    --estimate-danger:
        var(--color-danger, #b5352e);

    --estimate-radius-small:
        9px;

    --estimate-radius-medium:
        15px;

    --estimate-radius-large:
        24px;

    --estimate-shadow-small:
        0 10px 28px rgba(26, 26, 26, 0.06);

    --estimate-shadow-medium:
        0 18px 48px rgba(26, 26, 26, 0.10);

    --estimate-shadow-large:
        0 26px 70px rgba(26, 26, 26, 0.13);

    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--estimate-page-background);
    color: var(--estimate-body);
}


/* ==========================================================
   Shared Container
========================================================== */

.estimate-home-page .container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}


/* ==========================================================
   Shared Section Heading
========================================================== */

.estimate-section-heading {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(300px, 0.8fr);
    align-items: end;
    gap: 50px;
    margin-bottom: 38px;
}

.estimate-section-heading > div > span,
.estimate-process-heading > span {
    display: block;
    margin-bottom: 10px;
    color: var(--estimate-brand);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.3px;
    line-height: 1.4;
    text-transform: uppercase;
}

.estimate-section-heading h2,
.estimate-process-heading h2,
.estimate-benefit-content h2,
.estimate-home-cta-content h2 {
    margin: 0;
    color: var(--estimate-heading);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 750;
    letter-spacing: -1.3px;
    line-height: 1.15;
}

.estimate-section-heading > p {
    max-width: 520px;
    margin: 0;
    color: var(--estimate-body);
    font-size: 15px;
    line-height: 1.8;
}


/* ==========================================================
   Hero Section
========================================================== */

.estimate-home-hero {
    position: relative;
    padding: 42px 0 88px;
    overflow: hidden;
    border-bottom: 1px solid
        rgba(15, 110, 86, 0.09);
}


.estimate-home-hero .container {
    position: relative;
    z-index: 2;
}


/* ==========================================================
   Breadcrumb
========================================================== */

.estimate-home-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 34px;
    color: var(--estimate-caption);
    font-size: 13px;
    line-height: 1.5;
}

.estimate-home-breadcrumb a {
    color: var(--estimate-brand);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.estimate-home-breadcrumb a:hover {
    color: var(--estimate-primary);
}

.estimate-home-breadcrumb span:last-child {
    color: var(--estimate-subheading);
}


/* ==========================================================
   Hero Layout
========================================================== */

.estimate-home-hero-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.22fr)
        minmax(360px, 0.78fr);
    align-items: center;
    gap: 62px;
}

.estimate-home-hero-content {
    max-width: 760px;
}

.estimate-home-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--estimate-brand);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
    line-height: 1.4;
    text-transform: uppercase;
}

.estimate-home-eyebrow::before {
    width: 35px;
    height: 2px;
    content: "";
    background: var(--estimate-primary);
    border-radius: 999px;
}

.estimate-home-hero-content h1 {
    max-width: 790px;
    margin: 0;
    color: var(--estimate-heading);
    font-size: clamp(40px, 5.7vw, 68px);
    font-weight: 760;
    letter-spacing: -2.4px;
    line-height: 1.04;
}

.estimate-home-hero-content > p {
    max-width: 700px;
    margin: 23px 0 0;
    color: var(--estimate-body);
    font-size: 17px;
    line-height: 1.8;
}


/* ==========================================================
   Hero Actions
========================================================== */

.estimate-home-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 30px;
}

.estimate-home-hero-actions a,
.estimate-home-cta-actions a {
    min-height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 21px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
    text-decoration: none;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.estimate-home-primary-button {
    background: var(--estimate-primary);
    border: 1px solid var(--estimate-primary);
    color: #ffffff;
    box-shadow:
        0 10px 24px
        rgba(224, 122, 63, 0.22);
}

.estimate-home-primary-button:hover {
    background: var(--estimate-primary-hover);
    border-color: var(--estimate-primary-hover);
    color: #ffffff;
    transform: translateY(-2px);
}

.estimate-home-secondary-button {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid
        rgba(15, 110, 86, 0.35);
    color: var(--estimate-brand);
}

.estimate-home-secondary-button:hover {
    background: var(--estimate-brand);
    border-color: var(--estimate-brand);
    color: #ffffff;
    transform: translateY(-2px);
}


/* ==========================================================
   Hero Trust Points
========================================================== */

.estimate-home-trust-points {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-top: 27px;
}

.estimate-home-trust-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--estimate-subheading);
    font-size: 13px;
    font-weight: 650;
}

.estimate-home-trust-points i {
    color: var(--estimate-success);
    font-size: 15px;
}


/* ==========================================================
   Hero Calculator Overview Card
========================================================== */

.estimate-home-hero-card {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid
        rgba(15, 110, 86, 0.14);
    border-radius: var(--estimate-radius-large);
    box-shadow: var(--estimate-shadow-large);
    backdrop-filter: blur(15px);
}

.estimate-home-hero-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 23px;
    background:
        linear-gradient(
            135deg,
            var(--estimate-brand),
            var(--estimate-brand-dark)
        );
}

.estimate-home-hero-card-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    background:
        rgba(255, 255, 255, 0.14);
    border: 1px solid
        rgba(255, 255, 255, 0.17);
    border-radius: 50%;
    color: #ffffff!important;
    font-size: 21px;
}

.estimate-home-hero-card-header small {
    display: block;
    margin-bottom: 3px;
    color:
        rgba(255, 255, 255, 0.70);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.estimate-home-hero-card-header .h2 {
    margin: 0;
    color: #ffffff !important;
    font-size: 20px;
    line-height: 1.35;
}

.estimate-home-hero-calculator-list {
    display: grid;
    padding: 9px 20px;
}

.estimate-home-hero-calculator-list > a {
    display: grid;
    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;
    align-items: center;
    gap: 13px;
    padding: 16px 3px;
    border-bottom: 1px solid
        var(--estimate-border);
    color: inherit;
    text-decoration: none;
    transition:
        padding 0.2s ease,
        color 0.2s ease;
}

.estimate-home-hero-calculator-list > a:last-child {
    border-bottom: 0;
}

.estimate-home-hero-calculator-list > a:hover {
    padding-left: 8px;
    color: var(--estimate-brand);
}

.estimate-home-list-icon {
    width: 43px;
    height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 43px;
    background: var(--estimate-brand-soft);
    border-radius: 12px;
    color: var(--estimate-brand);
    font-size: 18px;
}

.estimate-home-hero-calculator-list strong {
    display: block;
    color: var(--estimate-heading);
    font-size: 14px;
    line-height: 1.4;
}

.estimate-home-hero-calculator-list small {
    display: block;
    margin-top: 3px;
    color: var(--estimate-body);
    font-size: 11px;
    line-height: 1.5;
}

.estimate-home-hero-calculator-list > a > i {
    color: var(--estimate-caption);
    font-size: 15px;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.estimate-home-hero-calculator-list > a:hover > i {
    color: var(--estimate-primary);
    transform: translateX(3px);
}

.estimate-home-hero-note {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 16px 20px;
    background: var(--estimate-primary-soft);
    border-top: 1px solid
        rgba(224, 122, 63, 0.14);
}

.estimate-home-hero-note i {
    color: var(--estimate-primary);
    font-size: 17px;
}

.estimate-home-hero-note p {
    margin: 0;
    color: var(--estimate-body);
    font-size: 11px;
    line-height: 1.65;
}


/* ==========================================================
   Calculator Selection Section
========================================================== */

.estimate-calculator-section {
    padding: 92px 0;
    background: var(--estimate-surface);
}

.estimate-calculator-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 22px;
}


/* ==========================================================
   Calculator Cards
========================================================== */

.estimate-calculator-card {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: #ffffff;
    border: 1px solid var(--estimate-border);
    border-radius: var(--estimate-radius-large);
    box-shadow: var(--estimate-shadow-small);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.estimate-calculator-card:hover {
    border-color:
        rgba(15, 110, 86, 0.31);
    box-shadow: var(--estimate-shadow-medium);
    transform: translateY(-6px);
}

.estimate-calculator-card.is-featured {
    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f3faf7 100%
        );
    border: 2px solid var(--estimate-brand);
}

.estimate-card-badge {
    position: absolute;
    top: 0;
    right: 23px;
    padding: 7px 13px;
    background: var(--estimate-brand);
    border-radius: 0 0 9px 9px;
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.estimate-card-number {
    position: absolute;
    top: 23px;
    right: 25px;
    color:
        rgba(15, 110, 86, 0.11);
    font-size: 48px;
    font-weight: 850;
    letter-spacing: -2px;
    line-height: 1;
}

.estimate-card-icon {
    width: 59px;
    height: 59px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: var(--estimate-brand-soft);
    border: 1px solid
        rgba(15, 110, 86, 0.10);
    border-radius: 17px;
    color: var(--estimate-brand);
    font-size: 25px;
    transition:
        background 0.22s ease,
        color 0.22s ease,
        transform 0.22s ease;
}

.estimate-calculator-card:hover
.estimate-card-icon {
    background: var(--estimate-brand);
    color: #ffffff;
    transform: scale(1.05);
}

.estimate-card-content {
    min-height: 230px;
}

.estimate-card-category {
    display: block;
    margin-bottom: 8px;
    color: var(--estimate-primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.1px;
    line-height: 1.4;
    text-transform: uppercase;
}

.estimate-card-content h3 {
    margin: 0;
    color: var(--estimate-heading);
    font-size: 24px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.estimate-card-content p {
    margin: 14px 0 0;
    color: var(--estimate-body);
    font-size: 13px;
    line-height: 1.75;
}


/* ==========================================================
   Calculator Card Features
========================================================== */

.estimate-card-features {
    display: grid;
    gap: 11px;
    margin: 22px 0 0;
    padding: 20px 0;
    border-top: 1px solid
        var(--estimate-border);
    border-bottom: 1px solid
        var(--estimate-border);
    list-style: none;
}

.estimate-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--estimate-subheading);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.55;
}

.estimate-card-features i {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 20px;
    margin-top: 1px;
    background: var(--estimate-brand-soft);
    border-radius: 50%;
    color: var(--estimate-brand);
    font-size: 10px;
}


/* ==========================================================
   Calculator Card Footer
========================================================== */

.estimate-card-footer {
    display: grid;
    gap: 17px;
    margin-top: auto;
    padding-top: 22px;
}

.estimate-card-footer > span small {
    display: block;
    margin-bottom: 4px;
    color: var(--estimate-caption);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.estimate-card-footer > span strong {
    display: block;
    color: var(--estimate-subheading);
    font-size: 13px;
}

.estimate-card-footer > a {
    min-height: 47px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 18px;
    background: var(--estimate-primary);
    border: 1px solid var(--estimate-primary);
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;
    text-decoration: none;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.estimate-card-footer > a:hover {
    background: var(--estimate-primary-hover);
    border-color: var(--estimate-primary-hover);
    color: #ffffff;
    box-shadow:
        0 9px 20px
        rgba(224, 122, 63, 0.22);
    transform: translateY(-1px);
}


/* ==========================================================
   Process Section
========================================================== */

.estimate-process-section {
    position: relative;
    padding: 92px 0;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #f2faf7,
            #ffffff
        );
    border-top: 1px solid
        rgba(15, 110, 86, 0.07);
    border-bottom: 1px solid
        rgba(15, 110, 86, 0.07);
}

.estimate-process-heading {
    max-width: 750px;
    margin: 0 auto 43px;
    text-align: center;
}

.estimate-process-heading > span {
    margin-bottom: 10px;
}

.estimate-process-heading p {
    max-width: 620px;
    margin: 15px auto 0;
    color: var(--estimate-body);
    font-size: 15px;
    line-height: 1.75;
}

.estimate-process-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.estimate-process-grid article {
    position: relative;
    min-width: 0;
    padding: 26px 23px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid
        rgba(15, 110, 86, 0.11);
    border-radius: var(--estimate-radius-medium);
    box-shadow: var(--estimate-shadow-small);
}

.estimate-process-grid article:not(:last-child)::after {
    position: absolute;
    top: 48px;
    right: -20px;
    z-index: 3;
    width: 22px;
    height: 1px;
    content: "";
    background:
        rgba(15, 110, 86, 0.28);
}

.estimate-process-number {
    position: absolute;
    top: 18px;
    right: 18px;
    color:
        rgba(15, 110, 86, 0.13);
    font-size: 36px;
    font-weight: 850;
    line-height: 1;
}

.estimate-process-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: var(--estimate-brand);
    border-radius: 15px;
    color: #ffffff;
    font-size: 22px;
}

.estimate-process-grid h3 {
    margin: 0;
    color: var(--estimate-heading);
    font-size: 18px;
    line-height: 1.4;
}

.estimate-process-grid p {
    margin: 10px 0 0;
    color: var(--estimate-body);
    font-size: 12px;
    line-height: 1.7;
}


/* ==========================================================
   Benefits Section
========================================================== */

.estimate-benefit-section {
    padding: 96px 0;
    background: #ffffff;
}

.estimate-benefit-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(330px, 0.85fr);
    align-items: center;
    gap: 70px;
}

.estimate-benefit-content > p {
    max-width: 680px;
    margin: 17px 0 0;
    color: var(--estimate-body);
    font-size: 15px;
    line-height: 1.8;
}

.estimate-benefit-list {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 17px;
    margin-top: 31px;
}

.estimate-benefit-list > div {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 18px;
    background: var(--estimate-surface-muted);
    border: 1px solid var(--estimate-border);
    border-radius: var(--estimate-radius-medium);
}

.estimate-benefit-list > div > i {
    width: 41px;
    height: 41px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 41px;
    background: var(--estimate-brand-soft);
    border-radius: 11px;
    color: var(--estimate-brand);
    font-size: 18px;
}

.estimate-benefit-list strong {
    display: block;
    margin-bottom: 4px;
    color: var(--estimate-heading);
    font-size: 13px;
}

.estimate-benefit-list small {
    display: block;
    color: var(--estimate-body);
    font-size: 11px;
    line-height: 1.65;
}


/* ==========================================================
   Accuracy Card
========================================================== */

.estimate-accuracy-card {
    position: relative;
    padding: 31px;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            var(--estimate-brand),
            var(--estimate-brand-dark)
        );
    border-radius: var(--estimate-radius-large);
    box-shadow:
        0 24px 58px
        rgba(15, 110, 86, 0.22);
    color: #ffffff;
}

.estimate-accuracy-card::before {
    position: absolute;
    top: -120px;
    right: -110px;
    width: 270px;
    height: 270px;
    content: "";
    border: 1px solid
        rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.estimate-accuracy-card::after {
    position: absolute;
    right: 50px;
    bottom: -150px;
    width: 250px;
    height: 250px;
    content: "";
    border: 1px solid
        rgba(255, 255, 255, 0.09);
    border-radius: 50%;
}

.estimate-accuracy-card > * {
    position: relative;
    z-index: 2;
}

.estimate-accuracy-icon {
    width: 57px;
    height: 57px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background:
        rgba(255, 255, 255, 0.13);
    border: 1px solid
        rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    color: #ffffff;
    font-size: 25px;
}

.estimate-accuracy-label {
    display: block;
    margin-bottom: 8px;
    color:
        rgba(255, 255, 255, 0.70);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.estimate-accuracy-card h3 {
    margin: 0;
    color: #ffffff;
    font-size: 27px;
    letter-spacing: -0.6px;
    line-height: 1.3;
}

.estimate-accuracy-card > p {
    margin: 14px 0 0;
    color:
        rgba(255, 255, 255, 0.80);
    font-size: 13px;
    line-height: 1.75;
}

.estimate-accuracy-card ul {
    display: grid;
    gap: 11px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.estimate-accuracy-card li {
    position: relative;
    padding-left: 21px;
    color:
        rgba(255, 255, 255, 0.88);
    font-size: 12px;
    line-height: 1.65;
}

.estimate-accuracy-card li::before {
    position: absolute;
    top: 8px;
    left: 0;
    width: 7px;
    height: 7px;
    content: "";
    background: var(--estimate-primary);
    border-radius: 50%;
}

.estimate-accuracy-card > a {
    min-height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 25px;
    padding: 10px 18px;
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 999px;
    color: var(--estimate-brand);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.estimate-accuracy-card > a:hover {
    background: var(--estimate-primary);
    border-color: var(--estimate-primary);
    color: #ffffff;
    transform: translateY(-1px);
}


/* ==========================================================
   Decision Help Section
========================================================== */

.estimate-decision-section {
    padding: 92px 0;
    background: var(--estimate-page-background);
    border-top: 1px solid var(--estimate-border);
}

.estimate-decision-table-wrapper {
    overflow-x: auto;
    background: #ffffff;
    border: 1px solid var(--estimate-border);
    border-radius: var(--estimate-radius-large);
    box-shadow: var(--estimate-shadow-small);
}

.estimate-decision-table {
    width: 100%;
    min-width: 850px;
    border-collapse: collapse;
}

.estimate-decision-table th,
.estimate-decision-table td {
    padding: 18px 21px;
    border-bottom: 1px solid var(--estimate-border);
    text-align: left;
    vertical-align: middle;
}

.estimate-decision-table th {
    background:
        linear-gradient(
            135deg,
            var(--estimate-brand),
            var(--estimate-brand-dark)
        );
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.estimate-decision-table td {
    color: var(--estimate-body);
    font-size: 12px;
    line-height: 1.65;
}

.estimate-decision-table tbody tr:last-child td {
    border-bottom: 0;
}

.estimate-decision-table tbody tr {
    transition: background 0.2s ease;
}

.estimate-decision-table tbody tr:hover {
    background: var(--estimate-brand-soft);
}

.estimate-decision-table td strong {
    color: var(--estimate-heading);
    font-size: 13px;
}

.estimate-decision-table td:last-child {
    width: 120px;
}

.estimate-decision-table td a {
    min-height: 39px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 8px 14px;
    background: var(--estimate-primary);
    border-radius: 999px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.estimate-decision-table td a:hover {
    background: var(--estimate-primary-hover);
    color: #ffffff;
    transform: translateX(2px);
}


/* ==========================================================
   Final CTA
========================================================== */

.estimate-home-cta {
    position: relative;
    padding: 78px 0;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #fff7f0,
            #ffffff 52%,
            #f0f9f5
        );
    border-top: 1px solid
        rgba(224, 122, 63, 0.11);
}

.estimate-home-cta::before {
    position: absolute;
    top: -170px;
    left: -130px;
    width: 360px;
    height: 360px;
    content: "";
    border: 1px solid
        rgba(224, 122, 63, 0.13);
    border-radius: 50%;
}

.estimate-home-cta-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr)
        auto;
    align-items: center;
    gap: 52px;
    padding: 39px 42px;
    background: #ffffff;
    border: 1px solid
        rgba(15, 110, 86, 0.12);
    border-radius: var(--estimate-radius-large);
    box-shadow: var(--estimate-shadow-medium);
}

.estimate-home-cta-content > span {
    display: block;
    margin-bottom: 9px;
    color: var(--estimate-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.estimate-home-cta-content h2 {
    font-size: clamp(28px, 4vw, 42px);
}

.estimate-home-cta-content p {
    max-width: 700px;
    margin: 14px 0 0;
    color: var(--estimate-body);
    font-size: 14px;
    line-height: 1.75;
}

.estimate-home-cta-actions {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 11px;
}

.estimate-home-cta-actions a {
    width: 100%;
    min-width: 215px;
}

.estimate-home-cta-primary {
    background: var(--estimate-primary);
    border: 1px solid var(--estimate-primary);
    color: #ffffff;
}

.estimate-home-cta-primary:hover {
    background: var(--estimate-primary-hover);
    border-color: var(--estimate-primary-hover);
    color: #ffffff;
    transform: translateY(-1px);
}

.estimate-home-cta-secondary {
    background: #ffffff;
    border: 1px solid var(--estimate-brand);
    color: var(--estimate-brand);
}

.estimate-home-cta-secondary:hover {
    background: var(--estimate-brand);
    color: #ffffff;
    transform: translateY(-1px);
}


/* ==========================================================
   Accessibility
========================================================== */

.estimate-home-page a:focus-visible {
    outline: 3px solid
        rgba(224, 122, 63, 0.34);
    outline-offset: 3px;
}


/* ==========================================================
   Large Tablet
========================================================== */

@media (max-width: 1100px) {

    .estimate-home-hero-grid {
        grid-template-columns:
            minmax(0, 1.1fr)
            minmax(330px, 0.9fr);
        gap: 38px;
    }

    .estimate-home-hero-content h1 {
        font-size: clamp(38px, 5.4vw, 58px);
    }

    .estimate-calculator-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .estimate-calculator-card:last-child {
        grid-column: 1 / -1;
        max-width: calc(50% - 11px);
        width: 100%;
        margin-inline: auto;
    }

    .estimate-process-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .estimate-process-grid
    article:not(:last-child)::after {
        display: none;
    }

    .estimate-benefit-layout {
        gap: 42px;
    }

}


/* ==========================================================
   Tablet
========================================================== */

@media (max-width: 900px) {

    .estimate-home-hero {
        padding: 34px 0 70px;
    }

    .estimate-home-hero-grid {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .estimate-home-hero-card {
        max-width: 680px;
    }

    .estimate-section-heading {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .estimate-section-heading > p {
        max-width: 690px;
    }

    .estimate-benefit-layout {
        grid-template-columns: 1fr;
    }

    .estimate-accuracy-card {
        max-width: 680px;
    }

    .estimate-home-cta-inner {
        grid-template-columns: 1fr;
        gap: 27px;
    }

    .estimate-home-cta-actions {
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .estimate-home-cta-actions a {
        width: auto;
    }

}


/* ==========================================================
   Mobile
========================================================== */

@media (max-width: 767px) {

    .estimate-home-page .container {
        width: min(100% - 24px, 1180px);
    }

    .estimate-home-hero {
        padding: 27px 0 55px;
    }

    .estimate-home-breadcrumb {
        margin-bottom: 24px;
        font-size: 12px;
    }

    .estimate-home-hero-content h1 {
        font-size: clamp(34px, 10vw, 48px);
        letter-spacing: -1.5px;
    }

    .estimate-home-hero-content > p {
        margin-top: 17px;
        font-size: 15px;
        line-height: 1.7;
    }

    .estimate-home-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .estimate-home-hero-actions a {
        width: 100%;
    }

    .estimate-home-trust-points {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .estimate-home-hero-card {
        border-radius: 17px;
    }

    .estimate-home-hero-card-header {
        padding: 20px;
    }

    .estimate-calculator-section,
    .estimate-process-section,
    .estimate-benefit-section,
    .estimate-decision-section {
        padding: 67px 0;
    }

    .estimate-section-heading {
        margin-bottom: 29px;
    }

    .estimate-section-heading h2,
    .estimate-process-heading h2,
    .estimate-benefit-content h2,
    .estimate-home-cta-content h2 {
        font-size: 31px;
        letter-spacing: -0.8px;
    }

    .estimate-section-heading > p,
    .estimate-process-heading p,
    .estimate-benefit-content > p {
        font-size: 14px;
        line-height: 1.7;
    }

    .estimate-calculator-grid {
        grid-template-columns: 1fr;
    }

    .estimate-calculator-card,
    .estimate-calculator-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .estimate-calculator-card {
        padding: 24px;
        border-radius: 17px;
    }

    .estimate-card-content {
        min-height: auto;
    }

    .estimate-card-content h3 {
        font-size: 22px;
    }

    .estimate-process-grid {
        grid-template-columns: 1fr;
    }

    .estimate-process-grid article {
        padding: 23px 21px;
    }

    .estimate-benefit-list {
        grid-template-columns: 1fr;
    }

    .estimate-accuracy-card {
        padding: 26px 23px;
        border-radius: 18px;
    }

    .estimate-accuracy-card h3 {
        font-size: 24px;
    }

    .estimate-decision-table-wrapper {
        border-radius: 15px;
    }

    .estimate-home-cta {
        padding: 60px 0;
    }

    .estimate-home-cta-inner {
        padding: 28px 24px;
        border-radius: 18px;
    }

    .estimate-home-cta-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .estimate-home-cta-actions a {
        width: 100%;
        min-width: 0;
    }

}


/* ==========================================================
   Small Mobile
========================================================== */

@media (max-width: 480px) {

    .estimate-home-page .container {
        width: min(100% - 16px, 1180px);
    }

    .estimate-home-hero {
        padding-top: 23px;
    }

    .estimate-home-hero-content h1 {
        font-size: 32px;
    }

    .estimate-home-eyebrow {
        font-size: 10px;
        letter-spacing: 1.1px;
    }

    .estimate-home-eyebrow::before {
        width: 27px;
    }

    .estimate-home-hero-card-header {
        align-items: flex-start;
        padding: 18px;
    }

    .estimate-home-hero-card-header h2 {
        font-size: 17px;
    }

    .estimate-home-hero-calculator-list {
        padding-inline: 15px;
    }

    .estimate-home-hero-calculator-list > a {
        grid-template-columns:
            auto
            minmax(0, 1fr);
    }

    .estimate-home-hero-calculator-list
    > a
    > i {
        display: none;
    }

    .estimate-section-heading h2,
    .estimate-process-heading h2,
    .estimate-benefit-content h2,
    .estimate-home-cta-content h2 {
        font-size: 27px;
    }

    .estimate-calculator-card {
        padding: 21px 18px;
        border-radius: 14px;
    }

    .estimate-card-number {
        top: 19px;
        right: 19px;
        font-size: 41px;
    }

    .estimate-card-badge {
        right: 18px;
    }

    .estimate-card-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 20px;
        font-size: 22px;
    }

    .estimate-card-content h3 {
        font-size: 20px;
    }

    .estimate-card-footer > a {
        padding-inline: 15px;
        font-size: 11px;
    }

    .estimate-process-grid article {
        border-radius: 12px;
    }

    .estimate-benefit-list > div {
        padding: 16px;
        border-radius: 12px;
    }

    .estimate-accuracy-card {
        padding: 23px 19px;
        border-radius: 15px;
    }

    .estimate-home-cta-inner {
        padding: 24px 19px;
        border-radius: 15px;
    }

}


/* ==========================================================
   Reduced Motion
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .estimate-home-page *,
    .estimate-home-page *::before,
    .estimate-home-page *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

}



/* =========================================================
   ESTIMATE HERO PANEL
========================================================= */

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel
.estimate-home-hero-card-header small {
    color: #7b8782 !important;
}

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel
.estimate-home-hero-card-header h2 {
    color: #1a1a1a !important;
}

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel
.estimate-home-hero-calculator-list a {
    color: #1a1a1a !important;
}

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel
.estimate-home-hero-calculator-list strong {
    color: #1a1a1a !important;
}

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel
.estimate-home-hero-calculator-list small {
    color: #727f79 !important;
}

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel
.estimate-home-hero-calculator-list > a > i {
    color: #ffffff !important;
}

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel
.estimate-home-list-icon {
    background: rgba(15, 110, 86, 0.09);
    color: #fbfffe !important;
}

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel
.estimate-home-list-icon i {
    color: #0f6e56 !important;
}

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel
.estimate-home-hero-note p {
    color: #65716c !important;
}

.site-page-hero.dynamic-page-hero
.dynamic-hero-panel
.estimate-home-hero-note > i {
    color: #e07a3f !important;
}



input[data-customer-account-field="true"] {
    background-color: #f5f7f6;
    border-color: #d9e2de;
    color: #45534e;
    cursor: not-allowed;
}

input[data-customer-account-field="true"]:focus {
    border-color: #0f6e56;
    box-shadow: 0 0 0 3px rgba(15, 110, 86, 0.1);
}

.estimate-account-prefill-note {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 8px 0 0;
    color: #5f6f68;
    font-size: 0.82rem;
    line-height: 1.5;
}

.estimate-account-prefill-note i {
    color: #0f6e56;
}