:root{
--blue:#4b57ff;
--blue2:#3b47f2;
--card:#f3d7b8;
--card2:#f7e1c8;
--shadow: 0 16px 40px rgba(0,0,0,.20);
--text:#2b1b13;
--muted: rgba(43,27,19,.72);
--white: rgba(255,255,255,.85);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
margin:0;
font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji";
color: var(--text);
overflow-x:hidden;
}

.bg{
position:fixed; inset:0;
background:
radial-gradient(900px 500px at 25% 15%, rgba(255,255,255,.18), transparent 60%),
radial-gradient(900px 500px at 75% 25%, rgba(255,255,255,.12), transparent 60%),
linear-gradient(180deg, #5966ff 0%, #4452ff 35%, #4452ff 55%, #5966ff 100%);
z-index:-2;
}
.bg::after{
content:"";
position:absolute; inset:-40px;
background:
repeating-linear-gradient(135deg, rgba(255,255,255,.08) 0 2px, rgba(255,255,255,0) 2px 8px);
opacity:.35;
filter: blur(.2px);
}

.wrap{
width:min(860px, 92vw);
margin: 22px auto 40px;
}

.topbar{
display:flex;
align-items:center;
justify-content:space-between;
gap:16px;
color: white;
padding: 6px 4px 16px;
}

.brand{
display:flex; align-items:center; gap:10px;
}
.logoDot{
width:42px; height:42px;
border-radius: 14px;
background: rgba(255,255,255,.16);
display:grid; place-items:center;
box-shadow: 0 10px 25px rgba(0,0,0,.18);
}
.logoDot svg{ width:38px; height:38px; display:block; }

.brandName{
font-weight:800;
font-size: 22px;
letter-spacing:.2px;
}
.brandTag{
font-weight:600;
opacity:.92;
text-align:right;
}

.heroCard{
background: linear-gradient(180deg, var(--card2), var(--card));
border: 2px solid rgba(255,255,255,.35);
border-radius: 16px;
padding: 18px 18px 16px;
box-shadow: var(--shadow);
position:relative;
overflow:hidden;
}
.heroCard::after{
content:"";
position:absolute; inset:0;
background:
radial-gradient(600px 240px at 30% 10%, rgba(255,255,255,.35), transparent 55%),
radial-gradient(600px 240px at 80% 30%, rgba(255,255,255,.25), transparent 55%);
opacity:.65;
pointer-events:none;
}
.heroCard > *{ position:relative; z-index:1; }

h1{
margin: 0 0 8px;
font-size: clamp(22px, 3.5vw, 34px);
letter-spacing:.2px;
}
.accent{ color:#5b2a1c; }

.priceLine{
display:flex;
align-items:baseline;
gap:8px;
flex-wrap:wrap;
font-size: 18px;
}
.star{ color:#b06a00; }
.priceStrong{ font-weight:800; }
.priceRest{ font-weight:600; opacity:.9; }

.subLine{ margin-top:4px; }
.muted{ color: var(--muted); }

.steps{
margin-top: 16px;
display:flex;
flex-direction:column;
gap: 12px;
}

.step{
background: linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.12));
border: 1px solid rgba(255,255,255,.35);
border-radius: 16px;
box-shadow: 0 10px 28px rgba(0,0,0,.18);
overflow:hidden;
}

.step summary{
list-style:none;
cursor:pointer;
display:flex;
align-items:center;
gap:12px;
padding: 14px 14px;
user-select:none;
}
.step summary::-webkit-details-marker{ display:none; }

.badge{
width:34px; height:34px;
display:grid; place-items:center;
border-radius: 12px;
font-weight:900;
color:white;
background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.20));
border: 1px solid rgba(255,255,255,.35);
}

