:root {
    --quote-navy: #0d1219;
    --quote-teal: #137a7f;
    --quote-teal-soft: #eaf6f6;
    --quote-orange: #f37b31;
    --quote-orange-deep: #e06b26;
    --quote-surface: #f8fafc;
    --quote-shadow: 0 32px 72px rgba(15, 23, 42, 0.12);
}

body.quote-page {
    font-family: 'Satoshi', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body.quote-page,
body.quote-page *,
body.quote-page *::before,
body.quote-page *::after {
    box-sizing: border-box;
}

body.quote-page ::selection {
    background: #14b8a6;
    color: #ffffff;
}

body.quote-page ::-moz-selection {
    background: #14b8a6;
    color: #ffffff;
}

body.quote-page h1,
body.quote-page h2,
body.quote-page h3,
body.quote-page h4,
body.quote-page h5,
body.quote-page h6 {
    font-family: 'Satoshi', sans-serif;
}

.quote-page {
    background: #ffffff;
    color: var(--quote-navy);
}

.quote-page .sales-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    overflow: hidden;
    padding: 1rem 2rem;
    border: none;
    border-radius: 9999px;
    background: linear-gradient(135deg, #ff8200 0%, #e67500 100%);
    color: #ffffff;
    font-family: 'Satoshi', sans-serif;
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 10px 20px -5px rgba(255, 130, 0, 0.4);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.quote-page .sales-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg) translateY(-100%);
    transition: transform 0.6s ease;
}

.quote-page .sales-btn:hover,
.quote-page .sales-btn:focus-visible {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 25px -8px rgba(255, 130, 0, 0.6);
}

.quote-page .sales-btn:hover::after,
.quote-page .sales-btn:focus-visible::after {
    transform: rotate(45deg) translateY(100%);
}

.quote-page__shell {
    position: relative;
    overflow: hidden;
}

.quote-ambient-glow {
    position: absolute;
    z-index: 0;
    border-radius: 999px;
    pointer-events: none;
}

.quote-ambient-glow--top-right {
    top: -10rem;
    right: -10rem;
    width: 40rem;
    height: 40rem;
    background: rgba(20, 184, 166, 0.12);
    filter: blur(150px);
}

.quote-ambient-glow--mid-left {
    top: 25%;
    left: -15rem;
    width: 35rem;
    height: 35rem;
    background: rgba(249, 115, 22, 0.08);
    filter: blur(140px);
}

.quote-ambient-glow--bottom-right {
    right: -15rem;
    bottom: 15%;
    width: 45rem;
    height: 45rem;
    background: rgba(20, 184, 166, 0.08);
    filter: blur(160px);
}

.quote-container {
    width: min(100% - 2rem, 76rem);
    margin: 0 auto;
}

.quote-topbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100001;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
}

.quote-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 5.25rem;
}

.quote-topbar__logo {
    position: relative;
    z-index: 1;
}

.quote-topbar__button.sales-btn {
    padding: 0.95rem 1.4rem;
    font-size: 0.78rem;
    line-height: 1;
    box-shadow: 0 14px 34px rgba(243, 123, 49, 0.3);
}

.quote-hero {
    position: relative;
    z-index: 10;
    padding: 9.5rem 0 6rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.75);
    background:
        radial-gradient(circle at top left, rgba(19, 122, 127, 0.1), transparent 28%),
        linear-gradient(135deg, #eaf6f6 0%, #ffffff 64%);
}

.ww-footer {
    border-top: 1px solid #1e293b;
    background: #0f172a;
}

.ww-footer__container {
    width: min(100% - 2rem, 80rem);
    margin: 0 auto;
    padding: 1rem 1.25rem;
}

.ww-footer__row,
.ww-footer__brand,
.ww-footer__links,
.ww-footer__socials {
    display: flex;
    align-items: center;
}

.ww-footer__row {
    flex-direction: column;
    justify-content: space-between;
    gap: 0.75rem;
}

.ww-footer__brand,
.ww-footer__socials {
    gap: 0.625rem;
}

.ww-footer__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
}

.ww-footer__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 0.375rem;
    background: #137a7f;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
}

