/* Base */
:root{
  --bg: #f5f7fa;
  --card: #ffffff;
  --text: #1f2933;
  --muted: #5b6773;
  --line: #e5e7eb;
  --shadow: 0 10px 25px rgba(0,0,0,0.06);
  --radius: 12px;
  --blue: #2b6cb0;
  --blueHover: #1f4f82;
}

*{ box-sizing: border-box; }

html, body{
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 5;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.header-inner{
  max-width: 1020px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand{ display: inline-flex; align-items: center; }

.logo{
  height: 30px;          /* discreet logo */
  width: auto;
  display: block;
}

.nav{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.nav a{
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.nav a:hover{ text-decoration: underline; }

/* Layout */
.container{
  max-width: 1020px;
  margin: 28px auto 60px;
  padding: 0 16px;
}

/* Hero */
.hero{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: start;
}

.hero-card, .form-card{
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

h1{
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.25;
}

.lead{
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.5;
}

.highlights{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 18px;
}

.highlight{
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 13px;
  color: var(--muted);
  background: #fff;
}

.cta-row{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Buttons */
.btn{
  display: inline-block;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  padding: 12px 14px;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
}

.btn:hover{ background: var(--blueHover); }

.btn.ghost{
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
}

.btn.ghost:hover{
  background: rgba(43,108,176,0.08);
}

.btn.full{ width: 100%; }

/* Form */
.form-card h2{
  margin: 0 0 6px;
  font-size: 18px;
}

.small{ font-size: 13px; }
.tiny{ font-size: 12px; }
.muted{ color: var(--muted); }

label{
  display: block;
  margin-top: 12px;
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 13px;
}

.req{ color: #b91c1c; }

input{
  width: 100%;
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14.5px;
  outline: none;
}

input:focus{
  border-color: #93c5fd;
  box-shadow: 0 0 0 3px rgba(147,197,253,0.35);
}

/* Sections */
.section{
  margin-top: 18px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

.section h2{
  margin: 0 0 14px;
  font-size: 20px;
}

.grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.panel{
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  background: #fff;
}

.panel h3{
  margin: 0 0 8px;
  font-size: 15px;
}

.panel p{
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}

.note{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13.5px;
}

/* Steps */
.steps{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.steps li{
  margin: 10px 0;
  line-height: 1.45;
}

.steps strong{ color: var(--text); }

/* FAQs */
.faq{
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 12px;
}

.faq:first-of-type{
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.faq h3{
  margin: 0 0 6px;
  font-size: 15px;
}

.faq p{
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 13.5px;
}

/* Footer */
.footer{
  margin-top: 16px;
  text-align: center;
  padding: 12px 0 0;
}

/* Responsive */
@media (max-width: 900px){
  .hero{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px){
  h1{ font-size: 24px; }
  .grid{ grid-template-columns: 1fr; }
  .nav{ display: none; } /* keeps header clean on mobile */
}