:root{
  --bg:#f8f3eb;
  --ink:#1f2937;
  --muted:#64748b;
  --dark:#111827;
  --gold:#b7791f;
  --green:#15803d;
  --green-dark:#14532d;
  --card:#ffffff;
  --line:#e5e7eb;
}

*{box-sizing:border-box}

body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:Arial, Helvetica, sans-serif;
  line-height:1.72;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at top left, rgba(183,121,31,.12), transparent 32%),
    radial-gradient(circle at bottom right, rgba(17,24,39,.09), transparent 35%);
  z-index:-1;
}

.topnav{
  background:rgba(17,24,39,.96);
  color:#fff;
  padding:14px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(10px);
}

.brand{
  font-weight:700;
  letter-spacing:.3px;
}

.navlinks{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  align-items:center;
}

.navlinks a{
  color:#e5e7eb;
  text-decoration:none;
  font-size:14px;
}

.navlinks a:hover{
  color:#fff;
  text-decoration:underline;
}

header{
  background:
    linear-gradient(135deg, rgba(17,24,39,.98), rgba(92,59,30,.94)),
    radial-gradient(circle at top right, rgba(183,121,31,.45), transparent 35%);
  color:white;
  padding:92px 26px;
  text-align:center;
}

header h1{
  font-size:clamp(34px,5vw,56px);
  line-height:1.08;
  margin:0 0 18px;
  letter-spacing:-.8px;
}

.sub, header p{
  font-size:clamp(18px,2.1vw,22px);
  color:#e5e7eb;
  max-width:980px;
  margin-left:auto;
  margin-right:auto;
}

.wrap, main{
  max-width:1120px;
  margin:auto;
  padding:44px 24px;
}

.box,.card{
  background:rgba(255,255,255,.94);
  border:1px solid rgba(229,231,235,.9);
  border-radius:24px;
  padding:30px;
  box-shadow:0 14px 36px rgba(15,23,42,.08);
  margin-bottom:24px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(255px,1fr));
  gap:22px;
}

.card h3,.box h2{
  margin-top:0;
}

.cta, button{
  display:inline-block;
  background:linear-gradient(135deg,var(--green),var(--green-dark));
  color:white !important;
  padding:14px 22px;
  border-radius:14px;
  text-decoration:none;
  font-weight:700;
  border:0;
  box-shadow:0 10px 22px rgba(21,128,61,.22);
  transition:transform .15s ease, box-shadow .15s ease;
}

.cta:hover, button:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 28px rgba(21,128,61,.28);
}

.price{
  font-size:24px;
  color:var(--green-dark);
  font-weight:800;
}

a{
  color:#0f766e;
}

footer{
  padding:34px 24px;
  text-align:center;
  color:#6b7280;
  border-top:1px solid rgba(229,231,235,.8);
}

footer a{
  margin:0 5px;
}

.badge{
  display:inline-block;
  padding:7px 11px;
  border-radius:999px;
  background:#fff7ed;
  color:#92400e;
  border:1px solid #fed7aa;
  font-size:13px;
  font-weight:700;
  margin:4px;
}

.trust-row{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:8px;
  margin-top:22px;
}

@media(max-width:760px){
  .topnav{
    align-items:flex-start;
    flex-direction:column;
  }
  .navlinks{
    gap:10px;
  }
  .box,.card{
    padding:24px;
  }
}