.ww-footer__copy,
.ww-footer__link,
.ww-footer__social {
    color: #64748b;
}

.ww-footer__copy {
    font-size: 0.75rem;
}

.ww-footer__link,
.ww-footer__social {
    text-decoration: none;
    transition: color 180ms ease;
}

.ww-footer__link {
    white-space: nowrap;
    font-size: 0.75rem;
}

.ww-footer__social {
    font-size: 0.875rem;
}

.ww-footer__link:hover,
.ww-footer__link:focus-visible,
.ww-footer__social:hover,
.ww-footer__social:focus-visible {
    color: #2dd4bf;
}

@media (min-width: 640px) {
    .ww-footer__row {
        flex-direction: row;
    }

    .ww-footer__links {
        gap: 1.5rem;
    }
}

.quote-hero__inner {
    text-align: center;
}

.quote-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 1.25rem;
    border: 1px solid rgba(19, 122, 127, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--quote-teal);
}

.quote-eyebrow__dot {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0.75rem;
    height: 0.75rem;
}

.quote-eyebrow__ping,
.quote-eyebrow__core {
    position: absolute;
    border-radius: 999px;
}

.quote-eyebrow__ping {
    inset: 0;
    background: rgba(243, 123, 49, 0.45);
    animation: quotePing 1.6s ease-out infinite;
}

.quote-eyebrow__core {
    inset: 0.1rem;
    background: var(--quote-orange);
}

.quote-hero__title {
    margin: 2rem auto 1.5rem;
    max-width: 15ch;
    font-size: clamp(3rem, 7vw, 5.8rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.quote-hero__title span {
    background: linear-gradient(90deg, var(--quote-teal), var(--quote-orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.quote-hero__copy {
    margin: 0 auto;
    max-width: 42rem;
    font-size: clamp(1.1rem, 2.6vw, 1.45rem);
    line-height: 1.7;
    color: #5b6778;
}

.quote-hero__actions {
    display: flex;
    justify-content: center;
    margin-top: 2.25rem;
}

.quote-hero__subcopy {
    margin-top: 1.25rem;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #94a3b8;
}

.quote-selected-package {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 1.75rem;
    padding: 0.95rem 1.15rem;
    border: 1px solid rgba(19, 122, 127, 0.18);
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.82);
    font-weight: 700;
    color: #334155;
}

.quote-selected-package__label {
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    background: rgba(19, 122, 127, 0.12);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--quote-teal);
}

.quote-primary-button,
.quote-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: none;
    border-radius: 999px;
    padding: 1rem 1.5rem;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.98rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.02em;
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.quote-primary-button {
    background: linear-gradient(135deg, var(--quote-orange), var(--quote-orange-deep));
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(243, 123, 49, 0.32);
}

.quote-primary-button:hover,
.quote-primary-button:focus-visible,
.quote-secondary-button:hover,
.quote-secondary-button:focus-visible {
    transform: translateY(-2px);
}

.quote-primary-button:hover,
.quote-primary-button:focus-visible {
    box-shadow: 0 24px 48px rgba(243, 123, 49, 0.36);
}

.quote-secondary-button {
    border: 1px solid rgba(203, 213, 225, 0.9);
    background: #ffffff;
    color: #334155;
}

.quote-primary-button--large {
    min-width: min(100%, 24rem);
    padding: 1.35rem 1.8rem;
    font-size: 1.08rem;
}

.quote-primary-button--full {
    width: 100%;
}

.quote-section-heading {
    max-width: 42rem;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.quote-section-heading--left {
    margin: 0 0 2rem;
    text-align: left;
}

.quote-section-heading__eyebrow {
    margin: 0 0 0.85rem;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--quote-teal);
}

.quote-section-heading h2 {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.quote-section-heading p {
    margin: 1rem 0 0;
    font-size: 1.08rem;
    line-height: 1.8;
    color: #64748b;
}

.quote-problems {
    position: relative;
    overflow: hidden;
    padding: 5.5rem 0;
    background: var(--quote-navy);
    color: #ffffff;
}

.quote-problems::after {
    content: '';
    position: absolute;
    top: -4rem;
    right: -7rem;
    width: 26rem;
    height: 26rem;
    border-radius: 999px;
    background: rgba(243, 123, 49, 0.12);
    filter: blur(100px);
}

.quote-problems .quote-section-heading__eyebrow,
.quote-problems .quote-section-heading h2 {
    color: #ffffff;
}

.quote-problems .quote-section-heading p {
    color: rgba(226, 232, 240, 0.78);
}

.quote-comparison-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.quote-comparison-col {
    position: relative;
    padding: 2.5rem;
    border-radius: 2rem;
    background: rgba(17, 24, 39, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), border-color 220ms ease, box-shadow 220ms ease;
    backdrop-filter: blur(8px);
}

.quote-comparison-col h3 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.quote-comparison-sub {
    margin: 0.5rem 0 2.25rem;
    font-size: 0.94rem;
    line-height: 1.5;
    color: rgba(226, 232, 240, 0.65);
}

.quote-comparison-badge {
    position: absolute;
    top: -1rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--quote-orange), var(--quote-orange-deep));
    color: #ffffff;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(243, 123, 49, 0.35);
}

.quote-comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.85rem;
}

.quote-comparison-list li {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
}

.quote-comparison-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    flex-shrink: 0;
    font-size: 0.95rem;
}

