:root{
  --bg:#ffffff;
  --text:#111827;
  --muted:#6b7280;
  --gold:#b88a2a;
  --gold2:#e2c06b;
  --card:#ffffff;
  --border:#e5e7eb;
  --shadow:0 12px 30px rgba(17,24,39,.08);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;
  background:var(--bg);
  color:var(--text);
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{max-width:1120px;margin:0 auto;padding:0 18px}

/* Navbar */
.navbar{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.86);
  border-bottom:1px solid rgba(229,231,235,.8);
  backdrop-filter:saturate(180%) blur(10px);
}
.nav-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;gap:16px;
}
.brand{display:flex;align-items:center;gap:12px;min-width:220px}
.brand-logo{
  width:42px;height:42px;border-radius:12px;
  border:1px solid var(--border);
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  padding:6px;object-fit:contain;
}
.brand-text{line-height:1.05}
.brand-name{font-weight:900;letter-spacing:.2px}
.brand-sub{font-size:12px;color:var(--muted);margin-top:4px}

.nav-links{display:flex;gap:14px;align-items:center;color:var(--muted);font-size:14px}
.nav-links a{padding:10px 10px;border-radius:12px}
.nav-links a:hover{background:rgba(184,138,42,.10);color:var(--text)}
.nav-cta{
  color:var(--text);
  padding:10px 14px;
  border-radius:14px;
  border:1px solid rgba(184,138,42,.35);
  background:linear-gradient(180deg, rgba(184,138,42,.10), rgba(255,255,255,.8));
  box-shadow:0 8px 18px rgba(184,138,42,.10);
}
.nav-cta:hover{border-color:rgba(184,138,42,.55)}

/* Hero */
.hero{
  background:
    radial-gradient(1200px 400px at 15% 0%, rgba(184,138,42,.18), transparent 55%),
    radial-gradient(900px 320px at 90% 10%, rgba(226,192,107,.22), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
  border-bottom:1px solid rgba(229,231,235,.8);
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  padding:28px 0 22px;
  align-items:stretch;
}
.hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  color:var(--text);
  background:rgba(184,138,42,.14);
  border:1px solid rgba(184,138,42,.20);
  padding:8px 12px;
  border-radius:999px;
}
.hero h1{margin:14px 0 8px;font-size:34px;letter-spacing:-.4px}
.hero p{margin:0;color:var(--muted);font-size:15px;line-height:1.6;max-width:56ch}

.hero-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:16px}
.btn-primary, .btn-ghost{
  display:inline-flex;align-items:center;justify-content:center;
  padding:11px 14px;border-radius:14px;font-weight:700;font-size:14px;
}
.btn-primary{
  color:#111827;
  border:1px solid rgba(184,138,42,.45);
  background:linear-gradient(135deg, rgba(184,138,42,.22), rgba(226,192,107,.22));
  box-shadow:0 10px 22px rgba(184,138,42,.14);
}
.btn-primary:hover{border-color:rgba(184,138,42,.65)}
.btn-ghost{
  color:var(--text);
  border:1px solid var(--border);
  background:#fff;
}
.btn-ghost:hover{background:rgba(17,24,39,.02)}

.trust-row{
  margin-top:16px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  opacity:.92;
}
.trust-row img{
  height:26px;width:auto;
  padding:6px 10px;
  border-radius:14px;
  border:1px solid rgba(229,231,235,.9);
  background:rgba(255,255,255,.8);
}

.hero-card{
  border:1px solid rgba(229,231,235,.9);
  background:rgba(255,255,255,.9);
  border-radius:20px;
  box-shadow:var(--shadow);
  padding:16px 16px 14px;
}
.mini-title{font-weight:900;letter-spacing:.2px}
.mini-list{margin:10px 0 0;padding:0 0 0 18px;color:var(--text);line-height:1.7}
.mini-note{margin-top:10px;color:var(--muted);font-size:13px}

/* Sections */
.section{padding:26px 0 8px}
.section-head{display:flex;flex-direction:column;gap:6px;margin-bottom:10px}
.section-head h2{margin:0;font-size:22px}
.section-head p{margin:0;color:var(--muted)}

.steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:12px;
}
.step{
  display:flex;gap:12px;align-items:flex-start;
  border:1px solid var(--border);
  border-radius:18px;
  background:#fff;
  padding:14px;
  box-shadow:0 10px 22px rgba(0,0,0,.04);
}
.step-num{
  width:34px;height:34px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  font-weight:900;
  color:#111827;
  border:1px solid rgba(184,138,42,.30);
  background:linear-gradient(135deg, rgba(184,138,42,.20), rgba(226,192,107,.20));
}
.step-title{font-weight:800}
.step-desc{color:var(--muted);font-size:13px;margin-top:4px;line-height:1.45}

/* Product grid/cards */
.grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  padding:14px 0 40px;
}
@media (max-width:1000px){.grid{grid-template-columns:repeat(3,1fr)} .hero-inner{grid-template-columns:1fr;}}
@media (max-width:760px){.grid{grid-template-columns:repeat(2,1fr)} .nav-links{gap:6px} .hero h1{font-size:28px}}
@media (max-width:420px){.grid{grid-template-columns:1fr} .nav-links a{padding:10px 8px}}

.card{
  border:1px solid var(--border);
  border-radius:20px;
  overflow:hidden;
  background:var(--card);
  box-shadow:0 10px 26px rgba(0,0,0,.05);
  display:flex;
  flex-direction:column;
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.card:hover{transform:translateY(-2px);box-shadow:0 16px 34px rgba(0,0,0,.08);border-color:rgba(184,138,42,.30)}
.imgwrap{display:block;aspect-ratio:4/3;background:#fafafa}
.imgwrap img{width:100%;height:100%;object-fit:cover}
.content{padding:10px 10px 12px;display:flex;flex-direction:column;gap:8px}
.title{font-weight:800;line-height:1.25font-size:14px;}

.row{display:flex;align-items:center;justify-content:space-between;gap:10px}
.price{font-weight:900;color:#111827}
.small{font-size:12px;color:var(--muted)}
.btn{
  border:1px solid var(--border);
  background:#fff;
  color:#111827;
  padding:10px 12px;
  border-radius:14px;
  cursor:pointer;
  font-weight:800;
}
.btn-primary{
  border-color:rgba(184,138,42,.45);
  background:linear-gradient(135deg, rgba(184,138,42,.18), rgba(226,192,107,.18));
}
.btn:hover{border-color:rgba(184,138,42,.55)}

/* Footer */
.footer{
  border-top:1px solid rgba(229,231,235,.9);
  background:linear-gradient(180deg,#ffffff 0%, #fffaf0 100%);
  padding:26px 0;
}
.footer-inner{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap:16px;
}
.foot-title{font-weight:900;margin-bottom:8px}
.foot-text{color:var(--muted);font-size:13px;line-height:1.6;margin:0 0 8px}
.foot-link{display:block;color:var(--text);padding:8px 0;font-size:14px}
.foot-link:hover{color:var(--gold)}
.foot-badges{display:flex;gap:10px;align-items:center;margin-top:10px}
.foot-badges img{height:26px;width:auto;border:1px solid var(--border);border-radius:14px;padding:6px 10px;background:#fff}
.foot-note{margin-top:10px;color:var(--muted);font-size:12px}

@media (max-width:900px){.footer-inner{grid-template-columns:1fr 1fr}}
@media (max-width:560px){.footer-inner{grid-template-columns:1fr}}
