/* ===================================================
   DESKTOP.CSS - overrides only
   =================================================== */

body{
    padding-bottom:0;
}

/* Restore hover effects */
.soft-card{
    transition:transform .18s ease, box-shadow .18s ease;
}
.soft-card:hover{
    transform:translateY(-3px);
    box-shadow:0 14px 36px rgba(0,0,0,.10);
}

/* Hero scale */
.hero h1{
    font-size:3rem;
}
.typewriter{
    display: inline-block;
    white-space: nowrap;
}
.typewriter__text{
    display: inline-block;
}
.typewriter__cursor{
    display: inline-block;
    margin-left: -0.05em;
    animation: typewriterBlink 1s steps(1, end) infinite;
}
.typewriter--static .typewriter__cursor{
    display: none;
}
@keyframes typewriterBlink{
    0%, 49%{ opacity: 1; }
    50%, 100%{ opacity: 0; }
}
@media (prefers-reduced-motion: reduce){
    .typewriter__cursor{
        animation: none;
    }
}

/* Hero buttons inline */
.hero-cta{
    display:flex;
    gap:.75rem;
}
.hero-cta .btn{
    padding:.8rem 1.2rem;
}
.seniors-page .hero-cta{
    display:none;
}

/* Hide mobile CTA bar */
.mobile-cta-bar{
    display:none;
}

/* Desktop navbar alignment */
.navbar .container{
    align-items: center;
}
.navbar{
    padding: .65rem 0;
    font-family: "Source Sans 3", sans-serif;
    letter-spacing: .01em;
    box-shadow: 0 6px 18px rgba(15, 40, 25, 0.06);
}
.navbar-brand{
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
}
.navbar-brand svg{
    height: 66px;
    width: auto;
    max-height: 66px;
}
.navbar-collapse{
    width: auto;
    align-items: center;
}
.navbar-nav{
    align-items: center;
    gap: 1.2rem;
}
.navbar-nav .nav-link{
    padding-top: .35rem;
    padding-bottom: .35rem;
    line-height: 1;
    font-size: 1.08rem;
    font-weight: 600;
    color: #1f2a24;
    transition: color 160ms ease, border-color 160ms ease;
    border-bottom: 2px solid transparent;
    border-left: 0;
    position: relative;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus{
    color: #1f7a4a;
    border-bottom-color: rgba(31, 122, 74, 0.35);
}
.navbar-nav .nav-link.active{
    color: #1f7a4a;
    border-bottom-color: #1f7a4a;
}
.navbar-nav .nav-link::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: #1f7a4a;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after{
    transform: scaleX(1);
}
.navbar-nav .nav-link.active::after{
    transform: scaleX(1);
    animation: navSlideIn 260ms ease;
}
.navbar-nav .dropdown-toggle::after{
    display: none;
}
.nav-caret{
    display: inline-block;
    margin-left: .35rem;
    width: 0;
    height: 0;
    border-left: .3rem solid transparent;
    border-right: .3rem solid transparent;
    border-top: .35rem solid currentColor;
    opacity: .7;
    vertical-align: middle;
}
.navbar-nav .dropdown-menu{
    border-radius: 14px;
    padding: .4rem;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 12px 24px rgba(15, 40, 25, 0.12);
}
.navbar-nav .dropdown-item{
    border-radius: 10px;
    font-weight: 600;
    color: #1f2a24;
    padding: .45rem .75rem;
}
.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus{
    background: #eef8f2;
    color: #1f7a4a;
}
.services-menu{
    display: flex;
    align-items: center;
    gap: .2rem;
}
.services-dropdown-toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    padding: .15rem .35rem;
    border-radius: 999px;
    color: #1f2a24;
    transition: color 160ms ease, background 160ms ease;
}
.services-dropdown-toggle:hover,
.services-dropdown-toggle:focus{
    color: #1f7a4a;
    background: rgba(31, 122, 74, 0.08);
}
.services-dropdown-toggle:focus-visible{
    outline: 2px solid rgba(31, 122, 74, 0.45);
    outline-offset: 2px;
}