.quote-comparison-col--old .quote-comparison-icon {
    background: rgba(239, 68, 68, 0.12);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.quote-comparison-col--new .quote-comparison-icon {
    background: rgba(20, 184, 166, 0.15);
    color: #2dd4bf;
    border: 1px solid rgba(20, 184, 166, 0.25);
}

.quote-comparison-list li strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.quote-comparison-list li p {
    margin: 0.4rem 0 0;
    font-size: 0.94rem;
    line-height: 1.65;
    color: rgba(226, 232, 240, 0.72);
}

.quote-comparison-col--old {
    opacity: 0.78;
    border-color: rgba(239, 68, 68, 0.15);
}

.quote-comparison-col--new {
    border-color: rgba(20, 184, 166, 0.3);
    background: rgba(20, 184, 166, 0.03);
    box-shadow: 0 20px 40px rgba(20, 184, 166, 0.04);
}

.quote-comparison-col--new:hover {
    transform: translateY(-4px);
    border-color: rgba(20, 184, 166, 0.55);
    box-shadow: 0 30px 60px rgba(20, 184, 166, 0.08);
}

.quote-icon-badge {
    display: none;
}

.quote-solution {
    padding: 6rem 0;
}

.quote-solution__grid {
    display: grid;
    gap: 3rem;
    align-items: center;
    grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
}

.quote-feature-list {
    display: grid;
    gap: 1.5rem;
}

.quote-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.quote-value-card {
    position: relative;
    padding: 2.5rem;
    border: 1px solid rgba(45, 212, 191, 0.16);
    border-radius: 2rem;
    background: var(--quote-navy);
    color: #ffffff;
    box-shadow: var(--quote-shadow);
}

.quote-value-card__tag {
    position: absolute;
    top: -1rem;
    right: 2rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: var(--quote-teal);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(19, 122, 127, 0.25);
}

.quote-value-card__rows {
    display: grid;
    gap: 1rem;
    margin-top: 1.8rem;
}

.quote-value-card__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.95rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.quote-value-card__row span {
    color: rgba(226, 232, 240, 0.76);
}

.quote-value-card__row strong {
    font-size: 1.05rem;
    font-weight: 900;
    color: #ffffff;
}

.quote-value-card__label--negative,
.quote-value-card__value--negative {
    color: #ef4444;
}

.quote-value-card__label--positive,
.quote-value-card__value--positive {
    color: var(--quote-teal);
}

.quote-value-card__value--positive {
    font-size: 1.25rem;
}

.quote-value-card__note {
    font-style: italic;
    color: rgba(226, 232, 240, 0.72);
}

.quote-proof {
    padding: 5.5rem 0;
    border-top: 1px solid rgba(226, 232, 240, 0.75);
    border-bottom: 1px solid rgba(226, 232, 240, 0.75);
    background: var(--quote-surface);
}

.quote-proof-grid {
    display: grid;
    gap: 1.75rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quote-proof-card {
    display: block;
    padding: 1rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 2rem;
    background: #ffffff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.quote-proof-card:hover,
.quote-proof-card.is-revealed {
    transform: translateY(-5px);
    box-shadow: 0 28px 58px rgba(15, 23, 42, 0.12);
}

.quote-proof-card--teal:hover,
.quote-proof-card--teal.is-revealed {
    border-color: rgba(19, 122, 127, 0.42);
}

.quote-proof-card--orange:hover,
.quote-proof-card--orange.is-revealed {
    border-color: rgba(243, 123, 49, 0.42);
}

.quote-proof-card__visual {
    position: relative;
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.35rem;
    overflow: hidden;
    background: var(--quote-navy);
}

.quote-proof-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 300ms ease;
}

.quote-proof-card:hover .quote-proof-card__img,
.quote-proof-card.is-revealed .quote-proof-card__img {
    transform: scale(1.04);
}

.quote-proof-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: rgba(13, 18, 25, 0.84);
    color: #ffffff;
    font-weight: 900;
    opacity: 0;
    transform: translateY(0.75rem);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(6px);
}

.quote-proof-card:hover .quote-proof-card__overlay,
.quote-proof-card.is-revealed .quote-proof-card__overlay {
    opacity: 1;
    transform: translateY(0);
}

.quote-proof-card h3 {
    margin-top: 1rem;
    text-align: center;
    color: var(--quote-navy);
}

.quote-closer {
    padding: 6rem 0;
}

.quote-closer__panel {
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
    border-radius: 3rem;
    background: var(--quote-navy);
    color: #ffffff;
    text-align: center;
    box-shadow: var(--quote-shadow);
}

.quote-closer__glow {
    position: absolute;
    width: 22rem;
    height: 22rem;
    border-radius: 999px;
    filter: blur(90px);
}

.quote-closer__glow--teal {
    top: -7rem;
    right: -5rem;
    background: rgba(19, 122, 127, 0.35);
}

.quote-closer__glow--orange {
    left: -6rem;
    bottom: -7rem;
    background: rgba(243, 123, 49, 0.24);
}

.quote-closer__panel h2 {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 4.1rem);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.quote-closer__panel p {
    position: relative;
    z-index: 1;
    max-width: 42rem;
    margin: 1.5rem auto 2rem;
    font-size: 1.08rem;
    line-height: 1.85;
    color: rgba(226, 232, 240, 0.85);
}

.quote-trust-list {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
    margin-top: 1.5rem;
    color: rgba(226, 232, 240, 0.8);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.quote-trust-list div {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.quote-trust-list i {
    color: var(--quote-teal);
}

.quote-toast {
    position: fixed;
    top: 6.4rem;
    right: 1rem;
    z-index: 100004;
    min-width: min(22rem, calc(100vw - 2rem));
    max-width: 24rem;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.quote-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.quote-toast[data-tone="success"] {
    border-color: rgba(16, 185, 129, 0.28);
}

.quote-toast[data-tone="error"] {
    border-color: rgba(244, 63, 94, 0.28);
}

.quote-modal {
    position: fixed;
    inset: 0;
    z-index: 100003;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.quote-modal.is-open {
    display: flex;
}

.quote-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(13, 18, 25, 0.9);
    backdrop-filter: blur(6px);
}

.quote-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 34rem);
    max-height: min(90vh, 48rem);
    overflow-y: auto;
    padding: 1.75rem;
    border: 1px solid rgba(226, 232, 240, 0.85);
    border-radius: 2rem;
    background: #ffffff;
    box-shadow: var(--quote-shadow);
    animation: quoteZoomIn 220ms ease;
}

.quote-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.2rem;
}

.quote-back-button,
.quote-close-button {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: none;
    background: transparent;
    font-size: 0.85rem;
    font-weight: 800;
    color: #94a3b8;
    transition: color 160ms ease;
}

.quote-back-button:hover,
.quote-close-button:hover {
    color: var(--quote-teal);
}

.quote-back-spacer {
    width: 3rem;
    height: 1rem;
}

.quote-progress {
    display: flex;
    gap: 0.45rem;
}

.quote-progress__bar {
    width: 0.55rem;
    height: 0.45rem;
    border-radius: 999px;
    background: #e2e8f0;
    transition: width 180ms ease, background 180ms ease;
}

.quote-progress__bar.is-active {
    width: 2.15rem;
    background: var(--quote-teal);
}

.quote-modal__intro {
    display: grid;
    gap: 0.8rem;
    margin-bottom: 1.3rem;
}

.quote-modal__step-counter {
    margin: 0;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #94a3b8;
}

.quote-modal__package-note {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    padding: 0.8rem 0.95rem;
    border: 1px solid rgba(19, 122, 127, 0.18);
    border-radius: 1rem;
    background: rgba(234, 246, 246, 0.7);
}

.quote-modal__package-note span,
.quote-modal__package-note small {
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--quote-teal);
}