.step[data-step="1"] .badge{ background: linear-gradient(180deg,#3a79ff,#2c52ff); }
.step[data-step="2"] .badge{ background: linear-gradient(180deg,#2bb67b,#1a8e5d); }
.step[data-step="3"] .badge{ background: linear-gradient(180deg,#6a8bff,#4b57ff); }
.step[data-step="4"] .badge{ background: linear-gradient(180deg,#ffb14a,#ff8a1f); }
.step[data-step="5"] .badge{ background: linear-gradient(180deg,#ff6b6b,#ff3f3f); }
.step[data-step="6"] .badge{ background: linear-gradient(180deg,#ff6b6b,#ff3f3f); }

.title{
font-weight:900;
font-size: 18px;
flex:1;
color: rgba(34,20,14,.95);
}
.chev{
font-size: 18px;
opacity:.85;
transform: translateY(-1px);
}

.content{
padding: 0 14px 14px;
}

.row{
display:flex;
gap:14px;
align-items:flex-start;
flex-wrap:wrap;
}

.field{
display:flex;
flex-direction:column;
gap:6px;
min-width: 220px;
flex: 1;
}
.label{
font-weight:800;
font-size: 13px;
opacity:.9;
}
select, input, textarea{
width:100%;
border-radius: 12px;
border: 1px solid rgba(0,0,0,.18);
padding: 10px 12px;
background: rgba(255,255,255,.75);
outline:none;
font-size: 14px;
}
textarea{ resize: vertical; min-height: 44px; }

.hint{
flex:1.2;
min-width: 240px;
padding: 10px 12px;
border-radius: 12px;
background: rgba(255,255,255,.20);
border: 1px solid rgba(255,255,255,.35);
color: rgba(34,20,14,.85);
line-height:1.35;
}

.pillRow{
display:flex;
gap:10px;
flex-wrap:wrap;
justify-content:center;
padding: 6px 0 4px;
}
.pill{
border: 1px solid rgba(0,0,0,.18);
background: rgba(255,255,255,.70);
padding: 9px 14px;
border-radius: 12px;
font-weight:800;
cursor:pointer;
transition: transform .05s ease, background .12s ease;
}
.pill:active{ transform: scale(.98); }
.pill.isOn{
background: rgba(27,120,255,.18);
border-color: rgba(27,120,255,.35);
}

.selectCard{
width: min(520px, 100%);
margin: 6px auto 0;
display:flex;
align-items:center;
gap:10px;
padding: 12px 14px;
border-radius: 14px;
border: 1px solid rgba(0,0,0,.18);
background: rgba(255,255,255,.70);
cursor:pointer;
font-weight:900;
}
.selectCard .dot{
width:14px; height:14px;
border-radius: 99px;
border: 2px solid rgba(0,0,0,.35);
background: transparent;
}
.selectCard.isOn .dot{
border-color: rgba(27,120,255,.65);
background: rgba(27,120,255,.75);
}

.grid3{
display:grid;
grid-template-columns: 1fr 1fr 1.2fr;
gap: 12px;
}
@media (max-width: 800px){
.grid3{ grid-template-columns: 1fr; }
.brandTag{ display:none; }
}

.status{
margin-top: 10px;
font-weight:900;
font-size: 13px;
color: rgba(43,27,19,.78);
}
.status.good{ color: rgba(18,86,54,.92); }
.status.warn{ color: rgba(122,52,12,.92); }

.demoBox{
background: rgba(255,255,255,.20);
border: 1px solid rgba(255,255,255,.35);
border-radius: 14px;
padding: 12px;
}
.demoTitle{
font-weight:900;
margin-bottom: 4px;
}
.small{ font-size: 13px; }
.center{ text-align:center; }

.btn{
margin-top: 10px;
padding: 10px 12px;
border-radius: 12px;
border: 1px solid rgba(0,0,0,.18);
background: rgba(255,255,255,.75);
font-weight:900;
cursor:pointer;
}
.btn:active{ transform: scale(.99); }

.priceBlock{
background: rgba(255,255,255,.20);
border: 1px solid rgba(255,255,255,.35);
border-radius: 14px;
padding: 12px;
margin-bottom: 10px;
}

.bigBtn{
width: min(520px, 100%);
display:block;
margin: 8px auto 0;
padding: 14px 16px;
border-radius: 14px;
border: 1px solid rgba(0,0,0,.25);
background: linear-gradient(180deg,#ff5a22,#e44210);
color: white;
font-weight: 1000;
font-size: 18px;
cursor:pointer;
box-shadow: 0 12px 26px rgba(0,0,0,.18);
}
.bigBtn:disabled{
opacity:.55;
cursor:not-allowed;
filter: grayscale(.2);
}

.footer{
display:flex;
justify-content:space-between;
align-items:center;
gap:12px;
color:white;
margin-top: 16px;
padding: 10px 4px 2px;
}
.footRight{ display:flex; align-items:center; gap:8px; }
.footLink{
color: rgba(255,255,255,.90);
text-decoration:none;
font-weight:800;
}
.footLink:hover{ text-decoration:underline; }

.copy{
color: rgba(255,255,255,.85);
text-align:center;
margin-top: 6px;
font-weight:800;
}
