*{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;
}