@media (min-width: 992px) {
    .services-menu:hover > .dropdown-menu {
        display: block;
    }
    .services-dropdown-menu:hover{
        display: block;
    }

.services-menu > .dropdown-toggle::after {
        margin-left: 0.4rem;
    }
}

.nav-wrap,
.navbar,
.navbar .container{
    overflow: visible;
}
.navbar-nav .dropdown{
    position: relative;
}
.navbar-nav .dropdown-menu{
    background: #ffffff;
    margin-top: .25rem;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2100;
    min-width: 520px;
    padding: 0;
}
.services-dropdown-menu.show{
    display: block;
}
@keyframes navSlideIn{
    from{ transform: scaleX(0); }
    to{ transform: scaleX(1); }
}
.navbar .btn{
    font-weight: 600;
    border-radius: 12px;
    padding: .5rem 1rem;
    font-size: 1rem;
}
.navbar .btn-success{
    box-shadow: 0 8px 18px rgba(31, 122, 74, 0.25);
}

/* Services mega menu */
.services-mega{
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    padding: 1rem;
    min-width: 520px;
}
.services-mega__col{
    display: grid;
    gap: .5rem;
}
.services-mega__col--links{
    align-content: start;
    padding-left: .75rem;
    border-left: 1px solid rgba(0,0,0,0.06);
}
.services-mega__label{
    font-weight: 700;
    color: #1f2a24;
    font-size: .95rem;
    letter-spacing: .01em;
}
.services-mega__item{
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .65rem;
    padding: .6rem .65rem;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: background 140ms ease, transform 140ms ease, box-shadow 140ms ease;
}
.services-mega__item:hover,
.services-mega__item:focus{
    background: #f6faf9;
    box-shadow: inset 0 0 0 1px rgba(31,122,74,0.08);
    transform: translateY(-1px);
    color: #1f2a24;
}
.services-mega__icon{
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #e9f6ee;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.services-mega__title{
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
}
.services-mega__desc{
    font-size: .9rem;
    color: #4b5a55;
    margin-top: .1rem;
}
.services-mega__link{
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .35rem 0;
    text-decoration: none;
    color: #1f2a24;
    font-weight: 600;
    transition: color 120ms ease;
}
.services-mega__link:hover,
.services-mega__link:focus{
    color: #1f7a4a;
}
.services-mega__divider{
    border-top: 1px solid rgba(0,0,0,0.08);
    margin: .35rem 0;
}

