:root{
  --bg:#ffffff;
  --ink:#151515;
  --muted:#4b4b4b;
  --line:#e9e6df;
  --card:#fbfaf7;
  --gold:#b8912e;
  --gold-soft:rgba(184,145,46,.07);
  --gold-border:rgba(184,145,46,.45);
  --shadow:0 10px 30px rgba(0,0,0,.06);
  --radius:16px;
  --max:1120px;
  --form-max:920px;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.5;
}

a{color:inherit}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:0 20px;
}

.page-wrap{
  max-width:var(--form-max);
  padding-top:22px;
  padding-bottom:36px;
}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:220px;
  text-decoration:none;
}

.brand img{
  height:44px;
  width:auto;
  display:block;
}

.navlinks{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  text-decoration:none;
  font-weight:600;
  letter-spacing:.2px;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  cursor:pointer;
}

.btn:hover{transform:translateY(-1px)}

.btn-gold{
  border:1px solid var(--gold-border);
  background:linear-gradient(180deg, #fff 0%, #fff 55%, var(--gold-soft) 100%);
  box-shadow:0 6px 18px rgba(184,145,46,.12);
}

.btn-gold:hover{
  background:rgba(184,145,46,.08);
}

.hero{
  padding:56px 0 28px;
  background:
    radial-gradient(900px 300px at 20% 0%, rgba(216,179,74,.14), transparent 65%),
    radial-gradient(700px 280px at 85% 10%, rgba(184,145,46,.10), transparent 60%);
  border-bottom:1px solid var(--line);
}

.hero-grid{
  display:grid;
  gap:22px;
  grid-template-columns:1.25fr .75fr;
  align-items:stretch;
}

h1{
  margin:0;
  font-size:clamp(28px, 3.4vw, 46px);
  line-height:1.1;
  letter-spacing:-.4px;
}

.sub{
  margin:12px 0 0;
  color:var(--muted);
  font-size:16px;
  max-width:62ch;
}

.cta-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}

.card h3{
  margin:0 0 8px;
  font-size:16px;
}

.feature-list{
  list-style:none;
  padding:0;
  margin:16px 0 0;
  color:#2f2f2f;
}

.feature-list li{
  margin-bottom:8px;
  font-size:15px;
}

.section{
  padding:36px 0;
}

.section-alt{
  background:linear-gradient(180deg, #fff 0%, #fbfaf7 100%);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.grid3{
  display:grid;
  gap:14px;
  grid-template-columns:repeat(3, 1fr);
  margin-top:16px;
}

.kicker{
  font-weight:700;
  color:var(--gold);
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:12px;
  margin:0 0 10px;
}

h2{
  margin:0;
  font-size:22px;
  letter-spacing:-.2px;
}

.muted{
  color:var(--muted);
}

.intro-copy{
  margin:10px 0 0;
  max-width:90ch;
}

.steps{
  display:grid;
  gap:12px;
  margin-top:14px;
}

.step{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
}

.badge{
  width:30px;
  height:30px;
  border-radius:9px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(184,145,46,.12);
  border:1px solid rgba(184,145,46,.28);
  font-weight:800;
  color:#6a4f11;
  flex:0 0 auto;
}

.step-title{
  font-weight:700;
}

.step-action{
  margin-top:10px;
}

.goldline{
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(184,145,46,.55), transparent);
  margin-top:12px;
}

.site-footer{
  border-top:1px solid var(--line);
  padding:26px 0;
  background:#fff;
}

.footergrid{
  display:grid;
  gap:16px;
  grid-template-columns:1.2fr .8fr;
  align-items:start;
}

.footer-logo{
  height:42px;
  width:auto;
}

.contactline{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  margin-top:8px;
}

.footer-copy{
  margin-top:10px;
}

.footer-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.small{
  font-size:13px;
  color:var(--muted);
}

.page-head{
  margin-bottom:14px;
}

.form-card{
  max-width:100%;
}

.helper{
  font-size:13px;
  color:var(--muted);
  margin:0 0 14px;
}

.sectiontitle{
  margin:0 0 6px;
  font-size:14px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:800;
}

.grid.two{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}

.field label{
  display:block;
  font-size:13px;
  font-weight:700;
  margin:10px 0 6px;
}

input,
select,
textarea{
  width:100%;
  padding:11px 12px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
  color:var(--ink);
  font:inherit;
}

textarea{
  min-height:110px;
  resize:vertical;
}

.rule{
  border:none;
  border-top:1px solid var(--line);
  margin:16px 0;
}

.actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:14px 0 18px;
}

.note{
  font-size:13px;
  color:var(--muted);
}

.status-text{
  margin-top:12px;
  min-height:20px;
}

.hidden-frame{
  display:none;
}

@media (max-width:900px){
  .hero-grid,
  .grid3,
  .footergrid{
    grid-template-columns:1fr;
  }

  .footer-actions{
    justify-content:flex-start;
  }
}

@media (max-width:760px){
  .grid.two{
    grid-template-columns:1fr;
  }

  .wrap{
    padding:0 18px;
  }

  .nav{
    align-items:flex-start;
  }

  .navlinks{
    justify-content:flex-start;
  }
}
