/* MyDocFriends Pricing / Sales page */
.quote-page {
    --q-primary: #02294d;
    --q-accent: #26c5bd;
    --q-ink: #0f1c2e;
    --q-muted: #5b6b7c;
    --q-surface: #f3f7f9;
    --q-card: #ffffff;
    --q-line: rgba(2, 41, 77, 0.1);
    --q-radius: 1.25rem;
    color: var(--q-ink);
    background: #fff;
    overflow: hidden;
}

.quote-page img {
    max-width: 100%;
    height: auto;
    display: block;
}

.quote-kicker,
.quote-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--q-accent);
    margin-bottom: 0.75rem;
}

.quote-hero {
    position: relative;
    min-height: min(92vh, 760px);
    display: flex;
    align-items: center;
    color: #fff;
    isolation: isolate;
    overflow: hidden;
}

.quote-hero__media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    transform: scale(1.06);
    animation: quoteHeroZoom 22s ease-in-out infinite alternate;
    z-index: 0;
}

.quote-hero__media--abstract {
    background-image:
        radial-gradient(circle at 18% 20%, rgba(38, 197, 189, 0.35), transparent 32%),
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.12), transparent 28%),
        radial-gradient(circle at 70% 75%, rgba(38, 197, 189, 0.2), transparent 35%),
        linear-gradient(135deg, #011a33 0%, #02294d 45%, #0a3d5c 100%);
    animation: none;
    transform: none;
}

.quote-hero__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(105deg, rgba(2, 41, 77, 0.96) 0%, rgba(2, 41, 77, 0.88) 42%, rgba(2, 41, 77, 0.55) 68%, rgba(2, 41, 77, 0.35) 100%),
        linear-gradient(to top, rgba(2, 41, 77, 0.9) 0%, transparent 42%);
}

.quote-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    z-index: 2;
}

.quote-hero__glow--one {
    width: min(48vw, 420px);
    height: min(48vw, 420px);
    background: rgba(38, 197, 189, 0.38);
    top: -8%;
    right: 8%;
    animation: quoteGlowPulse 7s ease-in-out infinite;
}

.quote-hero__glow--two {
    width: min(40vw, 320px);
    height: min(40vw, 320px);
    background: rgba(38, 197, 189, 0.22);
    bottom: 6%;
    left: 18%;
    animation: quoteGlowPulse 9s ease-in-out infinite reverse;
}

.quote-hero__grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at 30% 50%, #000 20%, transparent 72%);
    -webkit-mask-image: radial-gradient(ellipse at 30% 50%, #000 20%, transparent 72%);
}

.quote-hero__wrap {
    position: relative;
    z-index: 3;
    width: 100%;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    padding: clamp(5rem, 11vw, 7.5rem) 0 clamp(3.5rem, 7vw, 5rem);
}

.quote-hero__copy {
    max-width: 36rem;
    animation: quoteFadeUp 0.85s ease both;
}

.quote-hero__brand {
    margin: 0 0 1rem;
    font-family: "Kalam", cursive;
    font-size: clamp(2.1rem, 5vw, 3.35rem);
    font-weight: 700;
    line-height: 1;
    color: #ffffff !important;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    position: relative;
    display: inline-block;
}

.quote-hero__brand::after {
    content: "";
    display: block;
    width: 4.5rem;
    height: 0.28rem;
    margin-top: 0.7rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--q-accent), rgba(38, 197, 189, 0.15));
    animation: quoteLineGrow 1.1s ease 0.25s both;
}

.quote-hero h1.quote-hero__title,
.quote-hero__title {
    font-family: "Inter Tight", sans-serif !important;
    font-size: clamp(1.85rem, 4.2vw, 3rem) !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    margin: 0 0 1rem !important;
    letter-spacing: -0.03em;
    max-width: 16ch;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.quote-hero__lead {
    font-size: clamp(1rem, 2vw, 1.12rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92) !important;
    margin: 0 0 1.85rem;
    max-width: 34rem;
}

.quote-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.quote-btn {
    border-radius: 999px;
    padding: 0.85rem 1.5rem;
    font-weight: 700;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.quote-btn i {
    font-size: 1.05rem;
    transition: transform 0.2s ease;
}

.quote-btn:hover {
    transform: translateY(-2px);
}

.quote-btn--primary:hover i {
    transform: translateX(3px);
}

.quote-btn--primary {
    background: var(--q-accent);
    color: #02294d;
    box-shadow: 0 12px 32px rgba(38, 197, 189, 0.4);
}

.quote-btn--primary:hover {
    background: #1fb0a9;
    color: #02294d;
}

.quote-btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);
}

.quote-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    border-color: #fff;
}

