*{margin:0;padding:0;box-sizing:border-box}

body{font-family:Arial,sans-serif;background:#eef6ff;color:#071f55}

.page{min-height:100vh;background:white;overflow:hidden}

header{
    height:86px;
    padding:22px 6%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    border-bottom:1px solid #eef2f7;
}

.logo{display:flex;align-items:center}
.logo img{height:60px;width:auto;object-fit:contain}

.nav{display:flex;align-items:center;gap:25px;font-size:14px;font-weight:700}
.nav-title{display:flex;align-items:center;gap:8px}
.nav-title img{width:22px;height:22px;object-fit:contain}
.menu{font-size:28px}

.home{padding:60px 6% 35px;background:linear-gradient(120deg,#fff 55%,#eef5ff)}

.home-grid{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1.1fr;
    gap:60px;
    align-items:center;
}

.hero{position:relative}
.hero h1{font-size:48px;line-height:1.15;margin-bottom:18px}
.hero h1 span{color:#d51f35}

.red-line{
    width:55px;
    height:4px;
    background:#d51f35;
    border-radius:10px;
    margin-bottom:25px;
}

.hero p{font-size:17px;line-height:1.7;color:#334155;max-width:420px}

.pin-img{
    width:145px;
    max-width:35%;
    margin-top:25px;
    object-fit:contain;
}

.form-card{
    background:white;
    border-radius:20px;
    padding:32px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

.form-grid{display:flex;flex-direction:column;gap:28px}

.field-wrap{
    display:flex;
    align-items:center;
    gap:24px;
    width:100%;
}

.icon{
    width:90px;
    height:90px;
    min-width:90px;
    border-radius:50%;
    background:#fff1f3;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.icon img{
    width:65px;
    height:65px;
    object-fit:cover;
    transform:scale(1.8);
    transform-origin:center;
}

.field{flex:1}

label{
    display:block;
    font-size:13px;
    font-weight:800;
    margin-bottom:8px;
}

label span{color:#d51f35}

select{
    width:100%;
    padding:18px 20px;
    border:1px solid #d1d5db;
    border-radius:12px;
    font-size:18px;
    background:white;
}

select:disabled{background:#f3f4f6;color:#9ca3af}

button{
    width:100%;
    padding:16px;
    background:#07347d;
    color:white;
    border:none;
    border-radius:9px;
    font-size:15px;
    font-weight:800;
    cursor:pointer;
}

.search-btn{margin-top:22px}

.features{
    max-width:1300px;
    margin:35px auto 0;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    background:#f8fbff;
    border-radius:18px;
    padding:22px;
    border:1px solid #e4ecf7;
}

.feature{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    border-right:1px solid #e5e7eb;
}

.feature:last-child{border-right:none}

.feature-icon{
    width:200px;
    height:200px;
    border-radius:50%;
    background:#edf4ff;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.feature-icon img{width:100px;height:100px;object-fit:contain}
.feature h4{font-size:14px;margin-bottom:5px}
.feature p{font-size:13px;color:#475569;line-height:1.5}

.results-page{
    display:none;
    max-width:1300px;
    margin:auto;
    padding:35px 6% 50px;
}

.location-top{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:24px;
}

.back-btn{
    width:55px;
    height:55px;
    border:1px solid #e5e7eb;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    cursor:pointer;
}

.location-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#eef4ff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.location-icon img{width:31px;height:31px;object-fit:contain}
.location-title h2{font-size:26px}
.location-title p{color:#475569;margin-top:5px}

.notice{
    display:flex;
    gap:16px;
    background:#f4f8ff;
    border:1px solid #d9e7ff;
    border-radius:16px;
    padding:18px;
    margin-bottom:28px;
}

.notice-icon{
    width:44px;
    height:44px;
    background:#0b56c5;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:bold;
    flex-shrink:0;
}

.notice p{font-size:15px;line-height:1.6}

.results-layout{
    display:grid;
    grid-template-columns:430px 1fr;
    gap:28px;
    align-items:start;
}

.results-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:16px;
}

.results-head h2{font-size:28px}

.sort-box{
    padding:12px 16px;
    border:1px solid #e5e7eb;
    border-radius:12px;
    font-weight:800;
    background:white;
}

.center-card{
    position:relative;
    background:white;
    border-radius:16px;
    box-shadow:0 6px 22px rgba(0,0,0,.08);
    border-left:4px solid #07347d;
    padding:20px 16px;
    margin-bottom:16px;
}

.number{
    width:34px;
    height:34px;
    background:#07347d;
    color:white;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
    margin-right:12px;
}

.card-title{
    display:inline-block;
    width:65%;
    vertical-align:top;
    font-size:17px;
    font-weight:800;
    line-height:1.4;
}

.badge{
    position:absolute;
    right:16px;
    top:20px;
    background:#f2f6ff;
    padding:10px 15px;
    border-radius:14px;
    font-weight:800;
    font-size:13px;
}

.info{
    margin-left:50px;
    margin-top:12px;
    font-size:14px;
    line-height:1.6;
}

.schedule{
    width:160px;
    margin-left:auto;
    margin-top:12px;
    display:block;
}

#map{
    height:630px;
    width:100%;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 24px rgba(0,0,0,.10);
}

footer{
    background:#07347d;
    color:white;
    text-align:center;
    padding:24px;
    font-size:15px;
    border-top-left-radius:60% 25px;
    border-top-right-radius:60% 25px;
}

.hidden,.hidden-step{display:none!important}

/* MODAL CODED PAGES */
.schedule-modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.72);
    z-index:9999;
    align-items:center;
    justify-content:center;
    padding:10px;
}

.phone-frame{
    position:relative;
    width:100%;
    max-width:430px;
    max-height:96vh;
    overflow:auto;
    background:white;
    border-radius:28px;
    padding:72px 22px 22px;
}

.modal-x,.modal-dots{
    position:absolute;
    top:18px;
    width:44px;
    height:44px;
    border-radius:50%;
    background:#f3f4f6;
    color:#071f55;
    font-size:28px;
    padding:0;
}

.modal-x{left:18px}
.modal-dots{right:18px;font-size:20px}

.browser-bar{
    position:absolute;
    top:18px;
    left:84px;
    right:84px;
    background:#071f55;
    color:white;
    border-radius:26px;
    padding:12px 10px;
    text-align:center;
    font-size:15px;
}

.modal-screen h2{
    font-size:26px;
    color:#071f55;
    margin-bottom:8px;
}

.center-title{text-align:center}

.screen-icon{
    width:92px;
    height:92px;
    border-radius:50%;
    background:#edf4ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    margin:0 auto 14px;
}

.account-line{
    width:48px;
    height:4px;
    background:#2563eb;
    border-radius:10px;
    margin-bottom:14px;
}

.account-subtitle{
    color:#475569;
    font-size:14px;
    margin-bottom:16px;
    line-height:1.4;
}

.center-text{text-align:center}

.modal-screen label{
    margin-top:10px;
    margin-bottom:5px;
    font-size:13px;
}

.modal-screen input{
    width:100%;
    padding:12px;
    border:1px solid #d1d5db;
    border-radius:10px;
    font-size:14px;
}

.pin-inputs{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:10px;
    margin-bottom:12px;
}

.pin-inputs input{
    text-align:center;
    font-size:20px;
}

.form-error{
    color:#d51f35;
    font-size:13px;
    min-height:18px;
}

.create-account-btn{
    margin-top:8px;
    background:linear-gradient(135deg,#1146a4,#07347d);
}

.login-text{
    text-align:center;
    margin-top:14px;
    color:#475569;
    font-size:13px;
}

.login-text b{
    color:#07347d;
    text-decoration:underline;
}

.pill-label{
    width:max-content;
    margin:0 auto 18px;
    padding:7px 14px;
    background:#edf4ff;
    color:#1473ff;
    font-weight:800;
    border-radius:20px;
    font-size:13px;
}

.choice-card,.vip-card{
    display:flex;
    align-items:center;
    gap:14px;
    background:white;
    border-radius:18px;
    padding:16px;
    margin-bottom:14px;
    box-shadow:0 6px 20px rgba(0,0,0,.08);
    cursor:pointer;
}

.choice-card h3,.vip-card h3{font-size:18px}

.choice-icon,.vip-icon{
    width:58px;
    height:58px;
    border-radius:18px;
    background:#edf4ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    flex-shrink:0;
}

.choice-arrow{
    margin-left:auto;
    font-size:34px;
    color:#1473ff;
}

.white-arrow{color:white}

.green-tag{
    background:#dcfce7;
    color:#15803d;
    padding:4px 8px;
    border-radius:10px;
    font-size:12px;
}

.gray-tag{
    background:#f3f4f6;
    color:#6b7280;
    padding:4px 8px;
    border-radius:10px;
    font-size:12px;
}

.blue-choice{
    background:linear-gradient(135deg,#1473ff,#07347d);
    color:white;
}

.blue-choice p{color:#dbeafe}
.blue-icon{background:rgba(255,255,255,.16)}

.small-info{
    background:#f4f8ff;
    border-radius:14px;
    padding:14px;
    font-size:14px;
    line-height:1.45;
    margin-top:12px;
}

.info-panel,.top-estimate{
    background:#f4f8ff;
    border-radius:18px;
    padding:18px;
    text-align:center;
    margin-bottom:16px;
}

.info-panel h1{
    font-size:58px;
    color:#1473ff;
}

.info-panel h2,.top-estimate h2{
    font-size:28px;
    margin:8px 0;
}

.blue-tag{
    background:#e0f2fe;
    color:#1473ff;
    padding:5px 10px;
    border-radius:14px;
    font-size:12px;
    display:inline-block;
    margin:8px 0;
}

.warning-box{
    background:#fff7ed;
    border-radius:16px;
    padding:16px;
    line-height:1.45;
    margin-bottom:16px;
}

.agreement-box{
    background:white;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:18px;
}

.term{
    margin-top:14px;
    padding-top:14px;
    border-top:1px solid #e5e7eb;
    line-height:1.45;
}

.final-link{
    display:block;
    width:100%;
    text-align:center;
    padding:16px;
    background:#07347d;
    color:white;
    border-radius:9px;
    font-size:15px;
    font-weight:800;
    text-decoration:none;
    margin-top:18px;
}

@media(max-width:900px){
    .home-grid{grid-template-columns:1fr;gap:30px}
    .feature{flex-direction:column;text-align:center;gap:10px}
    .results-layout{grid-template-columns:1fr}
    #map{height:360px}
}

@media(max-width:520px){
    header{height:auto;padding:26px 22px 18px}
    .logo{font-size:30px}
    .nav{font-size:12px;gap:12px}
    .home{padding:28px 22px 30px}
    .hero h1{font-size:34px}
    .hero p{width:60%;font-size:15px}

    .pin-img{
        position:absolute;
        right:25px;
        top:95px;
        width:85px;
        max-width:none;
        margin-top:0;
    }

    .form-card{padding:24px}
    .field-wrap{border-bottom:1px solid #e5e7eb;padding-bottom:18px}
    .features{margin-top:20px;padding:18px 8px}
    .feature h4{font-size:12px}
    .feature p{font-size:11px}
    .results-page{padding:18px 20px 30px}
    .location-title h2{font-size:20px}
    .notice p{font-size:14px}
    .results-head h2{font-size:25px}
    .results-layout{display:flex;flex-direction:column}

    #map{
        order:-1;
        height:230px;
        margin-bottom:18px;
    }

    .center-card{
        padding:13px 12px;
        margin-bottom:11px;
        border-radius:13px;
    }

    .number{width:28px;height:28px;font-size:13px;margin-right:8px}
    .card-title{font-size:14px;width:60%}
    .badge{top:13px;right:12px;padding:7px 10px;font-size:12px}
    .info{margin-left:38px;margin-top:8px;font-size:12px;line-height:1.45}
    .schedule{width:125px;padding:11px;font-size:13px;margin-top:8px}

    .phone-frame{
        max-width:100%;
        max-height:96vh;
        border-radius:24px;
        padding:72px 18px 18px;
    }

    .modal-screen h2{font-size:24px}
}

.center-title span{
    color:#d51f35;
}

.details-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin:14px 0;
}

.details-card{
    background:white;
    border:1px solid #e5e7eb;
    border-radius:16px;
    padding:12px;
    box-shadow:0 4px 14px rgba(0,0,0,.05);
}

.details-card h4{
    font-size:12px;
    margin-bottom:6px;
}

.details-card b{
    font-size:13px;
}

.details-card p{
    font-size:11px;
    color:#475569;
    margin-top:6px;
    line-height:1.35;
}

.details-card h3{
    color:#d51f35;
    font-size:18px;
    margin:6px 0;
}

.mini-map{
    height:70px;
    background:#f4f8ff;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top:10px;
    overflow:hidden;
}

.mini-map img{
    width:100px;
    height:auto;
    object-fit:contain;
}

.ref-warning{
    background:#fff1f3;
    color:#d51f35;
    border-radius:12px;
    padding:8px;
    font-size:11px;
    margin-top:8px;
}

.new-centers{
    margin-top:14px;
}

.new-centers h3{
    font-size:15px;
    margin-bottom:10px;
}

.center-preview-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

.center-preview{
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:8px;
}
.rc-image{
    width:100%;
    height:110px;
    object-fit:cover;
    border-radius:12px;
    margin-bottom:8px;
}

.center-preview p{
    font-size:10.5px;
    line-height:1.35;
}

/* Reference landing page */
:root{--navy:#001b30;--navy-deep:#001425;--teal:#56aaa4;--teal-dark:#087876;--ink:#07172b;--cream:#f6f3ed}
body{background:var(--cream);color:var(--ink);font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif}
.page{background:var(--cream)}
.site-header{height:95px;padding:18px clamp(28px,4.1vw,68px);background:rgba(0,20,37,.98);border-color:rgba(255,255,255,.08);color:#fff}
.logo img{width:150px;height:auto;display:block}
.nav{gap:38px;font-size:18px;font-weight:400}
.nav-title{gap:12px;padding-right:36px;border-right:1px solid rgba(255,255,255,.18)}
.nav-title img{width:25px;height:25px;object-fit:contain;filter:brightness(0) invert(1)}
.menu{width:31px;padding:2px;background:transparent;border-radius:0;display:grid;gap:5px}
.menu span{display:block;height:3px;background:#fff;border-radius:5px}
.home{position:relative;padding:56px clamp(28px,6.9vw,116px) 36px;background:var(--cream);min-height:calc(100vh - 95px)}
.home:before{content:"";position:absolute;inset:0 0 200px;background:#00182c url("images/background-1.png") center/cover no-repeat;border-radius:0 0 50% 3% / 0 0 3% 2%}
.home-grid,.features{position:relative;z-index:1}
.home-grid{max-width:1440px;grid-template-columns:minmax(0,1.08fr) minmax(480px,.92fr);gap:72px;align-items:center}
.hero{color:#fff;align-self:start;padding-top:2px}
.network-label{width:max-content;display:flex;align-items:center;gap:12px;padding:10px 20px;border:1px solid rgba(255,255,255,.3);border-radius:999px;color:#8ed5cf;font-size:13px;font-weight:700;letter-spacing:.2em;text-transform:uppercase}
.network-label img{width:22px;height:22px;object-fit:contain}
.hero h1{margin:25px 0 23px;font-size:clamp(45px,4.2vw,70px);line-height:1.08;letter-spacing:-.035em;color:#fff}
.hero h1 span{color:#63b2ac}
.red-line{width:58px;height:4px;margin:0 0 20px;background:#58b4ad}
.hero p{max-width:500px;color:#f0f4f5;font-size:19px;line-height:1.65}
.verified-line{display:flex;align-items:center;gap:13px;margin-top:19px;font-size:16px;color:#eef6f5}
.verified-line img{width:31px;height:31px;object-fit:contain}
.form-card{padding:34px 40px 20px;border:1px solid rgba(255,255,255,.75);border-radius:17px;background:rgba(255,253,248,.97);box-shadow:0 22px 55px rgba(0,8,18,.34)}
.form-heading h2{font-size:25px;line-height:1.2;letter-spacing:-.02em;margin-bottom:5px}
.form-heading p{font-size:16px;color:#46505f;margin-bottom:20px}
.form-grid{gap:18px}
.field-wrap{gap:18px}
.icon{width:64px;height:64px;min-width:64px;background:#e6eeea}
.icon img{width:46px;height:46px;object-fit:contain;transform:none}
.field label{font-size:14px;margin-bottom:7px;color:#101c2d}
.field label span{color:inherit}
.field select{height:44px;padding:8px 14px;border-color:#d4d2ce;border-radius:8px;color:#475362;font-size:15px;background-color:#fffdf9}
.search-btn{height:56px;margin-top:24px;padding:0 23px;border-radius:7px;background:linear-gradient(105deg,#158b89,#08706f);display:flex;align-items:center;justify-content:center;font-size:18px;font-weight:700;box-shadow:inset 0 1px rgba(255,255,255,.2)}
.search-btn b{position:absolute;right:25px;font-size:24px;font-weight:400}.search-btn{position:relative}
.privacy-note{display:flex;justify-content:center;align-items:center;gap:8px;margin-top:14px;font-size:13px;color:#253348}
.privacy-note img{width:22px;height:22px;object-fit:contain}
.features{max-width:1420px;margin:55px auto 0;padding:20px 38px 10px;grid-template-columns:repeat(3,1fr);border-color:#d9d8d3;border-radius:18px;background:rgba(255,255,255,.91);box-shadow:0 15px 35px rgba(24,37,42,.12)}
.feature{min-height:94px;padding:0 33px;justify-content:flex-start;gap:22px}
.feature-icon{width:90px;height:90px;min-width:90px;background:#e8efeb}
.feature-icon img{width:66px;height:66px;object-fit:contain}
.feature h4{font-size:18px;margin-bottom:5px;color:#07172b}.feature p{font-size:14px;line-height:1.5;color:#394656;max-width:210px}
.feature-caption{grid-column:1/-1;display:flex;align-items:center;justify-content:center;gap:25px;padding:7px 0 0;color:#315669;font-size:11px;letter-spacing:.3em;text-transform:uppercase}
.feature-caption span{width:66px;height:1px;background:#288c89}

@media(max-width:1050px){
 .home:before{inset-bottom:300px}
 .home-grid{grid-template-columns:1fr;gap:32px}.hero{padding-top:0}.hero p{max-width:650px}
 .form-card{max-width:720px;width:100%;margin:auto}.features{margin-top:38px}.feature{padding:0 15px}.feature-icon{width:70px;height:70px;min-width:70px}.feature-icon img{width:52px;height:52px}
}
@media(max-width:720px){
 .site-header{height:78px;padding:14px 20px}.logo img{width:125px}.nav-title span{display:none}.nav-title{padding-right:18px}.nav{gap:18px}
 .home{padding:30px 18px;background:#00182c}.home:before{inset:0;border-radius:0;background-position:center;background-size:cover}.home-grid{gap:26px}
 .network-label{font-size:10px;letter-spacing:.15em;padding:8px 13px}.hero h1{font-size:clamp(35px,10vw,48px);margin:20px 0}.hero p{font-size:16px}.verified-line{font-size:14px}
 .form-card{padding:25px 20px 18px;border-radius:15px}.form-heading h2{font-size:22px}.form-heading p{font-size:14px}.field-wrap{gap:12px;padding-bottom:0;border:0}.icon{width:52px;height:52px;min-width:52px}.icon img{width:39px;height:39px}.field select{font-size:14px}
 .features{grid-template-columns:1fr;margin-top:28px;padding:15px 22px;background:rgba(255,255,255,.93);backdrop-filter:blur(3px)}.feature{min-height:112px;padding:12px 4px;border-right:0;border-bottom:1px solid #deded9;flex-direction:row;text-align:left}.feature:last-of-type{border-bottom:0}.feature-caption{padding:16px 0 4px;font-size:9px;line-height:1.5;text-align:center;letter-spacing:.18em}.feature-caption span{width:28px;flex:none}
}
@media(max-width:390px){.icon{display:none}.hero h1{font-size:34px}.form-card{padding-inline:16px}.privacy-note{font-size:11px}.feature-icon{width:64px;height:64px;min-width:64px}.feature-icon img{width:47px;height:47px}}

/* Search results */
.results-page{max-width:1240px;height:calc(100vh - 163px);padding:38px 28px 24px;background:transparent}
.results-page:before{content:"";position:fixed;inset:95px 0 74px;z-index:-1;background:#faf9f5 url("images/background-1.png") center/cover no-repeat;opacity:.075}
.location-top{gap:18px;margin-bottom:18px}.back-btn{width:52px;height:52px;border-color:#d5d1c9;border-radius:8px;font-size:28px}.location-icon{width:52px;height:52px;border:1px solid #8db8b5;background:#edf3ef}.location-icon img{width:38px;height:38px}.location-title h2{font-size:27px}.location-title p{font-size:14px}
.notice{align-items:center;gap:20px;margin-bottom:22px;padding:13px 18px;border-color:#80bdb9;border-radius:8px;background:rgba(238,246,242,.86);box-shadow:0 4px 12px rgba(17,55,55,.08)}.notice-icon{width:38px;height:38px;background:transparent;border:2px solid #147977;color:#147977;font-size:18px}.notice p{font-size:13px}
.results-layout{grid-template-columns:470px minmax(0,1fr);gap:28px}.results-head{margin-bottom:12px}.results-head h2{font-size:28px}.sort-box{padding:9px 17px;border-color:#4a9996;border-radius:7px;font-size:13px;font-weight:500}
.center-card{min-height:136px;margin-bottom:10px;padding:18px 18px 13px;border-left:3px solid #07817e;border-radius:11px;box-shadow:0 5px 14px rgba(17,32,38,.1)}.number{width:32px;height:32px;margin-right:13px;background:linear-gradient(135deg,#148e8b,#006a68);font-size:13px}.card-title{width:67%;font-size:15px;line-height:2.1}.badge{top:18px;right:18px;padding:8px 13px;border:1px solid #b9d8d5;border-radius:7px;background:#ecf5f2;color:#096e6c}.info{margin:-1px 0 0 49px;font-size:12px;line-height:2.4;color:#43566a}.info span{display:inline-block;width:23px;color:#058582;font-size:17px}.schedule{width:116px;margin:-37px 0 0 auto;padding:11px 12px;border-radius:6px;background:linear-gradient(105deg,#138a87,#006967);font-size:12px}
#map{height:488px;border:1px solid #d7d4cd;border-radius:14px;box-shadow:0 8px 20px rgba(20,39,43,.1);filter:saturate(.65)}
footer{height:68px;padding:0 clamp(30px,10vw,190px);border-radius:0;background:#001a2e url("images/background-1.png") center bottom/cover;color:#dbe9e9;display:flex;align-items:center;justify-content:center;font-size:12px}.footer-links{position:absolute;right:10vw;display:flex;gap:22px;align-items:center}.footer-links i{height:23px;width:1px;background:rgba(255,255,255,.35)}

/* Schedule details overlay */
.schedule-modal{padding:24px;background:rgba(0,18,32,.9) url("images/background-1.png") center/cover no-repeat}
.phone-frame{max-width:710px;max-height:92vh;padding:112px 32px 28px;border:3px solid #bbb9b2;border-radius:28px;background:#fbfaf6;box-shadow:0 28px 80px rgba(0,0,0,.42)}
.modal-x,.modal-dots{top:27px;width:56px;height:56px;background:#efefeb;color:#09192c}.modal-x{left:31px}.modal-dots{right:31px}.browser-bar{top:27px;left:160px;right:160px;padding:17px 10px;border-radius:32px;background:#001a31;font-size:18px}
#detailsReadyPage .screen-icon{width:128px;height:128px;margin:0 auto 24px;background:#e4eeea}.screen-icon img{width:86px;height:86px;object-fit:contain}
.pill-label{width:max-content;margin:0 auto 25px;padding:9px 20px;border-radius:30px;background:#e4eeea;color:#08716f;font-size:14px;font-weight:800;letter-spacing:.12em}
#detailsReadyPage .center-title{font-size:39px;line-height:1.16;margin-bottom:13px;letter-spacing:-.025em}#detailsReadyPage .center-title span{color:#23827f}.center-text{max-width:530px;margin:0 auto 26px;font-size:18px;line-height:1.45}
#detailsReadyPage .details-grid{gap:14px;margin-bottom:24px}.details-card{padding:22px;border-color:#dddcd7;border-radius:20px;box-shadow:none}.details-card h4{font-size:17px;margin-bottom:10px}.details-card b{font-size:17px}.details-card p{font-size:15px;line-height:1.45}.details-card h3{color:#12817e;font-size:26px}.mini-map{height:112px;background:#e4efec}.mini-map img{width:102px}.ref-warning{margin-top:18px;padding:14px;background:#e2ece8;color:#086d6b;font-size:14px;line-height:1.4}
#detailsReadyPage .create-account-btn{padding:17px;background:linear-gradient(105deg,#148d89,#08706d);font-size:20px}.new-centers{margin-top:28px}.new-centers h3{font-size:22px}.center-preview-row{gap:12px}.center-preview{padding:10px;border-color:#dddcd7;border-radius:18px}.rc-image{height:205px}.center-preview p{padding-left:4px;font-size:15px;line-height:1.6;color:#122137}.center-preview p::first-letter{color:#087c79}.small-info{margin-top:22px;padding:21px;border-radius:12px;background:#eeeee9;font-size:15px;line-height:1.5}

@media(min-width:901px){
 html,body{height:100%;overflow:hidden}.page{height:100vh;min-height:0}.home{height:calc(100vh - 95px);min-height:0;padding-top:clamp(22px,4vh,56px);padding-bottom:20px}.home-grid{gap:clamp(38px,4vw,72px)}.features{margin-top:clamp(20px,4vh,55px)}
 .results-page{overflow:hidden}.results-page~footer{position:fixed;left:0;right:0;bottom:0}
}
@media(max-width:900px){
 body{overflow:auto}.results-page{height:auto;padding:24px 18px 35px}.results-page:before{inset:78px 0 0}.results-layout{grid-template-columns:1fr}.center-card{min-height:0}.info{margin-top:3px}.schedule{margin-top:7px}#map{height:360px}.footer-links{display:none}
 .phone-frame{max-width:650px;padding:95px 24px 24px}.browser-bar{left:100px;right:100px}.rc-image{height:170px}
}
@media(max-width:560px){
 .location-top{gap:10px}.location-title h2{font-size:21px}.notice{align-items:flex-start}.results-head h2{font-size:23px}.results-layout{display:flex}.center-card{padding:15px 13px}.card-title{font-size:13px;width:59%;line-height:1.4}.info{margin-left:42px}.badge{right:12px;top:13px}
 .schedule-modal{padding:8px}.phone-frame{max-height:97vh;padding:78px 16px 20px;border-radius:22px}.modal-x,.modal-dots{top:16px;width:44px;height:44px}.modal-x{left:16px}.modal-dots{right:16px}.browser-bar{top:16px;left:70px;right:70px;padding:12px 6px;font-size:13px}#detailsReadyPage .screen-icon{width:92px;height:92px}.screen-icon img{width:64px;height:64px}#detailsReadyPage .center-title{font-size:28px}.center-text{font-size:15px}.details-grid,.center-preview-row{grid-template-columns:1fr}.rc-image{height:auto}.new-centers h3{font-size:19px}
}

/* Final and payment-method steps */
.browser-bar{display:flex;align-items:center;justify-content:center;gap:9px}
.browser-bar img{width:24px;height:24px;object-fit:contain;filter:brightness(0) invert(1)}
.inline-shield{width:20px;height:20px;margin-left:7px;vertical-align:middle;object-fit:contain;filter:brightness(0) invert(1)}
#finalPage{padding:42px 18px 10px;text-align:center}
#finalPage .screen-icon,#paymentMethods .screen-icon{width:128px;height:128px;margin:0 auto 24px;background:#e4eeea}
#finalPage .screen-icon img{width:88px;height:88px;object-fit:contain}
#finalPage .center-title{font-size:42px;line-height:1.15;margin:25px 0 18px}
#finalPage .center-text{max-width:590px;font-size:19px;line-height:1.45}
.final-privacy,.payment-privacy{display:flex;align-items:center;justify-content:center;gap:11px;margin:25px auto;font-size:16px;color:#3c4856}
.final-privacy img,.payment-privacy img,.method-note img{width:27px;height:27px;object-fit:contain}
#finalPage .final-link{border:0;margin-top:30px;padding:20px;background:linear-gradient(105deg,#239691,#16817d);font-size:24px;box-shadow:0 8px 17px rgba(15,119,115,.2)}

#paymentMethods{text-align:center;padding:4px 4px 0}
#paymentMethods .screen-icon{width:102px;height:102px;margin-bottom:12px;color:#087c79;font-size:56px;font-weight:700}
#paymentMethods .screen-icon img{width:74px;height:74px;object-fit:contain}
#paymentMethods .pill-label{margin-bottom:12px}
#paymentMethods .center-title{font-size:37px;margin-bottom:9px}
#paymentMethods .center-text{font-size:17px;margin-bottom:18px}
.payment-options-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;text-align:center}
.payment-option{position:relative;display:flex;flex-direction:column;min-height:330px;padding:25px 20px 20px;border:1px solid #d4d3ce;border-radius:17px;background:#fffefa}
.payment-option.crypto-option{border:2px solid #148984;background:linear-gradient(145deg,#f7fdfb,#edf8f5)}
.fastest-tag{position:absolute;left:19px;top:17px;padding:6px 13px;border-radius:20px;background:linear-gradient(105deg,#229a93,#117873);color:#fff;font-size:11px;font-weight:800;letter-spacing:.12em}
.method-icon{height:68px;color:#073a50;font-size:54px;line-height:1;display:flex;align-items:center;justify-content:center}.method-icon img{width:76px;height:76px;object-fit:contain}.payment-option h3{margin:5px 0 8px;font-size:23px}.payment-option>p{min-height:48px;color:#485464;font-size:15px;line-height:1.4}
.method-note{display:flex;align-items:center;justify-content:center;gap:9px;margin-top:auto;padding:15px 4px;border-top:1px solid #d6d9d5;color:#44515e;font-size:13px}
.method-note img{width:25px;height:25px}
.method-button{display:block;width:100%;padding:15px 8px;border-radius:8px;font-size:17px;font-weight:800;text-decoration:none}
.primary-method{background:linear-gradient(105deg,#239691,#16817d);color:#fff;box-shadow:0 7px 14px rgba(15,119,115,.18)}.secondary-method{border:2px solid #0a1d32;color:#0a1d32;background:#fff}
.payment-privacy{margin:16px auto 0;font-size:13px}.payment-privacy img{width:24px;height:24px}

@media(max-width:560px){
 #finalPage{padding:25px 3px 5px}#finalPage .screen-icon,#paymentMethods .screen-icon{width:92px;height:92px}#finalPage .screen-icon img{width:64px;height:64px}#finalPage .center-title{font-size:32px}#finalPage .center-text{font-size:15px}.final-privacy{font-size:13px}#finalPage .final-link{font-size:19px}
 #paymentMethods .center-title{font-size:27px}.payment-options-grid{grid-template-columns:1fr}.payment-option{min-height:295px}.payment-privacy{font-size:12px}
}
