
:root{
--primary:#0d6efd;
--primary-2:#2563eb;
--accent:#9333ea;
--success:#22c55e;
--bg:#f8fbff;
--ink:#0f172a;
--muted:#64748b;
--line:rgba(37,99,235,.14);
--glass:rgba(255,255,255,.96);
}

*{box-sizing:border-box}
html{
scroll-behavior:smooth;
}
body{
margin:0;
font-family:"Roboto",sans-serif;
color:var(--ink);
background:
radial-gradient(circle at top left, rgba(13,110,253,.10), transparent 22%),
radial-gradient(circle at top right, rgba(147,51,234,.10), transparent 22%),
linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

h1,h2,h3,h4,h5{
font-family:"Roboto",sans-serif;
font-weight:700;
}

.site-wrap{
padding:22px 0 56px;
}

.glass-nav,
.hero-card,
.section-card,
.modal-content{
background:var(--glass);
backdrop-filter:none;
border:1px solid rgba(226,232,240,.9);
box-shadow:0 8px 24px rgba(15,23,42,.08);
}

.glass-nav{
border-radius:22px;
padding:14px 18px;
}

.nav-links{
display:flex;
align-items:center;
gap:10px;
flex-wrap:wrap;
}

.nav-link-pill{
display:inline-flex;
align-items:center;
justify-content:center;
padding:10px 14px;
border-radius:999px;
border:1px solid rgba(13,110,253,.14);
background:rgba(13,110,253,.04);
color:var(--ink);
font-size:.92rem;
font-weight:500;
text-decoration:none;
transition:transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

.nav-link-pill:hover{
transform:translateY(-1px);
border-color:rgba(13,110,253,.3);
background:rgba(13,110,253,.10);
color:var(--primary);
}

.nav-link-pill.active{
transform:translateY(-1px);
border-color:rgba(13,110,253,.3);
background:rgba(13,110,253,.10);
color:var(--primary);
}

.mobile-menu{
display:flex;
flex-direction:column;
gap:10px;
padding-top:14px;
}

.menu-toggle{
width:44px;
height:44px;
display:none;
align-items:center;
justify-content:center;
padding:0;
border:1px solid rgba(13,110,253,.18);
border-radius:14px;
background:linear-gradient(180deg, #ffffff, #f3f7ff);
box-shadow:0 8px 18px rgba(15,23,42,.08);
transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.menu-toggle:hover{
transform:translateY(-1px);
border-color:rgba(13,110,253,.3);
box-shadow:0 10px 22px rgba(13,110,253,.14);
}

.menu-toggle:focus{
box-shadow:0 0 0 .25rem rgba(13,110,253,.12);
}

.menu-toggle-icon{
display:flex;
flex-direction:column;
gap:4px;
align-items:flex-end;
}

.menu-toggle-bar{
display:block;
height:2.5px;
background:var(--primary);
border-radius:999px;
transition:transform .2s ease, opacity .2s ease, width .2s ease;
}

.menu-toggle-bar:nth-child(1){
width:18px;
}

.menu-toggle-bar:nth-child(2){
width:14px;
opacity:.9;
}

.menu-toggle-bar:nth-child(3){
width:18px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1){
transform:translateY(6px) rotate(45deg);
width:18px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2){
opacity:0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3){
transform:translateY(-6px) rotate(-45deg);
width:18px;
}

.brand-box{
display:flex;
align-items:center;
justify-content:flex-start;
flex:0 1 368px;
max-width:368px;
min-width:0;
padding:0;
min-height:auto;
background:transparent;
border:none;
box-shadow:none;
}

.brand-logo{
display:block;
width:100%;
height:auto;
max-width:100%;
object-fit:contain;
}

.brand-box picture{
display:block;
width:100%;
}

.footer-brand picture{
display:block;
}

.hero-card{
position:relative;
overflow:hidden;
border-radius:30px;
padding:clamp(34px, 5vw, 72px);
background:linear-gradient(130deg, rgba(13,110,253,.96), rgba(37,99,235,.88) 48%, rgba(147,51,234,.78));
color:#fff;
}

.hero-card::before{
content:"";
position:absolute;
width:240px;
height:240px;
right:-80px;
top:-80px;
border-radius:50%;
background:rgba(255,255,255,.12);
filter:blur(8px);
}

.hero-card::after{
content:"";
position:absolute;
width:200px;
height:200px;
left:-70px;
bottom:-90px;
border-radius:50%;
background:rgba(34,197,94,.12);
filter:blur(8px);
}

.hero-inner{
position:relative;
z-index:1;
max-width:850px;
}

.hero-tag{
display:inline-block;
padding:8px 14px;
border-radius:999px;
border:1px solid rgba(255,255,255,.18);
background:rgba(255,255,255,.12);
font-size:.78rem;
letter-spacing:.04em;
text-transform:uppercase;
margin-bottom:18px;
font-weight:500;
}

.hero-card h1{
font-size:clamp(2.3rem, 5.4vw, 4.8rem);
line-height:1.12;
margin-bottom:14px;
letter-spacing:0;
}

.hero-card p{
font-size:1rem;
text-align: justify;
max-width:800px !important;
color:rgba(255,255,255,.88);
margin-bottom:0;
line-height:1.65;
}

.hero-actions{
display:flex;
flex-wrap:wrap;
gap:12px;
margin-top:24px;
}

.hero-actions .btn{
box-shadow:none;
}

.hero-actions .btn-light{
color:var(--primary);
}

.section-block{
padding-top:26px;
}

.section-card{
border-radius:26px;
padding:clamp(22px, 4vw, 34px);
}

.section-head{
display:flex;
justify-content:space-between;
align-items:end;
gap:16px;
margin-bottom:22px;
}

.section-head h3{
margin-bottom:6px;
}

.section-head p{
margin:0;
color:var(--muted);
}

.section-pill{
display:inline-flex;
align-items:center;
padding:8px 14px;
border-radius:999px;
background:rgba(13,110,253,.08);
border:1px solid rgba(13,110,253,.10);
color:var(--primary);
font-size:.85rem;
font-weight:500;
}

.info-card,
.count-card,
.wheel-card,
.milestone-card,
.product-card{
position:relative;
overflow:hidden;
height:100%;
border-radius:18px;
background:#fff;
border:1px solid var(--line);
box-shadow:0 4px 14px rgba(15,23,42,.06);
}

.count-card{
padding:22px 14px;
text-align:center;
}

.count-value{
display:block;
font-family:"Roboto",sans-serif;
font-weight:700;
font-size:clamp(2rem, 4.5vw, 2.8rem);
line-height:1;
color:var(--primary);
}

.count-label{
display:block;
margin-top:10px;
font-size:.74rem;
letter-spacing:.08em;
text-transform:uppercase;
color:var(--muted);
font-weight:500;
}

.info-card{
padding:22px;
transition:transform .25s ease, box-shadow .25s ease;
}

.count-card,
.milestone-card,
.product-card{
transition:
transform .28s ease,
box-shadow .28s ease,
border-color .28s ease,
background .28s ease;
}

.count-card::before,
.info-card::before,
.milestone-card::before,
.product-card::before{
content:"";
position:absolute;
left:18px;
right:18px;
top:0;
height:3px;
border-radius:0 0 999px 999px;
background:linear-gradient(90deg, rgba(96,165,250,.9), rgba(37,99,235,.9));
transform:scaleX(.35);
transform-origin:left center;
opacity:.65;
transition:transform .28s ease, opacity .28s ease;
}

.count-card::after,
.info-card::after,
.milestone-card::after,
.product-card::after{
content:"";
position:absolute;
right:-48px;
top:-48px;
width:120px;
height:120px;
border-radius:50%;
background:radial-gradient(circle, rgba(13,110,253,.12), transparent 70%);
opacity:0;
transition:opacity .28s ease, transform .28s ease;
transform:scale(.8);
pointer-events:none;
}

.info-card:hover,
.count-card:hover,
.milestone-card:hover,
.product-card:hover,
.wheel-card:hover{
transform:translateY(-6px) scale(1.01);
box-shadow:0 14px 30px rgba(15,23,42,.12);
}

.count-card:hover,
.info-card:hover,
.milestone-card:hover,
.product-card:hover{
border-color:rgba(37,99,235,.24);
background:linear-gradient(180deg, #ffffff, #f8fbff);
}

.count-card:hover::before,
.info-card:hover::before,
.milestone-card:hover::before,
.product-card:hover::before{
transform:scaleX(1);
opacity:1;
}

.count-card:hover::after,
.info-card:hover::after,
.milestone-card:hover::after,
.product-card:hover::after{
opacity:1;
transform:scale(1);
}

.icon-badge{
width:54px;
height:54px;
display:grid;
place-items:center;
border-radius:16px;
font-size:1.2rem;
margin-bottom:14px;
background:rgba(13,110,253,.10);
color:var(--primary);
}

.category-card{
position:relative;
overflow:hidden;
height:100%;
padding:22px 18px;
text-align:center;
border-radius:18px;
background:#fff;
border:1px solid var(--line);
box-shadow:0 4px 14px rgba(15,23,42,.06);
transition:
transform .28s ease,
box-shadow .28s ease,
border-color .28s ease,
background .28s ease;
}

.category-card::before{
content:"";
position:absolute;
left:18px;
right:18px;
top:0;
height:3px;
border-radius:0 0 999px 999px;
background:linear-gradient(90deg, rgba(96,165,250,.9), rgba(37,99,235,.9));
transform:scaleX(.35);
transform-origin:left center;
opacity:.65;
transition:transform .28s ease, opacity .28s ease;
}

.category-card::after{
content:"";
position:absolute;
right:-48px;
top:-48px;
width:120px;
height:120px;
border-radius:50%;
background:radial-gradient(circle, rgba(13,110,253,.12), transparent 70%);
opacity:0;
transition:opacity .28s ease, transform .28s ease;
transform:scale(.8);
pointer-events:none;
}

.category-card:hover{
transform:translateY(-6px) scale(1.01);
box-shadow:0 14px 30px rgba(15,23,42,.12);
border-color:rgba(37,99,235,.24);
background:linear-gradient(180deg, #ffffff, #f8fbff);
}

.category-card:hover::before{
transform:scaleX(1);
opacity:1;
}

.category-card:hover::after{
opacity:1;
transform:scale(1);
}

.category-icon{
width:58px;
height:58px;
margin:0 auto 14px;
display:grid;
place-items:center;
border-radius:18px;
background:rgba(13,110,253,.10);
color:var(--primary);
font-size:1.35rem;
box-shadow:inset 0 0 0 1px rgba(13,110,253,.06);
transition:transform .28s ease, background .28s ease, box-shadow .28s ease;
}

.category-card:hover .category-icon{
transform:translateY(-2px);
background:linear-gradient(135deg, rgba(13,110,253,.14), rgba(37,99,235,.08));
box-shadow:0 10px 20px rgba(13,110,253,.12);
}

.info-card h5,
.category-card h5,
.milestone-card h5,
.product-card h5{
margin-bottom:8px;
transition:color .28s ease, transform .28s ease;
}

.info-card p,
.category-card p,
.milestone-card p,
.product-card p{
margin:0;
color:var(--muted);
transition:color .28s ease;
}

.wheel-card{
padding:28px;
text-align:center;
}

.wheel-wrap{
position:relative;
width:min(100%, 320px);
margin:24px auto 18px;
}

.pointer{
position:absolute;
top:-14px;
left:50%;
transform:translateX(-50%);
width:0;
height:0;
border-left:16px solid transparent;
border-right:16px solid transparent;
border-top:28px solid black;
z-index:2;
}

#wheel{
display:block;
width:100%;
height:auto;
filter:drop-shadow(0 18px 30px rgba(37,99,235,.16));
}

.result-text{
min-height:24px;
margin-top:16px;
font-weight:700;
color:var(--success);
}

.milestone-card{
padding:18px;
}

.milestone-top{
display:flex;
justify-content:space-between;
align-items:flex-start;
align-items:center;
gap:6px;
margin-bottom:14px;
}

.milestone-points{
display:inline-flex;
align-items:center;
padding:5px 10px;
border-radius:900px;
background:rgba(13,110,253,.08);
color:var(--primary);
font-weight:600;
font-size:.78rem;
transition:background .28s ease, color .28s ease, box-shadow .28s ease;
text-align: center;
}

.milestone-reward{
font-weight:700;
transition:transform .28s ease;
font-size: .8rem;
text-align: center;
}

.reward-bronze { color: #A97142; }
.reward-silver { color: #8B95A1; }
.reward-gold { color: #D4A017; }
.reward-platinum { color: #5B6C8F; }
.reward-diamond { color: #0E7490; }

.text-justify{
text-align: justify;}

.progress{
height:10px;
margin-top:16px;
border-radius:999px;
background:#e8eef7;
}

.progress-bar{
border-radius:999px;
background:linear-gradient(90deg, #60a5fa, #2563eb);
}

.milestone-featured{
background:linear-gradient(180deg, rgba(13,110,253,.10), rgba(255,255,255,.88));
border-color:rgba(34,197,94,.20);
}

.product-card{
padding:22px;
}

.scroller-shell{
display:flex;
align-items:center;
gap:14px;
}

.scroll-btn{
width:42px;
height:42px;
flex:0 0 42px;
display:inline-flex;
align-items:center;
justify-content:center;
border:1px solid rgba(13,110,253,.16);
border-radius:12px;
background:#fff;
color:var(--primary);
font-size:1.2rem;
line-height:1;
box-shadow:0 4px 12px rgba(15,23,42,.06);
}

.scroll-btn:hover{
background:rgba(13,110,253,.06);
}

.scroll-track{
display:flex;
gap:16px;
overflow-x:auto;
scroll-behavior:smooth;
scroll-snap-type:x proximity;
padding:4px 2px 10px;
flex:1;
scrollbar-width:none;
}

.scroll-track::-webkit-scrollbar{
display:none;
}

.scroll-track .product-card{
min-width:280px;
flex:0 0 280px;
scroll-snap-align:start;
}

.product-meta{
display:flex;
justify-content:space-between;
gap:12px;
margin-top:16px;
font-weight:700;
transition:transform .28s ease;
}

.count-card:hover .count-value{
filter:brightness(1.05);
}

.count-card:hover .count-label{
color:var(--primary);
}

.info-card:hover h5,
.category-card:hover h5,
.milestone-card:hover h5,
.product-card:hover h5{
color:var(--primary);
transform:translateX(2px);
}

.info-card:hover p,
.category-card:hover p,
.milestone-card:hover p,
.product-card:hover p{
color:#526277;
}

.milestone-card:hover .milestone-points{
background:rgba(37,99,235,.12);
box-shadow:0 8px 18px rgba(37,99,235,.12);
}

.milestone-card:hover .milestone-reward,
.product-card:hover .product-meta{
transform:translateY(-1px);
}

.milestone-card:hover .progress-bar{
filter:brightness(1.05);
}

.detail-card,
.contact-card,
.terms-card,
.map-panel,
.office-panel{
position:relative;
overflow:hidden;
height:100%;
border-radius:20px;
background:#fff;
border:1px solid var(--line);
box-shadow:0 4px 14px rgba(15,23,42,.06);
}

.detail-card,
.contact-card,
.terms-card,
.office-panel{
padding:22px;
}

.detail-card::before,
.contact-card::before,
.terms-card::before,
.office-panel::before,
.map-panel::before{
content:"";
position:absolute;
left:18px;
right:18px;
top:0;
height:3px;
border-radius:0 0 999px 999px;
background:linear-gradient(90deg, rgba(96,165,250,.9), rgba(37,99,235,.9));
transform:scaleX(.35);
transform-origin:left center;
opacity:.65;
transition:transform .28s ease, opacity .28s ease;
}

.detail-card:hover,
.contact-card:hover,
.terms-card:hover,
.office-panel:hover,
.map-panel:hover{
transform:translateY(-4px);
box-shadow:0 14px 30px rgba(15,23,42,.12);
border-color:rgba(37,99,235,.24);
}

.detail-card:hover::before,
.contact-card:hover::before,
.terms-card:hover::before,
.office-panel:hover::before,
.map-panel:hover::before{
transform:scaleX(1);
opacity:1;
}

.detail-card p:last-child,
.contact-card p:last-child,
.terms-card p:last-child{
margin-bottom:0;
}

.detail-list,
.terms-list,
.contact-list{
padding-left:18px;
margin:0;
color:var(--muted);
}

.detail-list li,
.terms-list li,
.contact-list li{
margin-bottom:10px;
}

.office-toolbar{
display:flex;
flex-wrap:wrap;
gap:12px;
margin-bottom:18px;
}

.office-toolbar .form-select,
.contact-form .form-control,
.contact-form .form-select{
border-radius:16px;
padding:.9rem 1rem;
border-color:rgba(148,163,184,.35);
}

.office-toolbar .form-select:focus,
.contact-form .form-control:focus,
.contact-form .form-select:focus{
border-color:rgba(13,110,253,.34);
box-shadow:0 0 0 .25rem rgba(13,110,253,.10);
}

.office-meta{
display:grid;
gap:16px;
}

.office-badge{
display:inline-flex;
align-items:center;
gap:8px;
padding:8px 14px;
border-radius:999px;
background:rgba(13,110,253,.08);
color:var(--primary);
font-size:.82rem;
font-weight:700;
width:max-content;
}

.office-address{
font-size:1rem;
line-height:1.7;
color:var(--ink);
margin:0;
white-space:pre-line;
}

.office-note,
.gps-status,
.map-helper{
margin:0;
color:var(--muted);
line-height:1.65;
}

.office-actions,
.contact-actions,
.footer-links{
display:flex;
flex-wrap:wrap;
gap:12px;
}

.map-panel{
padding:18px;
}

.map-frame{
width:100%;
height:360px;
border:0;
border-radius:18px;
background:#e2e8f0;
}

.map-helper{
margin-top:14px;
}

.contact-form textarea{
min-height:140px;
resize:vertical;
}

.status-banner{
display:block;
padding:14px 16px;
border-radius:16px;
border:1px solid transparent;
font-weight:500;
line-height:1.6;
}

.status-success{
background:rgba(34,197,94,.10);
border-color:rgba(34,197,94,.20);
color:#166534;
}

.status-error{
background:rgba(239,68,68,.10);
border-color:rgba(239,68,68,.18);
color:#991b1b;
}

.terms-grid{
display:grid;
gap:16px;
}

.terms-card h5{
margin-bottom:12px;
}

.footer{
margin-top:26px;
border-radius:24px;
padding:22px 24px;
background:linear-gradient(135deg, #00133F, #032A7F 60%, #172554);
color:#cbd5e1;
justify-content:space-between;
gap:18px;
}

.footer-copy{
display:grid;
gap:10px;
}

.footer-title{
font-size:1rem;
font-weight:700;
color:#fff;
}

.footer-meta{
display:grid;
gap:6px;
font-size:.94rem;
color:#dbeafe;
line-height:1.6;
}

.visitor-counter{
display:inline-flex;
align-items:center;
gap:10px;
padding:10px 14px;
border-radius:999px;
background:rgba(255,255,255,.08);
border:1px solid rgba(191,219,254,.16);
color:#eff6ff;
font-size:.92rem;
font-weight:600;
width:max-content;
}

.visitor-counter i{
color:#93c5fd;
}

.footer-copy a{
color:#dbeafe;
text-decoration:none;
}

.footer-links a{
color:#dbeafe;
text-decoration:none;
font-size:.92rem;
}

.footer-links a:hover{
color:#fff;
}

.footer-brand{
display:flex;
}

.footer-logo{
display:block;
width:auto;
max-height:44px;
object-fit:contain;
}

.btn{
border-radius:12px;
padding:.75rem 1.3rem;
font-weight:500;
}

.btn-primary{
border:none;
background:var(--primary);
box-shadow:0 4px 12px rgba(13,110,253,.22);
}

.btn-outline-primary{
border-color:rgba(13,110,253,.20);
background:#fff;
color:var(--primary);
}

.modal-content{
border:none;
border-radius:20px;
padding:26px;
}

.form-control{
border-radius:16px;
padding:.9rem 1rem;
border-color:rgba(148,163,184,.35);
}

.form-control:focus{
border-color:rgba(13,110,253,.34);
box-shadow:0 0 0 .25rem rgba(13,110,253,.10);
}

@media (max-width:991.98px){
.section-head{
flex-direction:column;
align-items:flex-start;
}

.nav-links{
display:none;
}
}

@media (max-width:767.98px){
.glass-nav,
.footer{
flex-direction:column;
align-items:flex-start;
}

.menu-toggle{
display:inline-flex;
}

.desktop-auth{
display:none !important;
}

.glass-nav > .d-flex{
width:100%;
flex-wrap:nowrap;
}

.brand-box{
flex:1 1 auto;
max-width:calc(100vw - 140px);
}

.hero-actions,
.office-actions,
.contact-actions,
.footer-links{
width:100%;
}

.hero-actions .btn,
.office-actions .btn,
.office-actions .btn-outline-primary,
.office-actions .btn-primary,
.contact-actions .btn{
width:100%;
}

.wheel-card{
padding:22px;
}

.scroller-shell{
gap:10px;
}

.scroll-btn{
width:38px;
height:38px;
flex-basis:38px;
}

.scroll-track .product-card{
min-width:240px;
flex-basis:240px;
}

.map-frame{
height:300px;
}
}

