﻿/* ===================================================
   MOBILE.CSS - phones & small tablets only
   =================================================== */

:root{
    --rc-green: #1f7a4a;
    --rc-soft: #f5fbf7;
    --rc-border: rgba(0,0,0,0.08);
    --rc-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

/* Reset / base */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
    margin:0;
    font-size:18px;
    line-height:1.55;
    background:#fff;
    -webkit-text-size-adjust:100%;
}
.js body{
    opacity:0;
    transition: opacity 220ms ease;
}
.js body.page-ready{
    opacity:1;
}
.js body.page-exit{
    opacity:0;
}
@media (prefers-reduced-motion: reduce){
    .js body{
        transition: none;
    }
}

/* Kill skip link entirely */
.skip-link{ display:none !important; }

/* Header (only navbar is sticky) */
header{
    position:sticky;
    top:0;
    z-index:2000;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(0,0,0,.06);
}

.navbar{
    padding:.6rem 0;
    flex-wrap: wrap;
}

.navbar-brand{
    font-size:1.05rem;
    font-weight:800;
    flex: 0 1 auto;
}

.navbar-toggler{
    border:1px solid var(--rc-border);
    border-radius:14px;
    padding:.55rem .7rem;
    margin-left: auto;
}

.navbar-collapse{
    width: 100%;
}
.navbar-collapse{
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,.06);
    margin-top: .5rem;
    padding: .35rem 0;
}
.navbar-nav .nav-link{
    color: #1f2a24;
    font-weight: 600;
    padding: .6rem .25rem;
    border-left: 3px solid transparent;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus{
    color: #1f7a4a;
    border-left-color: rgba(31,122,74,0.35);
}
.navbar-nav .nav-link.active{
    color: #1f7a4a;
    border-left-color: #1f7a4a;
}
.services-mobile-toggle{
    width: 100%;
    text-align: left;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding-left: .25rem;
}
.services-mobile-toggle:focus-visible{
    outline: 2px solid rgba(31,122,74,0.45);
    outline-offset: 2px;
}
.services-mobile-caret{
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 160ms ease;
}
.services-mobile-toggle:not(.collapsed) .services-mobile-caret{
    transform: rotate(225deg);
}
.services-mobile-more-toggle{
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: .6rem;
    padding-left: 1.1rem;
    text-align: left;
}
.services-mobile-caret--sm{
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 160ms ease;
}
.services-mobile-more-toggle:not(.collapsed) .services-mobile-caret--sm{
    transform: rotate(225deg);
}
@media (max-width: 991.98px){
    .services-mobile-collapse .services-mobile-more .nav-sub-link--nested{
        padding-left: 2.4rem;
    }
}

/* Pricing list */
.pricing-list .pricing-row{
    border: 0;
    padding: .95rem 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: flex-start;
    gap: .85rem;
}
.pricing-list .pricing-row:last-child{
    border-bottom: 0;
}
.pricing-list .pricing-row .service-emoji{
    width: 42px;
    height: 42px;
    border-radius: 14px;
}
.pricing-note{
    margin: 1rem 0 1.5rem;
}

/* Tech care header + toggle */
.tech-care-header{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    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: .2rem;
    padding: .2rem;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #f1f5f4;
    font-size: .82rem;
}
.tech-care-toggle-btn{
    border: 0;
    background: transparent;
    color: #4b5a55;
    font-weight: 600;
    padding: .3rem .7rem;
    border-radius: 999px;
}
.tech-care-toggle-btn.is-active{
    background: #1f7a4a;
    color: #ffffff;
}
.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;
}