.quote-modal__package-note strong {
    font-size: 0.94rem;
    color: var(--quote-navy);
}

.quote-step,
.quote-success {
    display: none;
}

.quote-step.is-active,
.quote-success:not(.is-hidden) {
    display: block;
    animation: quoteSlideIn 240ms ease;
}

.quote-step h3,
.quote-success h3 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 2.3rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.quote-step > p,
.quote-success > p {
    margin: 0.55rem 0 0;
    line-height: 1.7;
    color: #64748b;
}

.quote-option-list {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.quote-option-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1rem 1.05rem;
    border: 2px solid rgba(241, 245, 249, 1);
    border-radius: 1.2rem;
    background: #ffffff;
    text-align: left;
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.quote-option-button:hover,
.quote-option-button.is-selected {
    transform: translateY(-1px);
}

.quote-option-button:hover {
    border-color: rgba(19, 122, 127, 0.22);
    background: #f8fafc;
}

.quote-option-button.is-selected {
    border-color: rgba(19, 122, 127, 0.45);
    background: rgba(234, 246, 246, 0.72);
    box-shadow: 0 16px 34px rgba(19, 122, 127, 0.12);
}

.quote-option-button__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    font-size: 1.05rem;
}

.quote-option-button__icon--teal {
    background: rgba(19, 122, 127, 0.12);
    color: var(--quote-teal);
}

