:root{
  --bg: #ffffff;
  --ink: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --card: #ffffff;
  --alt: #f9fafb;
  --accent: #f97316; /* swap to match your logo orange */
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --container: 1100px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}

a{ color: inherit; text-decoration: none; }
.container{ max-width: var(--container); margin: 0 auto; padding: 0 20px; }

.site-header{
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; padding:14px 0; }
.brand img{ height:44px; width:auto; display:block; }
.nav{ display:flex; gap:18px; align-items:center; }
.nav a{ color: var(--muted); font-weight: 600; }
.nav a:hover{ color: var(--ink); }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  border: 1px solid transparent;
  box-shadow: 0 10px 20px rgba(0,0,0,.12);
}
.btn:hover{ transform: translateY(-1px); }
.btn-sm{ padding: 10px 14px; font-size: 14px; }
.btn-ghost{
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}
.btn-ghost:hover{ border-color: var(--ink); }

.hero{ padding: 56px 0; border-bottom: 1px solid var(--line); }
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 36px;
  align-items: center;
}
h1{
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.lead{ font-size: 18px; color: var(--muted); max-width: 54ch; margin: 0 0 18px; }
.actions{ display:flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.trust{ display:flex; gap: 10px; flex-wrap: wrap; color: var(--muted); font-weight: 700; font-size: 14px; }
.trust span{ padding: 8px 10px; border:1px solid var(--line); border-radius: 999px; background: #fff; }

.hero-media{ display:flex; justify-content:flex-end; }
.hero-photo{
  width: 100%;
  height: 320px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(249,115,22,.15), rgba(17,24,39,.05)),
    radial-gradient(circle at 30% 30%, rgba(0,0,0,.08), transparent 60%);
  border: 1px solid var(--line);
}

.section{ padding: 56px 0; }
.section.alt{ background: var(--alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-head h2{ margin: 0; font-size: 28px; letter-spacing: -0.01em; }
.section-head p{ margin: 10px 0 0; color: var(--muted); max-width: 70ch; }
.accent-bar{ width: 64px; height: 4px; background: var(--accent); border-radius: 999px; margin-top: 10px; }

.card-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
}
.card h3{ margin: 0 0 8px; font-size: 16px; }
.card p{ margin: 0; color: var(--muted); }

.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.step{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.step-num{ color: var(--accent); font-weight: 900; letter-spacing: .08em; font-size: 12px; }
.step h3{ margin: 8px 0 8px; }
.step p{ margin: 0; color: var(--muted); }

.section-cta{ margin-top: 18px; }

.cta-band{
  padding: 46px 0;
  background: #0f1115;
  color: #fff;
}
.cta-inner{ display:flex; align-items:center; justify-content:space-between; gap: 18px; }
.cta-band p{ color: rgba(255,255,255,.8); margin: 10px 0 0; }

.site-footer{ border-top: 1px solid var(--line); padding: 18px 0; }
.footer-inner{ display:flex; justify-content:space-between; gap: 10px; flex-wrap: wrap; color: var(--muted); }

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .card-grid{ grid-template-columns: repeat(2, 1fr); }
  .steps{ grid-template-columns: repeat(2, 1fr); }
  .cta-inner{ flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px){
  .card-grid, .steps{ grid-template-columns: 1fr; }
}