/* 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: .8rem .9rem;
    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: 32%;
    font-weight: 600;
    color: #1f2a3a;
}

@media (max-width: 576px){
    .pricing-list .pricing-row{
        flex-direction: column;
        align-items: stretch;
        gap: .5rem;
    }
    .pricing-list .pricing-row .text-success{
        align-self: flex-start;
        padding-top: .1rem;
    }
}
.navbar-nav .nav-sub-link{
    padding-left: 1.1rem;
    font-weight: 600;
    font-size: .98rem;
    color: #3b4a43;
}
.navbar-nav .nav-sub-link:hover,
.navbar-nav .nav-sub-link:focus{
    color: #1f7a4a;
    border-left-color: rgba(31,122,74,0.35);
}
.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: 0;
    box-shadow: none;
    padding: .25rem 0 .25rem 1rem;
    margin: 0;
    background: transparent;
}
@media (max-width: 991.98px){
    .navbar-nav .dropdown-menu{
        position: static;
    }
    .services-dropdown-menu{
        display: none !important;
    }
    .services-mobile-collapse .nav-sub-link{
        padding-left: 1.6rem;
    }
}
.navbar-nav .dropdown-item{
    padding: .5rem .25rem;
    font-weight: 600;
    color: #1f2a24;
}
.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus{
    background: transparent;
    color: #1f7a4a;
}

.navbar-brand svg{
    width: clamp(180px, 45vw, 260px);
    height: clamp(46px, 12vw, 60px);
    display: block;
}

/* Trust bar - NOT sticky */
.trust-bar{
    background:var(--rc-soft);
    padding:.4rem .75rem;
    font-size:.92rem;
    color:#333;
    margin-bottom: 0 !important;
}

/* Hero */
.hero{
    background:linear-gradient(180deg,var(--rc-soft),#fff);
    padding-top:.4rem;
}
.hero .container{
    padding-top: .75rem !important;
    padding-bottom: .5rem !important;
}
.hero h1{
    font-size:2rem;
    letter-spacing:-.02em;
}
.home-hero h1 .typewriter{
    display: inline-block;
}
@media (max-width: 480px){
    .home-hero h1{
        font-size:1.8rem;
    }
    .home-hero h1 .typewriter{
        display:block;
        margin-top:.2rem;
        max-width:100%;
        min-width:0 !important;
    }
}
.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 .lead{
    font-size:1.05rem;
    color:#444;
}

/* Hero buttons: side-by-side, always */
.hero-cta{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:.65rem;
    margin-top:1.25rem;
}
.hero-cta .btn{
    min-height:50px;
    border-radius:16px;
    font-weight:700;
    white-space:nowrap;
    padding:.8rem .5rem;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}
.hero-cta .btn span{
    display:block;
}

/* Swap text on very small phones */
.hero-cta .cta-short{ display:none; }
@media (max-width:360px){
    .hero-cta .cta-long{ display:none; }
    .hero-cta .cta-short{ display:inline; }
}

/* Buttons */
.btn-success{
    background:var(--rc-green);
    border-color:var(--rc-green);
}
.btn-outline-secondary{
    border-radius:16px;
}

/* Cards */
.soft-card{
    border:1px solid rgba(0,0,0,.06);
    border-radius:18px;
    box-shadow:var(--rc-shadow);
}

/* Pills */
.pill{
    display:inline-flex;
    padding:.5rem .7rem;
    border-radius:999px;
    border:1px solid var(--rc-border);
    background:#fff;
    font-size:.95rem;
}

/* Icon bubbles */
.icon-bubble{
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #e9f6ee;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1f7a4a;
    flex: 0 0 auto;
}
.icon-bubble svg{
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* CTA strip */
.cta-strip{
    display:grid;
    gap:.75rem;
    padding:1rem;
    border-radius:18px;
    background:#fff;
    box-shadow:var(--rc-shadow);
}
.cta-strip .btn{
    width:100%;
    min-height:52px;
}

/* Setmore */
.setmore-embed{
    min-height:760px;
}

/* Bottom CTA bar */
.mobile-cta-bar{
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    background:rgba(255,255,255,.95);
    border-top:1px solid rgba(0,0,0,.10);
    padding:.65rem;
    z-index:3000;
}

/* Mobile bottom CTA bar */
.mobile-bottom-cta{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3000;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0,0,0,.10);
}
.appointments-page + .mobile-bottom-cta{
    display: none;
}
.mobile-bottom-cta-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem;
}
.mobile-bottom-cta .btn{
    min-height: 46px;
    border-radius: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
}
.mobile-bottom-cta .cta-icon{
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.mobile-cta-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:.6rem;
}
.mobile-cta-bar .btn{
    min-height:50px;
    border-radius:16px;
    font-weight:800;
}

/* Prevent overlap */
body{
    padding-bottom:86px;
}