.quote-option-button__icon--orange {
    background: rgba(243, 123, 49, 0.12);
    color: var(--quote-orange);
}

.quote-option-button__icon--navy {
    background: rgba(15, 23, 42, 0.08);
    color: var(--quote-navy);
}

.quote-option-button__text {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.45;
    color: var(--quote-navy);
}

.quote-answer-strip {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.5rem;
}

.quote-answer-pill {
    padding: 0.95rem 1rem;
    border: 1px solid rgba(226, 232, 240, 0.85);
    border-radius: 1rem;
    background: #f8fafc;
}

.quote-answer-pill span {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #94a3b8;
}

.quote-answer-pill strong {
    display: block;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--quote-navy);
}

.quote-lead-form {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.quote-form-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quote-field {
    display: grid;
    gap: 0.45rem;
    min-width: 0;
}

.quote-field--full {
    grid-column: 1 / -1;
}

.quote-field span {
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #475569;
}

.quote-field input,
.quote-field select,
.quote-field textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(203, 213, 225, 0.9);
    border-radius: 1rem;
    background: #f8fafc;
    color: var(--quote-navy);
    font-size: 1rem;
    font-weight: 600;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.quote-field textarea {
    min-height: 8.75rem;
    resize: vertical;
}

.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
    outline: none;
    border-color: rgba(19, 122, 127, 0.72);
    background: #ffffff;
    box-shadow: 0 0 0 0.24rem rgba(19, 122, 127, 0.12);
}

.quote-lead-form__note {
    margin: 0;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: #94a3b8;
}

.quote-success {
    text-align: center;
    padding: 1.25rem 0 0.25rem;
}

.quote-success__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 999px;
    background: rgba(19, 122, 127, 0.12);
    color: var(--quote-teal);
    font-size: 1.7rem;
}

.quote-success__eyebrow {
    margin: 1.5rem 0 0;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--quote-teal);
}

