:root{
  --bg:#f6f2ea;
  --text:#2a2a2a;
  --muted:#6a6a6a;
  --accent:#b8875a;
  --card:#ffffff;
  --shadow:0 8px 24px rgba(0,0,0,0.12);
}

*{box-sizing:border-box}
html,body{height:100%;margin:0;background:var(--bg);color:var(--text);font-family:system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial}
img{display:block;max-width:100%}

html{scroll-behavior:smooth}

.brand{
  display:flex;align-items:center;gap:10px;padding:10px 12px;
}
.logo{width:36px;height:36px}
.brand-text{display:flex;flex-direction:column;line-height:1.1}
.brand-text strong{font-weight:700}
.brand-text span{color:var(--muted);font-size:12px}

.viewport{
  height:auto;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.hero{
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  overflow:hidden;
  border-radius:14px;
  margin:0 12px;
  box-shadow:var(--shadow);
  background:var(--card);
  min-height:54vh;
}

.carousel{position:absolute;inset:0;overflow:hidden}
.slides{display:flex;height:100%;transition:transform .5s ease}
.slides img{width:100%;object-fit:cover;height:100%}

.dots{position:absolute;bottom:10px;left:50%;transform:translateX(-50%);display:flex;gap:6px}
.dots button{width:8px;height:8px;border-radius:50%;border:none;background:#ddd;opacity:.8}
.dots button.active{background:var(--accent);opacity:1}

.hero-copy{
  position:relative;z-index:2;background:linear-gradient(to top, rgba(246,242,234,0.95), rgba(246,242,234,0.7));
  padding:12px 12px 14px;
}
.hero-copy h1{margin:0 0 6px;font-size:18px}
.hero-copy p{margin:0;color:var(--muted);font-size:13px}

.actions{
  position:sticky; top:0; z-index:5;
  display:flex; gap:8px; padding:10px 12px; background:var(--bg); backdrop-filter:saturate(1.2);
}
.actions a{
  flex:1; text-align:center; text-decoration:none;
  background:var(--card); border:1px solid #e5ded1; border-radius:12px; padding:12px;
  font-size:14px; color:var(--text); box-shadow:var(--shadow);
}

.section{
  background:var(--card);
  border-radius:14px;
  margin:0 12px 12px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.section header{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 14px; border-bottom:1px solid #eee;
}
.section .sheet-content{ padding:12px 14px; overflow:visible }
.section .wide{border-radius:10px; margin-bottom:10px}

.product{display:grid;grid-template-columns:72px 1fr;gap:10px;margin-bottom:12px;align-items:center}
.product img{width:72px;height:72px;object-fit:cover;border-radius:10px}
.product h3{margin:0;font-size:15px}
.product p{margin:4px 0 0;color:var(--muted);font-size:13px}

.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.feature h3{margin:0 0 4px;font-size:14px}
.feature p{margin:0;color:var(--muted);font-size:13px}

.table-wrap{overflow:auto;border-radius:10px}
.compare{width:100%;border-collapse:collapse;background:#fff}
.compare th,.compare td{padding:10px;border-bottom:1px solid #eee;text-align:left;font-size:13px}
.compare thead th{background:#faf7f2;font-weight:600}

.faq .faq-item{border-bottom:1px solid #eee}
.faq-q{width:100%;text-align:left;background:transparent;border:none;padding:10px 0;font-size:14px}
.faq-a{max-height:0;overflow:hidden;transition:max-height .3s ease}
.faq-item.open .faq-a{max-height:160px}

.contact-form{display:grid;gap:10px}
.contact-form input,.contact-form textarea{width:100%;padding:10px;border:1px solid #e5ded1;border-radius:10px;background:#fff;font-size:14px}
.btn{background:var(--accent);color:#fff;border:none;border-radius:10px;padding:12px;font-size:14px}

.footer{display:flex;flex-direction:column;align-items:center;gap:6px;padding:16px 0;color:var(--muted)}
.footer img{width:28px;height:28px;opacity:.85}