/* Services: emoji bubble */
.service-emoji{
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: #e9f6ee;
    color: #1f7a4a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex: 0 0 auto;
}
.service-emoji svg{
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.service-emoji--sm{
    width: 36px;
    height: 36px;
    border-radius: 12px;
}
.service-emoji--sm svg{
    width: 18px;
    height: 18px;
}

/* Services CTA group */
.services-cta{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
}
@media (min-width: 992px){
    .services-cta{
        display: flex;
        width: auto;
    }
}

/* Modal polish */
.modal-content{
    border-radius: 18px;
}
.modal-header{
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.modal-footer{
    border-top: 1px solid rgba(0,0,0,0.06);
}

.copy-phone-field{
    cursor: pointer;
    user-select: all;
}
.phone-pill{
    border-radius: 999px;
    width: min(100%, 260px);
    min-width: 0;
    max-width: 100%;
    padding: .6rem 1.2rem;
    font-size: 1.25rem;
    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;
}

.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 .85rem;
    border-radius: 999px;
    font-size: .9rem;
    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: calc(100% - 2rem);
    text-align: center;
    top: 0;
    left: 0;
}
.copy-toast.is-visible{
    opacity: 1;
    transform: translateY(0);
}
.copy-toast.is-error{
    background: #b3261e;
}

/* Clickable service cards */
.service-card{
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

/* Desktop hover */
@media (hover: hover) and (pointer: fine){
    .service-card:hover{
        transform: scale(1.015);
        box-shadow: 0 14px 36px rgba(0,0,0,0.10);
    }
}

/* Mobile tap feedback */
.service-card:active{
    transform: scale(0.99);
}

/* Keyboard accessibility */
.service-card:focus{
    outline: 3px solid rgba(31,122,74,0.35);
    outline-offset: 2px;
}

/* Services overview */
.services-hero{
    background:#ffffff;
    border:1px solid rgba(31,122,74,0.12);
    box-shadow:var(--rc-shadow);
}
.services-hero__eyebrow{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:.25rem .75rem;
    border-radius:999px;
    background:#e9f6ee;
    color:#1f7a4a;
    font-weight:700;
    letter-spacing:.1em;
    text-transform:uppercase;
    font-size:.7rem;
    margin-bottom:.75rem;
}
.services-hero__grid{
    display:grid;
    gap:.8rem;
}
.services-hero__item{
    display:flex;
    gap:.7rem;
    align-items:flex-start;
}
.services-hero__dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#1f7a4a;
    box-shadow:0 0 0 4px rgba(31,122,74,0.15);
    margin-top:.3rem;
    flex:0 0 auto;
}

.service-paths{
    display:grid;
    gap:1rem;
    margin-top:1.5rem;
}
.service-path{
    display:grid;
    gap:1rem;
    padding:1rem;
    border:1px solid rgba(0,0,0,0.06);
    border-radius:18px;
    background:#ffffff;
    box-shadow:var(--rc-shadow);
}
.service-path__icon{
    width:52px;
    height:52px;
    border-radius:16px;
    background:#e9f6ee;
    color:#1f7a4a;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
}
.service-path__icon svg{
    width:26px;
    height:26px;
    stroke:currentColor;
    fill:none;
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
}
.service-path__header{
    display:grid;
    gap:.6rem;
}
.service-path__price{
    display:inline-flex;
    align-items:center;
    gap:.35rem;
    background:#f1f5f4;
    border-radius:999px;
    padding:.35rem .7rem;
    font-size:.92rem;
    font-weight:600;
    color:#1f2a24;
    align-self:flex-start;
}
.service-path__price span{
    font-weight:700;
}
.service-path__lists{
    display:grid;
    gap:.85rem;
    margin-top:.6rem;
}
.service-path__label{
    font-weight:700;
    font-size:.95rem;
    color:#1f2a24;
}
.service-path__list{
    margin:.35rem 0 0;
    padding-left:1.1rem;
    color:#4b5a55;
}
.service-path__list li{
    margin-bottom:.35rem;
}
.service-path__actions{
    margin-top:.85rem;
    display:flex;
    flex-wrap:wrap;
    gap:.6rem;
}
.service-path__actions .btn{
    width:100%;
    min-height:48px;
    border-radius:16px;
    font-weight:700;
}

/* Steps row: nicer layout */
.step-head{
    display:flex;
    align-items:center;
    gap:.75rem;
}

.step-badge{
    width: 36px;
    height: 36px;
    border-radius: 14px;
    background: #e9f6ee;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-weight: 800;
    color: #1f7a4a;
    flex: 0 0 auto;
}

/* Optional: slightly different look from other cards */
.step-card{
    border-color: rgba(0,0,0,0.06);
}

/* CTA button not gigantic on desktop */
.cta-button{
    min-height: 44px;
    padding: .55rem 1.1rem;
    border-radius: 14px;
    width: auto;
    white-space: nowrap;
}
@media (max-width: 991.98px){
    .cta-button{
        width: 100%;
        min-height: 52px;
        border-radius: 16px;
    }
}

/* Desktop-friendly CTA panel */
.cta-panel{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.1rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--rc-shadow);
}