.quote-success__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.75rem;
}

.is-hidden {
    display: none !important;
}

.wl-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 36px;
    overflow: hidden;
}

.wl-panel-anim,
.wl-panel-static {
    position: absolute;
    left: 50%;
    display: flex;
    align-items: baseline;
    white-space: nowrap;
}

.wl-panel-anim {
    transform: translateX(calc(-50% + 110%));
    opacity: 0;
}

.wl-panel-static {
    transform: translateX(-50%);
}

.wl-mark-row {
    position: relative;
    display: flex;
    align-items: baseline;
}

.wl-gl {
    display: inline-block;
    opacity: 0;
    transform: translateY(8px);
    color: #0c1e1c;
    font-family: 'Satoshi', sans-serif;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1.2px;
}

.wl-gl.wl-t,
.wl-s-brace {
    color: var(--quote-teal);
}

.wl-rule {
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--quote-teal), #64748b, var(--quote-orange));
}

.wl-s-brace {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', monospace;
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.5px;
}

.wl-s-word {
    color: #0c1e1c;
    font-family: 'Satoshi', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.8px;
}

@keyframes quoteSlideIn {
    from {
        opacity: 0;
        transform: translateX(18px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes quoteZoomIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes quotePing {
    0% {
        opacity: 0.7;
        transform: scale(0.85);
    }
    80%,
    100% {
        opacity: 0;
        transform: scale(1.9);
    }
}

@media (max-width: 1023px) {
    .quote-comparison-wrapper,
    .quote-solution__grid,
    .quote-proof-grid {
        grid-template-columns: 1fr;
    }

    .quote-comparison-wrapper {
        gap: 2rem;
    }

    .quote-comparison-col {
        padding: 1.75rem;
    }
}

@media (max-width: 767px) {
    .quote-container {
        width: min(100% - 1.25rem, 76rem);
    }

    .quote-topbar__inner {
        min-height: 4.8rem;
    }

    .quote-topbar__button.sales-btn {
        padding: 0.9rem 1rem;
        font-size: 0.72rem;
    }

    .quote-hero {
        padding-top: 8rem;
        padding-bottom: 4.5rem;
    }

    .quote-problems,
    .quote-solution,
    .quote-proof,
    .quote-closer {
        padding: 4.5rem 0;
    }

    .quote-problem-card,
    .quote-value-card,
    .quote-proof-card,
    .quote-closer__panel,
    .quote-modal__dialog {
        border-radius: 1.5rem;
    }

    .quote-closer__panel {
        padding: 3rem 1.4rem;
    }

    .quote-answer-strip,
    .quote-form-grid {
        grid-template-columns: 1fr;
    }

    .quote-modal__dialog {
        padding: 1.2rem;
    }

    .quote-success__actions,
    .quote-trust-list {
        flex-direction: column;
        align-items: stretch;
    }

    .quote-primary-button,
    .quote-secondary-button {
        width: 100%;
    }
}

/* ═══════════════════════════════════════════ */
/* DARK MODE OVERRIDES */
/* ═══════════════════════════════════════════ */
html.dark .quote-page {
    background: #030712; /* Deep grey-black slate */
    color: #f3f4f6;
}
html.dark .quote-topbar {
    background: rgba(3, 7, 18, 0.85);
    border-bottom: 1px solid rgba(31, 41, 55, 0.7);
    backdrop-filter: blur(12px);
}
html.dark .quote-hero {
    background: transparent;
    border-bottom-color: rgba(31, 41, 55, 0.6);
}
html.dark .quote-eyebrow {
    background: rgba(17, 24, 39, 0.9);
    border-color: rgba(20, 184, 166, 0.35);
    color: #2dd4bf;
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.1);
}
html.dark .quote-hero__title {
    color: #ffffff;
}
html.dark .quote-hero__title span {
    background: linear-gradient(135deg, #2dd4bf 0%, #14b8a6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
html.dark .quote-hero__copy { color: #9ca3af; }
html.dark .quote-hero__subcopy { color: #2dd4bf; font-weight: 600; }

html.dark .quote-selected-package {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(17, 24, 39, 0.9));
    border: 1px solid rgba(20, 184, 166, 0.4);
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.08);
    color: #f3f4f6;
}
html.dark .quote-selected-package strong {
    color: #ffffff;
}
html.dark .quote-selected-package span {
    background: #f97316;
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Problem Cards - Elevated glassmorphism */
html.dark .quote-problems {
    background: #030712;
    border-bottom: 1px solid rgba(31, 41, 55, 0.6);
}
html.dark .quote-problem-card {
    background: transparent;
    border: none;
    backdrop-filter: none;
}
html.dark .quote-problem-card h3 {
    color: #ffffff;
}
html.dark .quote-problem-card p {
    color: #9ca3af;
}

/* Solution Section */
html.dark .quote-solution {
    background: #030712;
}
html.dark .quote-solution h2 { color: #ffffff; }
html.dark .quote-solution p { color: #9ca3af; }
html.dark .quote-feature-item h3 { color: #ffffff; }
html.dark .quote-feature-item p { color: #9ca3af; }
html.dark .quote-icon-badge--soft {
    background: rgba(20, 184, 166, 0.15);
    color: #2dd4bf;
    border: 1px solid rgba(20, 184, 166, 0.2);
}

/* Compare Widget - Extremely visual glassmorphism */
html.dark .quote-value-card {
    background: rgba(17, 24, 39, 0.7);
    border: 1px solid rgba(20, 184, 166, 0.3);
    backdrop-filter: blur(16px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
html.dark .quote-value-card h3 { color: #ffffff; }
html.dark .quote-value-card__row {
    border-bottom-color: rgba(75, 85, 99, 0.2);
}
html.dark .quote-value-card__row span { color: #cbd5e1; }
html.dark .quote-value-card__row strong { color: #ffffff; }
html.dark .quote-value-card__label--negative { color: #fca5a5; }
html.dark .quote-value-card__value--negative { color: #ef4444; }
html.dark .quote-value-card__label--positive { color: #86efac; font-weight: 700; }
html.dark .quote-value-card__value--positive {
    color: #22c55e;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.2);
}
html.dark .quote-value-card__note { color: #9ca3af; }

/* Proof Section */
html.dark .quote-proof {
    background: #090d16;
    border-top: 1px solid rgba(31, 41, 55, 0.6);
    border-bottom: 1px solid rgba(31, 41, 55, 0.6);
}
html.dark .quote-proof h2 { color: #ffffff; }
html.dark .quote-proof p { color: #9ca3af; }
html.dark .quote-proof-card {
    background: rgba(17, 24, 39, 0.5);
    border: 1px solid rgba(75, 85, 99, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
html.dark .quote-proof-card h3 { color: #f3f4f6; }
html.dark .quote-proof-card:hover {
    border-color: rgba(20, 184, 166, 0.4);
    box-shadow: 0 20px 40px rgba(20, 184, 166, 0.08);
    transform: translateY(-4px);
}

/* Closer Section */
html.dark .quote-closer {
    background: #030712;
}
html.dark .quote-closer__panel {
    background: rgba(17, 24, 39, 0.7);
    border: 1px solid rgba(75, 85, 99, 0.3);
    backdrop-filter: blur(16px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
html.dark .quote-closer__panel h2 { color: #ffffff; }
html.dark .quote-closer__panel p { color: #cbd5e1; }
html.dark .quote-trust-list div { color: #9ca3af; }
html.dark .quote-trust-list i { color: #f97316; }

/* Buttons - Orange Glow Call-to-action */
html.dark .quote-primary-button {
    background: linear-gradient(135deg, #ff8200 0%, #e05300 100%) !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    box-shadow: 0 12px 30px rgba(255, 130, 0, 0.35) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
html.dark .quote-primary-button:hover {
    transform: translateY(-2px) scale(1.015);
    box-shadow: 0 20px 45px rgba(255, 130, 0, 0.55) !important;
}
html.dark .quote-secondary-button {
    background: #111827;
    border: 1px solid #374151;
    color: #f3f4f6;
    transition: all 0.3s ease;
}
html.dark .quote-secondary-button:hover {
    background: #1f2937;
    border-color: #4b5563;
    color: #ffffff;
}

/* Modal Dialog & Forms */
html.dark .quote-modal__dialog {
    background: #0b0f19;
    border: 1px solid rgba(75, 85, 99, 0.3);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
}
html.dark .quote-modal__backdrop {
    background: rgba(3, 7, 18, 0.85);
}
html.dark .quote-progress__bar { background: #374151; }
html.dark .quote-progress__bar.is-active {
    background: linear-gradient(90deg, #1d7a7a, #ff8200);
}
html.dark .quote-modal__package-note {
    background: #111827;
    border: 1px solid #374151;
    color: #cbd5e1;
}
html.dark .quote-modal__package-note span {
    background: #1d7a7a;
    color: #ffffff;
}
html.dark .quote-modal__package-note strong {
    color: #ffffff;
}
html.dark .quote-step h3,
html.dark .quote-success h3 { color: #ffffff; }
html.dark .quote-step p,
html.dark .quote-success p { color: #9ca3af; }

html.dark .quote-option-button {
    background: #111827;
    border: 1px solid #374151;
    color: #e5e7eb;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
html.dark .quote-option-button:hover {
    background: #1f2937;
    border-color: #1d7a7a;
    transform: scale(1.02);
}
html.dark .quote-option-button.is-selected {
    background: rgba(29, 122, 122, 0.15);
    border-color: #1d7a7a;
    box-shadow: 0 0 20px rgba(29, 122, 122, 0.15);
}
html.dark .quote-option-button__text {
    color: #ffffff;
}
html.dark .quote-option-button__icon--navy {
    background: rgba(75, 85, 99, 0.2);
    color: #cbd5e1;
}

html.dark .quote-field span { color: #d1d5db; font-weight: 500; }
html.dark .quote-field input,
html.dark .quote-field textarea,
html.dark .quote-field select {
    background: #111827;
    border: 1px solid #374151;
    color: #ffffff;
    transition: all 0.25s ease;
}
html.dark .quote-field input::placeholder,
html.dark .quote-field textarea::placeholder {
    color: #6b7280;
}
html.dark .quote-field input:focus,
html.dark .quote-field textarea:focus,
html.dark .quote-field select:focus {
    border-color: #1d7a7a;
    background: #1f2937;
    box-shadow: 0 0 15px rgba(29, 122, 122, 0.15);
    outline: none;
}
html.dark .quote-lead-form__note {
    color: #6b7280;
}
html.dark .quote-toast {
    background: #1f2937;
    border-color: #374151;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* ── Animated Nav Logo Component for Quote Landing Page ── */
.wl-stage {
    position: relative;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-width: 150px;
}
.wl-panel-anim, .wl-panel-static {
    position: absolute;
    left: 50%;
    white-space: nowrap;
    display: flex;
    align-items: baseline;
}
.wl-panel-anim { transform: translateX(calc(-50% + 110%)); opacity: 0; }
.wl-panel-static { transform: translateX(-50%); }
.wl-mark-row { position: relative; display: flex; align-items: baseline; }
.wl-gl {
    font-family: 'Satoshi', sans-serif;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -1.2px;
    line-height: 1;
    display: inline-block;
    opacity: 0;
    transform: translateY(8px);
    color: #0c1e1c;
}
html.dark .wl-gl { color: #d1d5db; }
.wl-gl.wl-t { color: #1d7a7a; }
html.dark .wl-gl.wl-t { color: #1d7a7a; }
.wl-rule {
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 2px;
    width: 0%;
    border-radius: 2px;
    background: linear-gradient(90deg, #1d7a7a, #64748B, #ff8200);
}
html.dark .wl-rule { background: linear-gradient(90deg, #1d7a7a, #5a7a78, #ff8200); }
.wl-s-brace {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', monospace;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.5px;
    line-height: 1;
    color: #1d7a7a;
}
html.dark .wl-s-brace { color: #1d7a7a; }
.wl-s-word {
    font-family: 'Satoshi', sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.8px;
    line-height: 1;
    color: #0c1e1c;
}
html.dark .wl-s-word { color: #d1d5db; }