:root{
  --navy:#0f2a4a;
  --gold:#c8a74e;
  --gold-light:#e8c975;
  --bg:#f5f7fb;
  --card:#ffffff;
  --text:#1f2937;
  --muted:#5b6473;
  --border:#dde3ec;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:Inter, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
}
.page{min-height:100vh}
.container{
  max-width:1120px;
  margin:0 auto;
  padding:0 20px;
}
.hero{
  background:#fff;
  border-bottom:1px solid var(--border);
  padding:56px 0 36px;
}
.brand-row{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:22px;
}
.logo{
  width:90px;
  height:auto;
  display:block;
}
.brand{
  font-size:40px;
  font-weight:800;
  line-height:1;
  color:var(--navy);
}
.claim{
  margin-top:8px;
  color:var(--gold);
  font-size:22px;
  font-weight:600;
}
h1{
  margin:0 0 16px;
  font-size:40px;
  line-height:1.1;
  color:var(--navy);
}
.lead{
  font-size:19px;
  line-height:1.7;
  color:var(--muted);
  max-width:820px;
  margin:0;
}
.content{
  padding:42px 0 56px;
}
.two-col{
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:22px;
  align-items:start;
}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  padding:22px;
  box-shadow:0 8px 22px rgba(15,42,74,0.04);
}
h2,h3{
  margin:0 0 12px;
  color:var(--navy);
}
.muted{
  color:var(--muted);
}
.small{
  font-size:14px;
}
.form{
  display:grid;
  gap:16px;
  margin-top:16px;
}
.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
label{
  display:grid;
  gap:7px;
  font-size:14px;
  font-weight:600;
}
input,select,textarea{
  width:100%;
  padding:12px 14px;
  border:1px solid var(--border);
  border-radius:12px;
  font-size:15px;
  background:#fff;
  color:var(--text);
}
textarea{
  resize:vertical;
  min-height:140px;
}
.checkbox-row{
  grid-template-columns:auto 1fr;
  align-items:start;
  gap:10px;
  font-weight:500;
}
.checkbox-row input{
  width:18px;
  height:18px;
  margin-top:2px;
}
.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 20px;
  min-height:50px;
  border:none;
  border-radius:12px;
  background:var(--navy);
  color:#fff;
  font-weight:700;
  font-size:15px;
  cursor:pointer;
}
.steps{
  margin:0;
  padding-left:20px;
  color:var(--muted);
  line-height:1.8;
}
.pricing-box{
  border:1px solid var(--border);
  border-radius:14px;
  padding:16px;
  margin-top:12px;
}
.pricing-box.featured{
  border:2px solid var(--gold);
  background:#fffdfa;
}
.pricing-title{
  font-size:18px;
  font-weight:800;
  color:var(--navy);
}
.price{
  font-size:28px;
  font-weight:800;
  color:var(--navy);
  margin:8px 0;
}
.contact-line{
  margin:0 0 10px;
}
.footer{
  padding:28px 0 40px;
  text-align:center;
  border-top:1px solid var(--border);
  background:#fff;
}
.footer p{
  margin:6px 0;
}
@media (max-width: 900px){
  .two-col,.grid-2{
    grid-template-columns:1fr;
  }
  h1{
    font-size:32px;
  }
  .brand{
    font-size:34px;
  }
  .claim{
    font-size:20px;
  }
}


.brand-logo-wrapper {
  display:flex;
  justify-content:center;
  margin-bottom:14px;
}
.brand-logo-big {
  height:72px;
  width:auto;
  display:block;
}
.hero {
  padding:44px 0 28px;
}
@media (max-width: 900px){
  .brand-logo-big { height:56px; }
}


.form-status {
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #eef4ff;
  border: 1px solid #c9daf8;
  color: #1f2937;
  font-size: 14px;
}
.form-status.error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}