.cta-title{
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.2;
}

.cta-sub{
    margin-top: .25rem;
}

.cta-actions{
    display: flex;
    gap: .65rem;
    flex: 0 0 auto;
}

/* Keep buttons tidy on desktop */
.cta-actions .btn{
    white-space: nowrap;
    min-height: 44px;
    padding: .55rem 1rem;
    border-radius: 14px;
}

/* Mobile: stack nicely */
@media (max-width: 991.98px){
    .cta-panel{
        flex-direction: column;
        align-items: stretch;
    }
    .cta-actions{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .cta-actions .btn{
        width: 100%;
        min-height: 52px;
        border-radius: 16px;
    }
}

.setmore-embed-wrap {
    width: 100%;
}

.setmore-embed-wrap iframe {
    width: 100%;
    height: 900px;
    border: 0;
    display: block;
}

/* Navbar logo */
.navbar-logo {
    height: 75px;
    max-height: 75px;
    width: auto;
    max-width: 100%;
    display: block;
}

/* Slightly larger on desktop */
@media (min-width: 992px) {
    .navbar-logo {
        height: 75px;
        max-height: 75px;
    }
}

/* Seniors page */
.seniors-page{
    background:#f8fbf9;
}

.seniors-hero{
    position:relative;
    overflow:hidden;
    background:#f6faf7;
}
.seniors-hero::before,
.seniors-hero::after{
    content:"";
    position:absolute;
    pointer-events:none;
    z-index:0;
    width:260px;
    height:260px;
    border-radius:999px;
    opacity:.9;
}
.seniors-hero::before{
    top:-120px;
    right:-120px;
    background:radial-gradient(circle,rgba(31,122,74,0.18),rgba(31,122,74,0));
}
.seniors-hero::after{
    bottom:-140px;
    left:-120px;
    background:radial-gradient(circle,rgba(34,92,150,0.18),rgba(34,92,150,0));
}
.seniors-hero::before,
.seniors-hero::after{
    display:none;
}
.seniors-hero .container{
    position:relative;
    z-index:1;
}
.seniors-hero h1{
    color:#18241c;
}
.seniors-hero .lead{
    color:#3b4a43;
}
.seniors-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    padding:.25rem .6rem;
    border-radius:999px;
    background:#e9f6ee;
    color:#1f7a4a;
    font-weight:700;
    letter-spacing:.12em;
}

.seniors-tags{
    display:grid;
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:.35rem 1.25rem;
    list-style:none;
    padding:0;
    margin:0;
    color:#3b4a43;
    font-size:.98rem;
}
.seniors-tags li{
    position:relative;
    padding-left:0;
    text-align:center;
}
.seniors-tags li:not(:nth-child(2n+1))::before{
    content:"";
    position:absolute;
    left:-.7rem;
    top:50%;
    width:6px;
    height:6px;
    border-radius:999px;
    background:rgba(31,122,74,0.45);
    transform:translateY(-50%);
}

.seniors-trust{
    margin-top:1.5rem;
    padding:1rem;
    border-radius:18px;
    background:#ffffff;
    border:1px solid rgba(31,122,74,0.18);
    box-shadow:var(--rc-shadow);
    display:grid;
    gap:.75rem;
}
.seniors-trust-item + .seniors-trust-item{
    border-top:1px dashed rgba(0,0,0,0.08);
    padding-top:.75rem;
}

.seniors-band{
    background:transparent;
}
.seniors-card{
    background:#ffffff;
    border:1px solid rgba(34,92,150,0.18);
}

.seniors-split{
    background:transparent;
}
.seniors-panel{
    padding:1.1rem 1.25rem;
    border-radius:20px;
    background:#ffffff;
    border:1px solid rgba(34,92,150,0.2);
    box-shadow:0 12px 24px rgba(34,92,150,0.12);
}
.seniors-panel-title{
    font-weight:700;
    margin-bottom:.6rem;
    color:#1f2a3a;
}
.seniors-panel-list{
    margin:0;
    padding-left:1.1rem;
    color:#3c4a45;
}
.seniors-panel-list li{
    margin-bottom:.6rem;
}