/* Pricing list */
.pricing-list .pricing-row{
    border: 0;
    padding: .85rem 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.pricing-list .pricing-row:last-child{
    border-bottom: 0;
}
.pricing-note{
    margin: 1rem 0 1.5rem;
}

/* Tech care table */
.tech-care-table{
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.tech-care-table thead th{
    background: #f7fbf9;
    font-weight: 700;
    color: #1f2a24;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.tech-care-table th,
.tech-care-table td{
    padding: .9rem 1rem;
    vertical-align: top;
    border: 0;
}
.tech-care-table tbody tr + tr{
    border-top: 1px solid rgba(0,0,0,0.06);
}
.tech-care-table .feature-col{
    width: 28%;
    font-weight: 600;
    color: #1f2a3a;
}

/* Tech care header + toggle */
.tech-care-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: .35rem;
}
.tech-care-controls{
    display: flex;
    justify-content: flex-end;
    margin-top: .35rem;
}
.tech-care-toggle{
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    padding: .2rem;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #f1f5f4;
    font-size: .85rem;
}
.tech-care-toggle-btn{
    border: 0;
    background: transparent;
    color: #4b5a55;
    font-weight: 600;
    padding: .35rem .85rem;
    border-radius: 999px;
    transition: background 120ms ease, color 120ms ease, box-shadow 120ms ease;
}
.tech-care-toggle-btn.is-active{
    background: #1f7a4a;
    color: #ffffff;
    box-shadow: 0 8px 16px rgba(31, 122, 74, 0.22);
}
.tech-care-price--monthly{
    display: none;
}
.tech-care-page[data-tech-care-mode="monthly"] .tech-care-price--annual{
    display: none;
}
.tech-care-page[data-tech-care-mode="monthly"] .tech-care-price--monthly{
    display: inline;
}

/* CTA strip button sizing (desktop) */
.cta-button{
    min-height: 44px;
    padding: .55rem 1.1rem;
    font-size: 1rem;
    border-radius: 14px;
    width: auto;
    white-space: nowrap;
}

/* Services overview (desktop) */
.services-hero{
    padding: 2rem 2.2rem;
}
.services-hero__grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}
.service-path{
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    padding: 1.4rem 1.6rem;
    gap: 1.5rem;
}
.service-path__header{
    grid-template-columns: 1fr auto;
    align-items: start;
}
.service-path__lists{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}
.service-path__actions .btn{
    width: auto;
    min-width: 160px;
}

.setmore-embed-wrap {
    width: 100%;
    border-radius: 0.75rem;
    overflow: hidden;
}

.setmore-embed-wrap iframe {
    border: 0;
}

/* Seniors page desktop polish */
.seniors-hero h1{
    font-size:3.2rem;
}
.seniors-page{
    background:#fff;
}
.seniors-hero{
    background:#f6faf7;
}
.seniors-hero::before,
.seniors-hero::after{
    display:block;
    width:360px;
    height:360px;
    opacity:.85;
}
.seniors-hero::before{
    width:480px;
    height:480px;
    top:-220px;
    right:-200px;
    background:radial-gradient(circle,rgba(34,92,150,0.16),rgba(34,92,150,0));
}
.seniors-hero::after{
    width:420px;
    height:420px;
    bottom:-220px;
    left:-220px;
    background:radial-gradient(circle,rgba(31,122,74,0.16),rgba(31,122,74,0));
}

.seniors-split{
    position:relative;
}
.seniors-trust{
    grid-template-columns:repeat(3,1fr);
    gap:1.5rem;
    padding:1.25rem 1.5rem;
    box-shadow:0 16px 34px rgba(31,122,74,0.12);
}

.seniors-tags{
    display:grid;
    grid-template-columns:repeat(4, minmax(0,1fr));
    gap:.35rem 2rem;
    max-width:none;
}
.seniors-tags li{
    position:relative;
    padding-left:0;
    text-align:center;
}
.seniors-tags li:not(:nth-child(4n+1))::before{
    content:"";
    position:absolute;
    left:-1rem;
    top:50%;
    width:6px;
    height:6px;
    border-radius:999px;
    background:rgba(31,122,74,0.45);
    transform:translateY(-50%);
}
.seniors-panel,
.seniors-note{
    padding:1.6rem 1.8rem;
}

.seniors-price-cta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:1rem;
}
.seniors-price-actions{
    display:flex;
    gap:.65rem;
    flex:0 0 auto;
}
.seniors-pricing-section{
    padding-top:2.5rem;
    padding-bottom:3rem;
    background:#f6faf9;
}
.seniors-pricing-section .seniors-price-title{
    font-size:1.35rem;
}
.seniors-pricing-section .seniors-price-cta{
    margin-top:1.1rem;
    padding-top:.85rem;
    border-top:1px solid rgba(0,0,0,0.08);
}
.seniors-pricing-section .seniors-price-actions .btn{
    min-height:48px;
    padding:.65rem 1.2rem;
    border-radius:16px;
}
.seniors-trust-item + .seniors-trust-item{
    border-top:0;
    padding-top:0;
    border-left:1px dashed rgba(0,0,0,0.08);
    padding-left:1.25rem;
}

