:root{
  --bg:#e9edf3;
  --card:#e9edf3;
  --text:#1f2937;
  --muted:#4b5563;
  --primary:#2f6fed;
  --primary-2:#1f5fe0;
  --success:#16a34a;
  --radius:18px;
  --shadow1:14px 14px 28px rgba(163,177,198,.6);
  --shadow2:-14px -14px 28px rgba(255,255,255,.9);
  --shadow-inset:inset 10px 10px 20px rgba(163,177,198,.55), inset -10px -10px 20px rgba(255,255,255,.95);
  --border:2px solid rgba(31,41,55,.12);
  --max:980px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.55;
}
a{color:var(--primary);text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%;height:auto;display:block}
.wrapper{max-width:var(--max);margin:0 auto;padding:18px 14px 34px}
.card{
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow1),var(--shadow2);
  padding:18px;
  margin:14px 0;
}
.topbar{
  position:sticky;top:0;z-index:50;
  background:rgba(233,237,243,.92);
  backdrop-filter:saturate(1.2) blur(10px);
  border-bottom:1px solid rgba(31,41,55,.06);
}
.topbar-inner{
  max-width:var(--max);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 14px;
  gap:12px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}
.brand img{
  width:60px;height:60px;border-radius:14px;
  box-shadow:var(--shadow1),var(--shadow2);
}
.brand span{
  font-weight:700;
  font-size:16px;
  color:var(--text);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.burger{
  width:46px;height:46px;border-radius:14px;
  border:0;
  background:var(--card);
  box-shadow:var(--shadow1),var(--shadow2);
  display:grid;
  place-items:center;
  cursor:pointer;
}
.burger:active{box-shadow:var(--shadow-inset)}
.burger-lines{
  width:20px;height:14px;position:relative;
}
.burger-lines span{
  position:absolute;left:0;right:0;height:2px;border-radius:2px;
  background:rgba(31,41,55,.78);
}
.burger-lines span:nth-child(1){top:0}
.burger-lines span:nth-child(2){top:6px}
.burger-lines span:nth-child(3){bottom:0}

.menu{
  position:fixed;inset:0;
  background:rgba(17,24,39,.35);
  display:none;
  z-index:60;
}
.menu.open{display:block}
.menu-panel{
  position:absolute;top:10px;left:10px;right:10px;
  max-width:var(--max);
  margin:0 auto;
  background:var(--card);
  border-radius:22px;
  box-shadow:var(--shadow1),var(--shadow2);
  padding:12px;
}
.menu-head{
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  padding:6px 4px 10px;
}
.menu-title{font-weight:800;font-size:16px}
.close-btn{
  width:44px;height:44px;border-radius:14px;border:0;background:var(--card);
  box-shadow:var(--shadow1),var(--shadow2);
  cursor:pointer;
}
.close-btn:active{box-shadow:var(--shadow-inset)}
.navlist{
  display:grid;
  gap:8px;
  padding:6px 4px 10px;
}
.navlist a{
  display:flex;align-items:center;justify-content:space-between;
  padding:12px 12px;
  border-radius:16px;
  background:var(--card);
  box-shadow:var(--shadow1),var(--shadow2);
  color:var(--text);
  font-weight:650;
}
.navlist a:active{box-shadow:var(--shadow-inset)}
.navlist small{color:var(--muted);font-weight:600}

.breadcrumbs{
  font-size:13px;
  color:var(--muted);
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  align-items:center;
}
.breadcrumbs a{color:var(--muted)}
.breadcrumbs .sep{opacity:.7}

.h1{
  font-size:26px;
  line-height:1.15;
  margin:0 0 10px 0;
}
.lead{
  margin:0;
  color:var(--muted);
  font-weight:560;
}
.section-img img{
  border-radius:22px;
  box-shadow:var(--shadow1),var(--shadow2);
}

.offers-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  border:var(--border);
  border-radius:16px;
  overflow:hidden;
}
.offers-table td{
  padding:14px 12px;
  vertical-align:middle;
  border-bottom:1px solid rgba(31,41,55,.08);
}
.offers-table tr:last-child td{border-bottom:0}
.offer-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.offer-logo{
  width:160px;height:60px;flex:0 0 auto;
  border-radius:12px;
  box-shadow:var(--shadow1),var(--shadow2);
  background:var(--card);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.offer-logo img{width:160px;height:60px;object-fit:cover}
.offer-sum{
  font-size:16px;
  font-weight:750;
  color:var(--text);
  flex:1 1 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.offer-cta{
  flex:0 0 auto;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:0;
  cursor:pointer;
  font-weight:800;
  background:var(--success);
  color:#fff;
  box-shadow:10px 10px 20px rgba(163,177,198,.55), -10px -10px 20px rgba(255,255,255,.75);
}
.btn:active{transform:translateY(1px)}
@media (max-width:640px){
  .offer-row{flex-direction:column;align-items:stretch}
  .offer-sum{text-align:center;justify-content:center}
  .offer-cta .btn{width:100%}
  .offer-logo{width:160px;height:60px;margin:0 auto}
  .offer-logo img{width:160px;height:60px;object-fit:cover}
}

.content h2{
  margin:18px 0 8px;
  font-size:20px;
  line-height:1.2;
}
.content p{margin:0 0 12px;color:var(--text)}
.content .muted{color:var(--muted)}

.faq{
  display:grid;
  gap:10px;
}
.faq-item{
  background:var(--card);
  border-radius:16px;
  box-shadow:var(--shadow1),var(--shadow2);
  padding:14px 14px;
}
.faq-item summary{
  cursor:pointer;
  font-weight:800;
  color:var(--text);
}
.faq-item p{margin:10px 0 0;color:var(--muted);font-weight:560}

.footer{
  margin-top:22px;
  padding:20px 0 12px;
}
.footer-links{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.footer-links a{
  padding:10px 12px;
  border-radius:14px;
  background:var(--card);
  box-shadow:var(--shadow1),var(--shadow2);
  color:var(--text);
  font-weight:700;
}
.footer-links a:active{box-shadow:var(--shadow-inset)}

.container{
  background:var(--card);
  border-radius:22px;
  box-shadow:var(--shadow1),var(--shadow2);
  padding:18px;
}
.header h1{
  margin:0 0 6px 0;
  font-size:22px;
  line-height:1.2;
}
.header p{margin:0;color:var(--muted);font-weight:600}
.divider{
  height:1px;
  background:rgba(31,41,55,.1);
  margin:14px 0 16px;
}
.form-group{margin:0 0 14px 0}
.label{display:flex;align-items:center;justify-content:space-between;gap:10px}
.label-text{color:var(--muted);font-weight:700}
.value-display{font-weight:900}
.slider-container{margin-top:10px}
input[type="range"]{
  -webkit-appearance:none;
  width:100%;
  height:10px;
  border-radius:10px;
  background:#e2e8f0;
  outline:none;
}
input[type="range"]::-webkit-slider-thumb{
  -webkit-appearance:none;
  width:22px;height:22px;border-radius:50%;
  background:var(--primary);
  box-shadow:var(--shadow1),var(--shadow2);
  cursor:pointer;
}
input[type="range"]::-moz-range-thumb{
  width:22px;height:22px;border-radius:50%;
  background:var(--primary);
  border:0;
  box-shadow:var(--shadow1),var(--shadow2);
  cursor:pointer;
}
.range-labels{
  display:flex;
  justify-content:space-between;
  color:var(--muted);
  font-weight:650;
  font-size:13px;
  margin-top:6px;
}
.results-section{
  margin-top:12px;
  border-radius:18px;
  padding:14px;
  box-shadow:var(--shadow-inset);
}
.results-title{
  font-weight:900;
  margin-bottom:10px;
}
.result-item{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding:9px 0;
  border-bottom:1px dashed rgba(31,41,55,.18);
}
.result-item:last-child{border-bottom:0}
.result-label{color:var(--muted);font-weight:700}
.result-value{font-weight:900}
.info-box{
  margin-top:14px;
  padding:12px 14px;
  border-radius:18px;
  box-shadow:var(--shadow-inset);
  color:var(--text);
}
.disclaimer{
  margin-top:12px;
  color:var(--muted);
  font-weight:600;
  font-size:13px;
}

.form{
  display:grid;
  gap:12px;
}
.field{
  display:grid;
  gap:6px;
}
.field label{font-weight:750;color:var(--muted)}
.field input,.field textarea{
  width:100%;
  border:0;
  padding:12px 12px;
  border-radius:16px;
  background:var(--card);
  box-shadow:var(--shadow-inset);
  font:inherit;
  color:var(--text);
}
.field textarea{min-height:130px;resize:vertical}