.seniors-pill-grid .pill{
    background:#ffffff;
    border-color:rgba(31,122,74,0.22);
    box-shadow:0 10px 22px rgba(31,122,74,0.08);
}

.seniors-reasons{
    background:transparent;
}

.seniors-coord{
    background:transparent;
}
.seniors-note{
    padding:1.1rem 1.25rem;
    border-radius:20px;
    background:#ffffff;
    border:1px solid rgba(31,122,74,0.18);
    box-shadow:0 12px 28px rgba(31,122,74,0.1);
}
.seniors-note-title{
    font-weight:700;
    margin-bottom:.6rem;
    color:#1f2a3a;
}
.seniors-note-list{
    margin:0;
    padding-left:1.2rem;
    color:#3c4a45;
}
.seniors-note-list li{
    margin-bottom:.6rem;
}

.seniors-pricing{
    background:#f7fbff;
    border-color:rgba(34,92,150,0.2);
    box-shadow:0 14px 30px rgba(34,92,150,0.12);
}

.seniors-cta{
    background:#ffffff;
    border:1px solid rgba(31,122,74,0.18);
}

.seniors-price-cta{
    margin-top:.75rem;
    padding-top:.5rem;
    border-top:1px solid rgba(0,0,0,0.06);
    display:grid;
    gap:.8rem;
}
.seniors-price-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:.65rem;
}

.seniors-pricing-section{
    padding-top:2rem;
    padding-bottom:2.5rem;
    background:#f6faf9;
}
.seniors-pricing-section .seniors-price-title{
    font-size:1.25rem;
}
.seniors-pricing-section .seniors-price-cta{
    margin-top:1rem;
    padding-top:.75rem;
}

/* Home page */
.home-page{
    background:#ffffff;
}

.home-hero{
    position:relative;
    overflow:hidden;
    background:#f6faf7;
}
.home-hero::before,
.home-hero::after{
    content:"";
    position:absolute;
    pointer-events:none;
    z-index:0;
    width:260px;
    height:260px;
    border-radius:999px;
    opacity:.9;
}
.home-hero::before{
    top:-120px;
    right:-120px;
    background:radial-gradient(circle,rgba(31,122,74,0.18),rgba(31,122,74,0));
}
.home-hero::after{
    bottom:-140px;
    left:-120px;
    background:radial-gradient(circle,rgba(34,92,150,0.18),rgba(34,92,150,0));
}
.home-hero::before,
.home-hero::after{
    display:none;
}
.home-hero .container{
    position:relative;
    z-index:1;
}
.home-band{
    background:#ffffff;
}
.home-details{
    background:#f7fbff;
}