/* Home page */
.home-hero{
    position:relative;
    overflow:hidden;
    background:#f6faf7;
}
.home-hero::before,
.home-hero::after{
    display:block;
    width:360px;
    height:360px;
    opacity:.85;
}
.home-hero::before{
    width:480px;
    height:480px;
    top:-220px;
    right:-200px;
    background:radial-gradient(circle,rgba(31,122,74,0.16),rgba(31,122,74,0));
}
.home-hero::after{
    width:420px;
    height:420px;
    bottom:-220px;
    left:-220px;
    background:radial-gradient(circle,rgba(34,92,150,0.16),rgba(34,92,150,0));
}
.home-hero .container{
    position:relative;
    z-index:1;
}
.home-band{
    background:#ffffff;
}
.home-details{
    background:#f7fbff;
}

/* Appointments */
.appointments-page{
    padding-top: 2rem !important;
}
.appt-skeleton{
    display: none;
}
html.js .appt-loading .appt-skeleton{
    display: block;
}
html.js .appt-loading [data-appt-content]{
    display: none;
}
.appt-skeleton-card{
    border: 1px solid rgba(0,0,0,0.08);
}
.appt-skeleton-block{
    background: linear-gradient(90deg, #f1f3f5 0%, #e7eaec 50%, #f1f3f5 100%);
    background-size: 200% 100%;
    animation: apptShimmer 1.15s ease-in-out infinite;
}
.appt-skeleton-bar{
    height: 34px;
    width: 200px;
    border-radius: 999px;
    margin-left: auto;
    margin-bottom: 1.25rem;
}
.appt-skeleton-title{
    height: 22px;
    width: 45%;
    border-radius: 12px;
    margin-bottom: .9rem;
}
.appt-skeleton-line{
    height: 12px;
    width: 70%;
    border-radius: 999px;
    margin-bottom: .7rem;
}
.appt-skeleton-line.is-short{
    width: 45%;
}
.appt-skeleton-line.is-medium{
    width: 65%;
}
.appt-skeleton-line.is-long{
    width: 85%;
}
.appt-skeleton-pill-row{
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: .6rem;
}
.appt-skeleton-pill{
    height: 44px;
    width: 160px;
    border-radius: 999px;
}
.appt-skeleton-actions{
    display: flex;
    justify-content: space-between;
    gap: .75rem;
    margin-top: 1.5rem;
}
.appt-skeleton-btn{
    height: 44px;
    width: 120px;
    border-radius: 12px;
}
.appt-skeleton-btn.is-wide{
    width: 160px;
}
.appt-skeleton-btn-lg{
    height: 52px;
    width: 100%;
    border-radius: 14px;
    margin-top: 1rem;
}
.appointments-page .soft-card{
    transition: box-shadow .18s ease;
}
.appointments-page .soft-card:hover{
    transform: none;
}
.appt-hero{
    padding: 2.4rem 2.75rem;
}
.appt-hero-actions{
    display: flex;
    gap: .75rem;
}
.appt-hero-btn{
    min-height: 52px;
    padding: .75rem 1.4rem;
}
.appt-grid--services{
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.appt-grid--staff{
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.appt-grid--times{
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.appt-summary{
    position: sticky;
    top: 110px;
}
.appt-mode-toggle{
    justify-content: space-between;
}
.appt-question{
    display: block;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.appt-question-title{
    margin-bottom: .5rem;
    font-size: 1.05rem;
    text-align: center;
}
.appt-choice-group{
    display: flex;
    gap: .75rem;
    flex: 0 0 auto;
    justify-content: center;
    flex-wrap: wrap;
}
.appt-followup{
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.appt-question-header{
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: .5rem;
}
.appt-question-header .appt-question-title{
    margin: 0;
    font-size: 1rem;
}
.appt-category-back{
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    border-radius: 999px;
    padding: .4rem .85rem;
    font-weight: 600;
    line-height: 1.2;
}
.appt-category-back .appt-back-icon{
    font-size: 1rem;
    line-height: 1;
}
.appt-flow.simple-paged{
    min-height: 0;
    position: relative;
}
.appt-guided-actions{
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    max-width: 520px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.appt-guided-actions .btn{
    width: auto;
    min-width: 0;
    min-height: 44px;
    border-radius: 12px;
    padding: .55rem 1.1rem;
}
.appt-next{
    display: none;
}
.appt-next.is-visible{
    display: inline-flex;
}
.appt-flow:not(.simple-paged) .appt-next{
    display: none;
}
.appt-flow.simple-paged .appt-guided-actions{
    margin-top: 1.25rem;
}
.appt-flow.simple-paged .appt-question{
    min-height: 0;
}
.appt-flow.simple-paged .appt-question-title{
    font-size: 1.5rem;
}
.appt-flow.simple-paged .appt-choice-group .appt-choice{
    min-height: 58px;
    font-size: 1.05rem;
}
.appt-flow.simple-paged .appt-step-number{
    width: 46px;
    height: 46px;
    border-radius: 16px;
    font-size: 1.05rem;
}
.appt-mode-switch{
    min-width: 180px;
    font-size: .82rem;
}
.appt-mode-bar{
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.25rem;
}
.appt-tech-step{
    display: none;
}
.appt-booking-banner{
    margin: 0 0 1rem;
    padding: .6rem .85rem;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #f1f5f4;
    color: #1f2a3a;
    text-align: center;
    font-size: .95rem;
}
.required-star{
    color: #b42318;
    font-weight: 700;
    margin-left: .2rem;
}
.appt-success-status{
    margin-top: .75rem;
    color: #4b5563;
    font-size: .95rem;
}
.appt-success-status:empty{
    display: none;
}
.appt-mode-bar .appt-mode-switch{
    width: min(240px, 100%);
}
#appt-layout.guided-only{
    position: relative;
}
#appt-layout.guided-only .col-lg-8{
    flex: 0 0 100%;
    max-width: 100%;
}
#appt-layout.guided-only .col-lg-4{
    display: none;
}
#appt-layout.guided-only .appt-summary{
    padding: .75rem 1rem;
}
.appt-calendar-day,
.appt-calendar-empty{
    height: 42px;
}
.appt-time-btn.is-skeleton{
    background: linear-gradient(90deg, #f1f3f5 0%, #e7eaec 50%, #f1f3f5 100%);
    background-size: 200% 100%;
    color: transparent;
    border-color: rgba(0,0,0,0.08);
    pointer-events: none;
    animation: apptShimmer 1.15s ease-in-out infinite;
}
@keyframes apptShimmer{
    0%{ background-position: 0% 0; }
    100%{ background-position: -200% 0; }
}
.appt-flow.is-success .appt-step{
    display: none !important;
}
.appt-success{
    display: none;
    text-align: center;
}
.appt-flow.is-success .appt-success{
    display: block;
}
.appt-success-badge{
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #e7f3ec;
    color: #1f7a4a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: .75rem;
}
.appt-success-card{
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #ffffff;
    text-align: left;
}
.appt-summary-card{
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #ffffff;
    text-align: left;
}
.appt-status-modal .modal-header{
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.appt-status-modal .modal-title{
    font-weight: 700;
}
.appt-status-list{
    padding-left: 1.1rem;
    margin: 0;
}
#appt-status-modal.is-error .modal-header{
    background: #fef2f2;
}
#appt-status-modal.is-success .modal-header{
    background: #ecfdf3;
}
#appt-layout.is-success .col-lg-8{
    flex: 0 0 100%;
    max-width: 100%;
}
#appt-layout.is-success .col-lg-4{
    display: none;
}

.copy-phone-field{
    cursor: pointer;
    user-select: all;
}
.phone-pill{
    border-radius: 999px;
    width: min(100%, 320px);
    min-width: 0;
    max-width: 100%;
    padding: .65rem 1.4rem;
    font-size: 1.35rem;
    font-weight: 600;
}

.modal-cta-btn{
    border-radius: 12px;
}

.call-btn.call-btn--disabled{
    background: #ffffff;
    border-color: #d1d5db;
    color: #9ca3af;
    box-shadow: none;
}
.call-btn.call-btn--disabled:hover,
.call-btn.call-btn--disabled:focus{
    background: #ffffff;
    border-color: #d1d5db;
    color: #9ca3af;
}

.modal-card{
    width: 100%;
    padding: 1.1rem 1.1rem;
    border-radius: 16px;
    border: 2px solid rgba(0,0,0,0.08);
    background: #ffffff;
    display: flex;
    align-items: center;
}
.modal-card__left{
    flex: 1 1 55%;
}
.modal-card__brand{
    font-family: "Fraunces", serif;
    font-size: 1.5rem;
    line-height: 1.1;
    color: #1f2a24;
}
.modal-card__tagline{
    margin-top: .4rem;
    color: #4b5a55;
    font-size: .95rem;
}
.modal-card__left--logo{
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-card__logo{
    width: 119px;
    height: auto;
}
.modal-card__right{
    flex: 1 1 45%;
    display: grid;
    gap: .66rem;
    border-left: 1px solid rgba(0,0,0,0.08);
    padding-left: 1.48rem;
}
.modal-card__row{
    display: inline-flex;
    align-items: center;
    gap: .77rem;
    font-size: 1.155rem;
    color: #1f2a24;
}
.modal-card__row a{
    color: #1f2a24;
    text-decoration: none;
}
.modal-card__row a:hover,
.modal-card__row a:focus{
    color: #1f7a4a;
    text-decoration: none;
}
.modal-card__row--copy{
    background: transparent;
    border: 0;
    padding: 0;
    text-align: left;
    cursor: pointer;
}
.modal-card__icon{
    width: 22px;
    height: 22px;
    opacity: .85;
    filter: brightness(0) saturate(100%) invert(33%) sepia(28%) saturate(1200%) hue-rotate(90deg) brightness(92%) contrast(92%);
}
.modal-card__close{
    position: absolute;
    top: .6rem;
    right: .6rem;
    z-index: 2;
}
.modal-card__disclaimer{
    color: #4b5a55;
    font-size: 1.1rem;
    margin-top: .5rem;
}

/* Call/Text modal visuals */
.calltext-modal .modal-content{
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}
.calltext-modal .modal-dialog{
    max-width: 627px;
    margin-left: auto;
    margin-right: auto;
}
.calltext-modal .modal-body{
    padding: 2.09rem 1.71rem;
}
.calltext-modal .modal-card{
    padding: 1.98rem 2.04rem 1.7rem;
    border-radius: 0;
    min-height: 290px;
}

.copy-feedback-pill{
    display: none;
    align-self: flex-start;
    padding: .35rem .6rem;
    border-radius: 999px;
    background: #e9f6ee;
    color: #1f7a4a;
    font-size: .85rem;
    font-weight: 600;
    max-width: 100%;
    line-height: 1.2;
}
.copy-feedback-pill.is-visible{
    display: inline-flex;
}
.copy-feedback-pill.is-error{
    background: #fdecec;
    color: #b3261e;
}

.copy-toast{
    position: fixed;
    transform: translateY(6px);
    background: #1f7a4a;
    color: #ffffff;
    padding: .5rem .9rem;
    border-radius: 999px;
    font-size: .95rem;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
    z-index: 4000;
    max-width: 520px;
    text-align: center;
    top: 0;
    left: 0;
}
.copy-toast.is-visible{
    opacity: 1;
    transform: translateY(0);
}
.copy-toast.is-error{
    background: #b3261e;
}

/* Sectional backgrounds */
.sectional-page{
    background:#f8fbf9;
}
.sectional-band{
    background:#ffffff;
}
.sectional-band--sage{
    background:#f6faf9;
}
.sectional-band--cool{
    background:#f7fbff;
}