.quote-hero__visual {
    position: relative;
    min-height: 360px;
    animation: quoteFadeUp 1s ease 0.15s both;
}

.quote-hero__visual-main {
    position: relative;
    margin-left: auto;
    width: min(100%, 460px);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.12);
    transform: rotate(-1.5deg);
}

.quote-hero__visual-main img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.quote-hero__visual-side {
    position: absolute;
    left: 0;
    bottom: 8%;
    width: min(42%, 180px);
    border-radius: 1.15rem;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    border: 3px solid rgba(255, 255, 255, 0.85);
    animation: quoteFloat 5s ease-in-out infinite;
}

.quote-hero__visual-side img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.quote-hero__visual-accent {
    position: absolute;
    right: -2%;
    top: 4%;
    width: min(38%, 160px);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(38, 197, 189, 0.85);
    animation: quoteFloat 4.2s ease-in-out infinite reverse;
}

.quote-hero__visual-accent img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.quote-hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 1.25rem;
    transform: translateX(-50%);
    z-index: 4;
    width: 1.7rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    display: flex;
    justify-content: center;
    padding-top: 0.35rem;
}

.quote-hero__scroll span {
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 50%;
    background: var(--q-accent);
    animation: quoteScrollDot 1.6s ease-in-out infinite;
}

.quote-btn--outline {
    background: transparent;
    color: var(--q-primary);
    border-color: rgba(2, 41, 77, 0.2);
}

.quote-btn--outline:hover {
    background: var(--q-primary);
    color: #fff;
}

.quote-trust {
    background: var(--q-primary);
    color: #fff;
    padding: 1.25rem 0;
}

.quote-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.quote-trust__item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.35rem 0;
}

.quote-trust__item i {
    font-size: 1.55rem;
    color: var(--q-accent);
    flex-shrink: 0;
}

.quote-trust__item strong {
    display: block;
    font-size: 0.95rem;
    line-height: 1.2;
}

.quote-trust__item span {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
}

.quote-section {
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.quote-section--alt {
    background:
        radial-gradient(circle at top right, rgba(38, 197, 189, 0.12), transparent 36%),
        linear-gradient(180deg, #f5fafb 0%, #eef5f7 100%);
}

.quote-section__head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.75rem;
}

.quote-section__head h2,
.quote-feature-showcase__copy h3,
.quote-form-intro h2,
.quote-feature-card h3,
.quote-package__top h3 {
    color: var(--q-primary) !important;
    -webkit-text-fill-color: var(--q-primary);
    font-family: "Inter Tight", sans-serif !important;
}

.quote-section__head h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 800;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

.quote-section__head p {
    margin: 0;
    color: var(--q-muted);
    line-height: 1.65;
}

.quote-feature-showcase {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.quote-feature-showcase__visual {
    position: relative;
}

.quote-feature-showcase__visual>img {
    width: 100%;
    border-radius: calc(var(--q-radius) + 0.25rem);
    box-shadow: 0 24px 50px rgba(2, 41, 77, 0.18);
    object-fit: cover;
    max-height: 420px;
    background: #eef8f8;
}

.quote-feature-showcase__float {
    position: absolute;
    right: -4%;
    bottom: -8%;
    width: min(46%, 220px);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(2, 41, 77, 0.22);
    border: 4px solid #fff;
    animation: quoteFloat 4.5s ease-in-out infinite;
}

.quote-feature-showcase__float img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.quote-feature-showcase__copy h3 {
    font-size: clamp(1.35rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: var(--q-primary);
    margin: 0 0 0.85rem;
}

.quote-feature-showcase__copy>p {
    color: var(--q-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.quote-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.7rem;
}

.quote-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    color: var(--q-ink);
    font-weight: 500;
    line-height: 1.45;
}

.quote-check-list i {
    color: var(--q-accent);
    font-size: 1.15rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.quote-features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.quote-feature-card {
    background: var(--q-card);
    border: 1px solid var(--q-line);
    border-radius: var(--q-radius);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

.quote-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(2, 41, 77, 0.12);
}

.quote-feature-card__media {
    height: 170px;
    overflow: hidden;
    background: linear-gradient(145deg, #eef8f8 0%, #f7fbfd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem;
}

.quote-feature-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0.65rem;
    transition: transform 0.45s ease;
}

.quote-feature-card:hover .quote-feature-card__media img {
    transform: scale(1.06);
}

.quote-feature-card__body {
    padding: 1.15rem 1.2rem 1.35rem;
}

.quote-feature-card__icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(38, 197, 189, 0.14);
    color: var(--q-primary);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.quote-feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--q-primary);
    margin: 0 0 0.45rem;
}

.quote-feature-card p {
    margin: 0;
    color: var(--q-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.quote-packages {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: stretch;
}

.quote-billing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem;
    margin: 0 auto 1.75rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--q-line);
    box-shadow: 0 10px 24px rgba(2, 41, 77, 0.06);
    width: fit-content;
    max-width: 100%;
}

.quote-billing-toggle__btn {
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--q-ink, #02294d);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.65rem 1.15rem;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.quote-billing-toggle__btn.is-active {
    background: #26c5bd;
    color: #02294d;
}

.quote-billing-toggle__save {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    background: rgba(2, 41, 77, 0.1);
    color: #02294d;
    border-radius: 999px;
    padding: 0.18rem 0.45rem;
}

.quote-billing-toggle__btn.is-active .quote-billing-toggle__save {
    background: rgba(255, 255, 255, 0.55);
}

.quote-package.is-hidden,
.quote-pill.is-hidden {
    display: none !important;
}

.quote-pill small {
    opacity: 0.7;
    font-weight: 500;
}

.quote-package {
    position: relative;
    background: #fff;
    border: 1px solid var(--q-line);
    border-radius: calc(var(--q-radius) + 0.15rem);
    padding: 1.6rem 1.4rem 1.45rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.quote-package.is-featured,
.quote-package.is-selected {
    border-color: var(--q-accent);
    box-shadow: 0 22px 44px rgba(2, 41, 77, 0.14);
    transform: translateY(-4px);
}

.quote-package.is-featured {
    background: linear-gradient(180deg, #ffffff 0%, #f2fbfa 100%);
}

.quote-package__ribbon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--q-primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
}

.quote-package__badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--q-accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.45rem;
}

.quote-package__top h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--q-primary);
    margin: 0 0 0.45rem;
}