/* Appointments */
.appointments-page{
    background: #f7fbf9;
}
.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: 30px;
    width: 160px;
    border-radius: 999px;
    margin-left: auto;
    margin-bottom: 1rem;
}
.appt-skeleton-title{
    height: 20px;
    width: 60%;
    border-radius: 12px;
    margin-bottom: .8rem;
}
.appt-skeleton-line{
    height: 12px;
    width: 80%;
    border-radius: 999px;
    margin-bottom: .65rem;
}
.appt-skeleton-line.is-short{
    width: 50%;
}
.appt-skeleton-line.is-medium{
    width: 70%;
}
.appt-skeleton-line.is-long{
    width: 90%;
}
.appt-skeleton-pill-row{
    display: grid;
    gap: .75rem;
    margin-top: .5rem;
}
.appt-skeleton-pill{
    height: 46px;
    width: 100%;
    border-radius: 999px;
}
.appt-skeleton-actions{
    display: grid;
    gap: .75rem;
    margin-top: 1.25rem;
}
.appt-skeleton-btn{
    height: 44px;
    width: 100%;
    border-radius: 12px;
}
.appt-skeleton-btn.is-wide{
    width: 100%;
}
.appt-skeleton-btn-lg{
    height: 52px;
    width: 100%;
    border-radius: 14px;
    margin-top: .9rem;
}
.appt-hero{
    border: 1px solid rgba(31,122,74,0.12);
    background: linear-gradient(120deg, #ffffff 0%, #eef8f2 100%);
}
.appt-hero-badge{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .25rem .7rem;
    border-radius: 999px;
    background: #e9f6ee;
    color: #1f7a4a;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .72rem;
    margin-bottom: .75rem;
}
.appt-hero-actions{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
}
.appt-hero-btn{
    min-height: 52px;
    border-radius: 16px;
    font-weight: 700;
}
.appt-flow{
    border: 1px solid rgba(0,0,0,0.06);
}
.appt-mode-toggle{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .75rem 1rem;
    padding: .75rem 1rem;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    margin-bottom: 1.5rem;
}
.appt-mode-toggle .form-check{
    margin: 0;
}
.appt-mode-toggle .form-check-input{
    width: 1.1rem;
    height: 1.1rem;
}
.appt-question{
    margin-bottom: 1.1rem;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}
.appt-flow.simple-paged [data-guided-step]{
    display: none;
}
.appt-flow.simple-paged [data-guided-step].active{
    display: flex;
    flex-direction: column;
    animation: guidedFade 260ms ease;
}
.appt-flow.simple-paged .appt-simple{
    margin-top: 0;
}
.appt-flow.simple-paged .appt-question{
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 240px;
}
.appt-flow.simple-paged .appt-simple-tech{
    display: none;
}
.appt-question-title{
    font-weight: 600;
    margin-bottom: .6rem;
    text-align: center;
}
.appt-choice-group{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem;
    margin-top: .75rem;
    justify-content: center;
    justify-items: center;
}
.appt-followup{
    display: none;
    margin-top: .65rem;
}
.appt-followup.active{
    display: block;
}
.appt-followup .form-label{
    font-weight: 600;
    margin-bottom: .4rem;
}
.appt-question-header{
    display: flex;
    align-items: center;
    gap: .65rem;
    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: .35rem;
    border-radius: 999px;
    padding: .35rem .7rem;
    font-weight: 600;
    line-height: 1.2;
    width: auto;
}
.appt-category-back .appt-back-icon{
    font-size: .95rem;
    line-height: 1;
}
.appt-flow.simple-paged .appt-question{
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}
.appt-flow.simple-paged .appt-choice-group{
    grid-template-columns: 1fr;
}
.appt-simple-summary{
    padding: .8rem 1rem;
    border-radius: 14px;
    background: #f6fbf8;
    border: 1px dashed rgba(31,122,74,0.3);
    font-weight: 600;
    color: #1f2a3a;
}
.appt-simple-tech{
    margin-top: .65rem;
}
.appt-simple-actions{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-bottom: 1rem;
}
.appt-mode-bar{
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}
.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-back{
    margin-top: 1rem;
    display: none;
    white-space: nowrap;
}
.appt-flow.simple-paged .appt-back{
    display: inline-flex;
    width: auto;
    min-width: 0;
}
.appt-flow.simple-paged .appt-question-title{
    font-size: 1.4rem;
}
.appt-flow.simple-paged .appt-choice-group .appt-choice{
    min-height: 56px;
    font-size: 1.05rem;
}
.appt-flow.simple-paged .appt-step-header{
    margin-bottom: 1.25rem;
}
.appt-flow.simple-paged .appt-step-number{
    width: 46px;
    height: 46px;
    border-radius: 16px;
    font-size: 1.05rem;
}
.appt-flow.simple-paged .appt-back{
    margin-top: 0;
}
.appt-flow.simple-paged{
    position: relative;
    min-height: 0;
}
.appt-guided-actions{
    display: flex;
    gap: 1rem;
    margin-top: 1.25rem;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 420px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.appt-flow.simple-paged .appt-guided-actions{
    margin-top: 1.25rem;
}
.appt-next{
    display: none;
    width: auto;
    margin-left: 0;
}
.appt-next.is-visible{
    display: inline-flex;
}
.appt-flow:not(.simple-paged) .appt-next{
    display: none;
}
.appt-guided-actions .btn{
    width: auto;
    min-width: 0;
    min-height: 44px;
    border-radius: 12px;
    padding: .55rem 1.1rem;
}
.appt-choice-group .appt-choice{
    text-align: center;
}
.appt-step-header + .appt-question{
    margin-top: 0;
}

@keyframes guidedFade{
    from{ opacity:0; transform: translateY(10px); }
    to{ opacity:1; transform: translateY(0); }
}
@keyframes apptShimmer{
    0%{ background-position: 0% 0; }
    100%{ background-position: -200% 0; }
}
.appt-mode-switch{
    position: relative;
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    gap: .2rem;
    padding: .2rem;
    background: #edf3ef;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.08);
    font-size: .78rem;
    min-width: 150px;
}
.appt-mode-switch input{
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.appt-mode-option{
    position: relative;
    z-index: 2;
    text-align: center;
    padding: .3rem .6rem;
    font-weight: 600;
    color: #1f2a3a;
    cursor: pointer;
}
.appt-mode-indicator{
    position: absolute;
    top: .2rem;
    bottom: .2rem;
    left: .2rem;
    width: calc(50% - .2rem);
    background: #ffffff;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 180ms ease;
}
#mode-advanced:checked ~ .appt-mode-indicator{
    transform: translateX(100%);
}
#mode-simple:checked ~ label[for="mode-simple"],
#mode-advanced:checked ~ label[for="mode-advanced"]{
    color: #0f6d3f;
}
.appt-mode-bar .appt-mode-switch{
    width: min(220px, 100%);
}
.guided-only .appt-summary{
    display: none;
}
.is-hidden{
    display: none !important;
}
.appt-status{
    min-height: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.appt-status:empty{
    display: none;
    margin-bottom: 0;
}
.appt-status.info{ color: #1f2a3a; }
.appt-status.error{ color: #b42318; }
.appt-status.success{ color: #0f6d3f; }

.appt-step + .appt-step{
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px dashed rgba(0,0,0,0.08);
}
.appt-flow.simple-paged .appt-step + .appt-step{
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}
.appt-step-header{
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
}
.appt-step-number{
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: #e9f6ee;
    color: #1f7a4a;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}
.appt-grid{
    display: grid;
    gap: .75rem;
}
.appt-grid--services{
    grid-template-columns: 1fr;
}
.appt-grid--staff{
    grid-template-columns: 1fr;
}
.appt-grid--times{
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.appt-choice{
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 16px;
    padding: .9rem 1rem;
    background: #ffffff;
    text-align: left;
    width: 100%;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.appt-choice:hover{
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}
.appt-choice.active{
    border-color: #1f7a4a;
    box-shadow: 0 12px 26px rgba(31,122,74,0.18);
}
.appt-choice-title{
    font-weight: 700;
    margin-bottom: .35rem;
}
.appt-choice-meta{
    font-size: .92rem;
    color: #4a5a52;
}
.appt-date-row{
    margin-bottom: 1rem;
}
.appt-calendar{
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 18px;
    padding: 1rem;
    margin-bottom: 1rem;
}
.appt-calendar-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    margin-bottom: .75rem;
}
.appt-calendar-month{
    font-weight: 700;
}
.appt-calendar-nav{
    border: 1px solid rgba(0,0,0,0.12);
    background: #ffffff;
    border-radius: 12px;
    padding: .3rem .6rem;
    font-weight: 700;
}
.appt-calendar-weekdays{
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: .35rem;
    font-size: .8rem;
    color: #657168;
    margin-bottom: .4rem;
    text-align: center;
}
.appt-calendar-grid{
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: .35rem;
}
.appt-calendar-day,
.appt-calendar-empty{
    height: 38px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #ffffff;
    font-weight: 600;
    text-align: center;
    line-height: 38px;
    font-size: .92rem;
    white-space: nowrap;
    padding: 0;
}
.appt-calendar-day.disabled{
    background: #f2f4f3;
    color: #9aa3a0;
    border-color: rgba(0,0,0,0.04);
}
.appt-calendar-day.active{
    background: #eaf7ef;
    border-color: #1f7a4a;
    color: #1f7a4a;
}
.appt-calendar-empty{
    background: transparent;
    border: 0;
}
.appt-time-btn{
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 14px;
    padding: .8rem;
    background: #ffffff;
    font-weight: 700;
}
.appt-time-btn.active{
    border-color: #1f7a4a;
    background: #eaf7ef;
}
.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;
}
.appt-summary{
    border: 1px solid rgba(0,0,0,0.06);
    background: #ffffff;
}
.appt-summary-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .75rem;
    padding: .45rem 0;
    border-bottom: 1px dashed rgba(0,0,0,0.08);
    font-size: .98rem;
}
.appt-summary-row:last-of-type{
    border-bottom: 0;
}
.appt-submit{
    min-height: 54px;
    border-radius: 16px;
    font-weight: 800;
    width: 100%;
}
.appt-support{
    text-align: center;
}
.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: 54px;
    height: 54px;
    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.25rem;
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #ffffff;
    text-align: left;
}
.appt-summary-card{
    margin-top: 1rem;
    padding: 1rem;
    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 .appt-summary{
    display: none;
}

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