* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

@keyframes blobDriftOne {
    0% {
        transform: translate(0, 0) scale(1);
    }
    8% {
        transform: translate(220px, -140px) scale(1.12);
    }
    16% {
        transform: translate(-180px, 200px) scale(0.92);
    }
    24% {
        transform: translate(260px, 80px) scale(1.18);
    }
    32% {
        transform: translate(-120px, -260px) scale(0.88);
    }
    40% {
        transform: translate(200px, 300px) scale(1.22);
    }
    48% {
        transform: translate(-320px, 140px) scale(0.9);
    }
    56% {
        transform: translate(140px, -220px) scale(1.15);
    }
    64% {
        transform: translate(-260px, -120px) scale(0.95);
    }
    72% {
        transform: translate(300px, 180px) scale(1.2);
    }
    80% {
        transform: translate(-180px, 60px) scale(0.9);
    }
    88% {
        transform: translate(160px, -300px) scale(1.16);
    }
    96% {
        transform: translate(-80px, 120px) scale(1.05);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes blobDriftTwo {
    0% {
        transform: translate(0, 0) scale(1);
    }
    10% {
        transform: translate(220px, -180px) scale(1.18);
    }
    20% {
        transform: translate(420px, -320px) scale(0.9);
    }
    30% {
        transform: translate(300px, -120px) scale(1.12);
    }
    40% {
        transform: translate(560px, -260px) scale(1.25);
    }
    50% {
        transform: translate(360px, -40px) scale(0.92);
    }
    60% {
        transform: translate(620px, -180px) scale(1.18);
    }
    70% {
        transform: translate(420px, -360px) scale(0.88);
    }
    80% {
        transform: translate(260px, -140px) scale(1.15);
    }
    90% {
        transform: translate(480px, -80px) scale(0.96);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes blobDriftThree {
    0% {
        transform: translate(0, 0) scale(1);
    }
    9% {
        transform: translate(-160px, 140px) scale(1.12);
    }
    18% {
        transform: translate(-420px, 260px) scale(0.9);
    }
    27% {
        transform: translate(-300px, 420px) scale(1.22);
    }
    36% {
        transform: translate(-520px, 340px) scale(0.88);
    }
    45% {
        transform: translate(-380px, 520px) scale(1.28);
    }
    54% {
        transform: translate(-600px, 280px) scale(0.85);
    }
    63% {
        transform: translate(-340px, 460px) scale(1.12);
    }
    72% {
        transform: translate(-560px, 380px) scale(0.92);
    }
    81% {
        transform: translate(-420px, 600px) scale(1.2);
    }
    90% {
        transform: translate(-260px, 420px) scale(0.95);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

.estimator-blob-layer {
    position: absolute;
    inset: 0;
    clip-path: inset(0 0 0 0);
    overflow: hidden;
}

.estimator-background {
    position: fixed;
    inset: 0;
    background: #090a0e;
    z-index: 0;
    overflow: hidden;
    isolation: isolate;
    clip-path: inset(0 0 0 0);
}

.estimator-blob {
    position: absolute;
    pointer-events: none;
    border-radius: 9999px;
    opacity: 0.24;
    will-change: transform;
    contain: paint;
}

.estimator-blob--one {
    width: 58rem;
    height: 58rem;
    background: radial-gradient(
            circle at center,
            rgba(85, 34, 46, 0.95),
            transparent 70%
    );
    top: -26rem;
    left: -22rem;
    animation: blobDriftOne 120s linear infinite;
}

.estimator-blob--two {
    width: 54rem;
    height: 54rem;
    filter: brightness(1.4);
    background: radial-gradient(
            circle at center,
            #24385c,
            transparent 70%
    );
    top: 10%;
    right: -26rem;
    animation: blobDriftTwo 160s linear infinite;
}

.estimator-blob--three {
    width: 66rem;
    height: 66rem;
    filter: brightness(1.4);
    background: radial-gradient(
            circle at center,
            #3a4020,
            transparent 70%
    );
    bottom: -36rem;
    left: 14%;
    animation: blobDriftThree 140s linear infinite;
}

.estimator-container {
    position: relative;
    min-height: 100vh;
    padding: 2rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.estimator-progress-steps {
    position: fixed;
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 20;
}

.estimator-progress-step {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(18, 18, 20, 0.9);
    color: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
}

.estimator-progress-step--done {
    background: rgba(206, 94, 79, 0.9);
    border-color: rgba(206, 94, 79, 0.95);
    color: #ffffff;
}

.estimator-progress-step--active {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(206, 94, 79, 0.95);
    color: #ffffff;
}

.estimator-progress-step--pending {
    opacity: 0.55;
}

.estimator-progress-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 0.4rem;
    width: 100%;
    background: rgba(18, 18, 20, 0.9);
    z-index: 15;
}

.estimator-progress-bar-fill {
    height: 100%;
    background: rgba(206, 94, 79, 0.95);
    transition: width 0.25s ease;
}

.estimator-question-card {
    width: 100%;
    max-width: 52rem;
    padding: 1rem 3rem 2.75rem 3rem;
    border-radius: 1.75rem;
    background: rgba(14, 14, 16, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 10px 10px 10px 5px rgb(0 0 0 / 50%);
    z-index: 10;
}

.estimator-question-card--first {
    padding: 3rem 3rem 2.75rem 3rem;
}

.estimator-question-text {
    font-size: clamp(1.5rem, 1.1rem + 1.4vw, 1.8rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.96);
    margin-bottom: 0.6rem;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
}

.estimator-question-text--sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: -0.02em;
}

.estimator-question-explanation-final {
    font-size: 1.02rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 1.5rem;
}

.estimator-question-explanation {
    font-size: 1.02rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 2.55rem;
}

.estimator-question-explanation-final.estimator-question-quote-result {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.88);
}

.estimator-debug {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    font-size: 0.8rem;
    color: rgb(197 197 197);
    z-index: 100;
    padding: 20px;
    background: #161619;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.estimator-button--debug {
    padding: 6px 12px;
    font-size: 0.75rem;
    background: rgba(206, 94, 79, 0.95);
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 16px;
}

.estimator-options-grid {
    display: grid;
    gap: 0.9rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .estimator-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.estimator-option-tile {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
    padding: 1.05rem 1.15rem;
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: transform 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
    text-align: left;
    backdrop-filter: blur(10px);
}

.estimator-option-tile:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.055);
}

.estimator-option-tile--selected {
    background: rgba(206, 94, 79, 0.14);
    border-color: rgba(206, 94, 79, 0.65);
}

.estimator-option-tile--selected:hover {
    background: rgba(206, 94, 79, 0.2);
    border-color: rgba(206, 94, 79, 0.85);
}

.estimator-option-checkbox {
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.estimator-option-checkbox--selected {
    background: rgba(206, 94, 79, 0.95);
    border-color: rgba(206, 94, 79, 0.95);
    color: #0b0b0c;
}

.estimator-option-label {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.35;
}

.estimator-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.estimator-button {
    border: none;
    border-radius: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    font-size: 1rem;
    padding: 13px 50px;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.estimator-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.estimator-button--back {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 100%;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    justify-self: end;
    cursor: pointer;
    margin: 1rem 0;
}

.estimator-button--back:hover:not(:disabled) {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.98);
}

#back-arrow {
    width: 30px;
    height: -webkit-fill-available;
}

.estimator-button--continue {
    background: rgba(206, 94, 79, 0.95);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    padding: 12px 30px;
    transition: opacity 0.15s ease, transform 0.15s ease;
    display: flex;
    justify-self: center;
    margin-left: auto;
}

.estimator-button:hover:not(:disabled) {
    transform: translateY(-1px);
}

.estimator-textarea {
    width: 100%;
    min-height: 10rem;
    resize: vertical;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.92);
    padding: 1rem;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    backdrop-filter: blur(12px);
}

.estimator-textarea::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.estimator-textarea:focus {
    outline: none;
    border-color: rgba(206, 94, 79, 0.85);
    box-shadow: 0 0 0 5px rgba(206, 94, 79, 0.16);
}

.estimator-file-input {
    width: 100%;
    border-radius: 1rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    appearance: none;
    -webkit-appearance: none;
}

.estimator-file-input::file-selector-button {
    margin-right: 1rem;
    border: none;
    border-radius: 0.85rem;
    padding: 0.55rem 1.1rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.08);
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.estimator-file-input::file-selector-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.estimator-file-input::-moz-file-upload-button {
    margin-right: 1rem;
    border: none;
    border-radius: 0.85rem;
    padding: 0.55rem 1.1rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.08);
}

.estimator-helper-text {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

.estimator-inputs {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.estimator-input {
    padding: 0.75rem 0.9rem;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.92);
    border-radius: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    width: -webkit-fill-available;
}

.estimator-input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #161619 inset !important;
    border: 1px solid #38383a;
    -webkit-text-fill-color: white;
    backdrop-filter: none;
}

.estimator-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.estimator-input-box {
    display: flex;
    align-items: center;
}

.pricing-editorial {
    min-height: 100vh;
    max-width: 64rem;
    margin: 0 auto;
    padding: 6rem 2rem 5rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.pricing-header h1 {
    font-size: clamp(2.8rem, 2.2rem + 1.8vw, 3.4rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 2rem;
}

.pricing-intro p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 1.25rem;
}

.pricing-tiers {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.pricing-tier-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
}

.pricing-tier-label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.pricing-tier h2 {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0.25rem 0 0;
}

.pricing-tier-price {
    font-size: 1.1rem;
    font-weight: 900;
    color: rgba(206, 94, 79, 0.95);
    white-space: nowrap;
}

.pricing-tier-lead {
    font-size: 0.98rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.75rem;
}

.pricing-tier p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
}

.pricing-tier ul {
    padding-left: 1.2rem;
    margin: 0;
}

.pricing-tier ul li {
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 0.45rem;
}

.pricing-divider {
    height: 1px;
    background: linear-gradient(
            to right,
            transparent,
            rgba(255, 255, 255, 0.12),
            transparent
    );
}

.pricing-tier--highlight h2 {
    color: rgba(255, 255, 255, 0.98);
}

.pricing-footer {
    margin-top: 2rem;
}

.pricing-footer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.25rem;
}

.pricing-footer button {
    margin-top: 1rem;
}

.landing {
    min-height: 100vh;
    padding: 8rem 0 2rem 0;
    position: relative;
    z-index: 1;
}

.landing-shell {
    max-width: 92rem;
    margin: 0 auto;
}

.landing-hero {
    max-width: 78rem;
    margin: 0 auto 1rem auto;
    text-align: left;
    animation: landing-enter 520ms ease both;
}

@keyframes landing-enter {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.landing-title {
    font-size: clamp(2.6rem, 1.8rem + 2.3vw, 3.3rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.06;
    margin: 0 0 1.35rem 0;
    color: rgba(255, 255, 255, 0.98);
}

.landing-emphasis {
    font-weight: 800;
    color: rgb(221 221 221);
    letter-spacing: 0.3px;
}

.landing-description {
    font-size: 1.04rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.74);
    margin: 0 0 1.05rem 0;
}

.landing-tiers {
    max-width: 78rem;
    margin: 0 auto 1rem auto;
    display: grid;
    gap: 1.5rem;
    align-items: stretch;
}

@media (min-width: 980px) {
    .landing-tiers {
        grid-template-columns: repeat(3, 1fr);
    }
}

.landing-card {
    position: relative;
    border-radius: 18px;
    padding: 2.05rem 2.05rem 1.85rem;
    background: rgb(45 45 45 / 66%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(14px);
    overflow: hidden;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
    animation: landing-card-in 560ms ease both;
    text-align: left;
}

.landing-card:nth-child(1) { animation-delay: 60ms; }
.landing-card:nth-child(2) { animation-delay: 110ms; }
.landing-card:nth-child(3) { animation-delay: 160ms; }

@keyframes landing-card-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.landing-card-head {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin: 0 0 0.95rem 0;
}

.landing-kicker {
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 0.35rem 0;
}

.landing-card-title h3 {
    font-size: 1.18rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin: 0;
    color: rgba(255, 255, 255, 0.96);
}

.landing-price {
    text-align: right;
    white-space: nowrap;
}

.landing-price-top {
    font-size: 0.78rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.6);
}

.landing-price-bottom {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: rgba(206, 94, 79, 0.95);
}

.landing-lead {
    position: relative;
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 0.95rem 0;
}

.landing-sublead {
    position: relative;
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.66);
    margin: 0 0 0.85rem 0;
}

.landing-list {
    position: relative;
    margin: 0;
    padding-left: 1.1rem;
}

.landing-list li {
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 0.5rem;
}

.landing-list li strong {
    color: rgba(255, 255, 255, 0.92);
}

.landing-footer {
    max-width: 78rem;
    margin: 2.25rem auto 1rem;
    padding: 1.6rem 1.7rem;
    border-radius: 18px;
    background: rgb(45 45 45 / 66%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.55);
    display: grid;
    gap: 1.25rem;
    align-items: center;
}

@media (min-width: 860px) {
    .landing-footer {
        grid-template-columns: 1fr auto;
    }
}

.landing-footer-copy p {
    font-size: 0.98rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.68);
    margin: 0 0 0.9rem 0;
    text-align: left;
}