.quote-package__top p {
    margin: 0;
    color: var(--q-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.quote-package__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.55rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid var(--q-line);
}

.quote-package__price-row {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.quote-package__original {
    color: var(--q-muted);
    font-size: 0.95rem;
    font-weight: 600;
}

.quote-package__discount {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #02294d;
    background: rgba(38, 197, 189, 0.18);
    border-radius: 999px;
    padding: 0.2rem 0.5rem;
}

.quote-package__price strong {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--q-primary);
    letter-spacing: -0.03em;
}

.quote-package__price span {
    color: var(--q-muted);
    font-size: 0.9rem;
}

.quote-package__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
    flex-grow: 1;
}

.quote-package__list li {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    font-size: 0.92rem;
    line-height: 1.4;
    color: var(--q-ink);
}

.quote-package__list i {
    color: var(--q-accent);
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.quote-form-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(1.5rem, 4vw, 2.75rem);
    align-items: start;
}

.quote-form-intro h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--q-primary);
    margin: 0 0 0.75rem;
}

.quote-form-intro>p {
    color: var(--q-muted);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.quote-form-visual {
    border-radius: var(--q-radius);
    overflow: hidden;
    margin-bottom: 1.25rem;
    box-shadow: 0 18px 40px rgba(2, 41, 77, 0.14);
}

.quote-form-visual img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.quote-form-card {
    background: #fff;
    border: 1px solid var(--q-line);
    border-radius: calc(var(--q-radius) + 0.15rem);
    padding: clamp(1.25rem, 3vw, 1.85rem);
    box-shadow: 0 18px 40px rgba(2, 41, 77, 0.08);
}

.quote-form-card .form-label {
    font-weight: 600;
    color: var(--q-primary);
    font-size: 0.9rem;
}

.quote-form-card .form-control {
    border-radius: 0.75rem;
    border-color: rgba(2, 41, 77, 0.14);
    padding: 0.7rem 0.9rem;
    min-height: 2.85rem;
}

.quote-form-card .form-control:focus {
    border-color: var(--q-accent);
    box-shadow: 0 0 0 0.2rem rgba(38, 197, 189, 0.2);
}

.quote-package-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.quote-pill {
    cursor: pointer;
    margin: 0;
}

.quote-pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.quote-pill span {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(2, 41, 77, 0.16);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--q-primary);
    background: #fff;
    transition: all 0.2s ease;
}

.quote-pill input:checked+span {
    background: var(--q-primary);
    border-color: var(--q-primary);
    color: #fff;
}

.quote-form-note {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--q-muted);
    text-align: center;
}

.quote-submit .spinner i {
    animation: quoteSpin 0.8s linear infinite;
}

.quote-success {
    text-align: center;
    padding: 1.5rem 0.5rem;
}

.quote-success i {
    font-size: 3rem;
    color: var(--q-accent);
    margin-bottom: 0.75rem;
}

.quote-success h3 {
    color: var(--q-primary);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.quote-success p {
    color: var(--q-muted);
    margin-bottom: 1.25rem;
}

.quote-alert {
    border-radius: 0.85rem;
}

@keyframes quoteFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes quoteHeroZoom {
    from {
        transform: scale(1.06);
    }

    to {
        transform: scale(1.14);
    }
}

@keyframes quoteFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes quoteGlowPulse {

    0%,
    100% {
        opacity: 0.55;
        transform: scale(1);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.12);
    }
}

@keyframes quoteLineGrow {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 4.5rem;
        opacity: 1;
    }
}

@keyframes quoteScrollDot {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    70% {
        transform: translateY(12px);
        opacity: 0.2;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes quoteSpin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1199.98px) {
    .quote-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .quote-hero {
        min-height: auto;
        align-items: stretch;
    }

    .quote-hero__wrap {
        grid-template-columns: 1fr;
        padding-top: clamp(4.5rem, 12vw, 6rem);
        padding-bottom: 4rem;
    }

    .quote-hero__copy {
        max-width: none;
        text-align: center;
        margin: 0 auto;
    }

    .quote-hero__brand {
        display: inline-block;
    }

    .quote-hero__brand::after {
        margin-left: auto;
        margin-right: auto;
    }

    .quote-hero__title {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .quote-hero__lead {
        margin-left: auto;
        margin-right: auto;
    }

    .quote-hero__actions {
        justify-content: center;
    }

    .quote-hero__visual {
        min-height: 300px;
        max-width: 520px;
        margin: 0.5rem auto 0;
    }

    .quote-hero__visual-main {
        margin: 0 auto;
        transform: none;
    }

    .quote-hero__visual-main img {
        height: 260px;
    }

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

    .quote-feature-showcase,
    .quote-form-layout,
    .quote-packages {
        grid-template-columns: 1fr;
    }

    .quote-feature-showcase__float {
        right: 4%;
        bottom: -6%;
    }

    .quote-package.is-featured {
        transform: none;
    }

    .quote-billing-toggle {
        width: 100%;
    }

    .quote-billing-toggle__btn {
        flex: 1;
        justify-content: center;
        padding: 0.65rem 0.75rem;
        font-size: 0.88rem;
    }
}

.quote-demo-login {
    background:
        radial-gradient(circle at 12% 20%, rgba(38, 197, 189, 0.14), transparent 34%),
        radial-gradient(circle at 88% 80%, rgba(2, 41, 77, 0.06), transparent 40%),
        linear-gradient(180deg, #ffffff 0%, #f3f7f9 100%);
}

.quote-demo-login__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.quote-demo-card {
    background: var(--q-card);
    border: 1px solid var(--q-line);
    border-radius: var(--q-radius);
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    box-shadow: 0 12px 36px rgba(2, 41, 77, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.quote-demo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(2, 41, 77, 0.1);
}

.quote-demo-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(2, 41, 77, 0.08);
    color: var(--q-primary);
    font-size: 1.45rem;
    margin-bottom: 0.25rem;
}

.quote-demo-card__icon--patient {
    background: rgba(38, 197, 189, 0.16);
    color: #0f7f79;
}

.quote-demo-card h3 {
    margin: 0;
    font-size: 1.35rem;
    color: var(--q-primary);
}

.quote-demo-card__role {
    margin: 0 0 0.35rem;
    color: var(--q-muted);
    font-size: 0.95rem;
}

.quote-demo-card__creds {
    margin: 0 0 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 0.85rem;
    background: var(--q-surface);
    border: 1px solid var(--q-line);
}

.quote-demo-card__creds > div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.35rem 0;
}

.quote-demo-card__creds > div + div {
    border-top: 1px dashed rgba(2, 41, 77, 0.12);
}

.quote-demo-card__creds dt {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--q-muted);
}

.quote-demo-card__creds dd {
    margin: 0;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--q-ink);
    word-break: break-all;
    text-align: right;
}

.quote-demo-card .quote-btn {
    margin-top: auto;
}

@media (max-width: 991.98px) {
    .quote-demo-login__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .quote-demo-login__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .quote-hero__visual-side {
        width: 38%;
        bottom: 4%;
    }

    .quote-hero__visual-side img {
        height: 140px;
    }

    .quote-hero__visual-accent {
        width: 34%;
        top: 0;
    }

    .quote-hero__visual-accent img {
        height: 90px;
    }

    .quote-trust__grid,
    .quote-features-grid {
        grid-template-columns: 1fr;
    }

    .quote-hero__actions {
        flex-direction: column;
    }

    .quote-hero__actions .btn {
        width: 100%;
    }

    .quote-feature-showcase__float {
        position: relative;
        right: auto;
        bottom: auto;
        width: 70%;
        margin: -2rem auto 0;
    }

    .quote-package__ribbon {
        position: static;
        align-self: flex-start;
        margin-bottom: 0.35rem;
    }
}