.landing-footer-copy p:last-child {
    margin-bottom: 0;
}

.landing-footer-cta {
    display: flex;
    justify-content: flex-start;
}

@media (min-width: 860px) {
    .landing-footer-cta {
        justify-content: flex-end;
    }
}

.landing-cta {
    border-radius: 12px;
    padding: 14px 14px;
    font-size: 16px;
}

@media (prefers-reduced-motion: reduce) {
    .landing-hero,
    .landing-card,
    .landing-card-bg {
        animation: none !important;
        transition: none !important;
    }
}

.estimator-submit-spinner {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.25);
    border-top-color: rgba(206, 94, 79, 0.95);
    animation: estimator-spin 0.9s linear infinite;
    margin-left: auto;
}

@keyframes estimator-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.estimator-submit-message {
    margin: 0.75rem 0 1.25rem 0;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
    border: 1px solid transparent;
}

.estimator-submit-message--success {
    background: rgba(80, 180, 120, 0.14);
    color: rgba(190, 255, 215, 0.95);
    border-color: rgba(80, 180, 120, 0.55);
}

.estimator-submit-message--error {
    background: rgba(206, 94, 79, 0.14);
    color: rgba(255, 200, 195, 0.95);
    border-color: rgba(206, 94, 79, 0.65);
}

.estimator-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.estimator-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    margin-right: 14px;
    display: block;
    min-width: 15%;
}

.estimator-required {
    color: #ce5e4f;
    margin-right: 0.2rem;
    top: -3px;
    position: relative;
}
