
:root{
  --bg:#eef0ec;
  --paper:#fbfcf8;
  --paper-2:#edf1e8;
  --ink:#1c2021;
  --muted:#62706c;
  --line:#d4ddd4;
  --forest:#415b53;
  --amber:#b88a57;
  --sky:#7f9ca2;
  --night:#242c2d;
  --shadow:0 22px 70px rgba(28,32,33,.08);
  --max:1240px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  color:var(--ink);
  line-height:1.6;
  background:
    radial-gradient(circle at top right, rgba(127,156,162,.12), transparent 28%),
    linear-gradient(180deg,#f2f4ef 0%, #e8ece5 100%);
}
a{color:inherit}
.site{
  max-width:var(--max);
  margin:0 auto;
  padding:22px 22px 44px;
}
.top{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:18px;
  margin-bottom:18px;
}
.panel{
  background:var(--paper);
  border:1px solid rgba(28,32,33,.08);
  border-radius:34px;
  box-shadow:var(--shadow);
}
.intro{
  padding:26px 28px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:flex-start;
}
.eyebrow{
  display:inline-block;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.22em;
  color:var(--amber);
  margin-bottom:12px;
}
.brand{
  margin:0;
  font-size:36px;
  line-height:1;
  letter-spacing:-.04em;
}
.intro p{
  margin:10px 0 0;
  color:var(--muted);
  max-width:34rem;
  font-size:15px;
}
.links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:flex-end;
}
.links a{
  text-decoration:none;
  padding:10px 14px;
  border:1px solid rgba(28,32,33,.08);
  border-radius:999px;
  font-size:14px;
  background:#fff;
}
.links a:hover{background:var(--paper-2)}
.contact{
  padding:26px 28px;
  background:linear-gradient(180deg,#2a3334 0%, #22292a 100%);
  color:#f2f3ef;
  display:grid;
  gap:10px;
}
.contact p{
  margin:0;
  color:#d5dbd8;
}
.contact a{color:#f2f3ef}
.disclaimer{
  margin-top:10px;
  padding:14px 16px;
  border-radius:18px;
  background:var(--paper-2);
  color:#48504d;
  font-size:13px;
}
.contact .disclaimer{
  background:rgba(255,255,255,.08);
  color:#f2f3ef;
}
.hero{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  margin-bottom:18px;
}
.hero-main{
  padding:42px;
  min-height:560px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.hero-main h2{
  margin:0 0 18px;
  font-size:78px;
  line-height:.9;
  letter-spacing:-.06em;
  max-width:9ch;
}
.hero-main p{
  margin:0;
  max-width:41rem;
  color:var(--muted);
  font-size:19px;
}
.cta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 18px;
  border-radius:999px;
  text-decoration:none;
  border:1px solid var(--night);
  font-size:15px;
}
.btn.primary{
  background:var(--night);
  color:#fff;
}
.btn.secondary{
  background:transparent;
}
.hero-side{
  padding:28px;
  display:grid;
  gap:16px;
  background:linear-gradient(180deg,#edf2eb 0%,#e2e8e1 100%);
}
.box{
  padding:22px;
  border-radius:24px;
  background:#fff;
  border:1px solid rgba(28,32,33,.08);
}
.box h3{
  margin:0 0 8px;
  font-size:27px;
  line-height:1.03;
}
.box p{
  margin:0;
  color:var(--muted);
}
.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-bottom:18px;
}
.section{
  padding:34px;
}
.section h2{
  margin:0 0 12px;
  font-size:40px;
  line-height:1;
  letter-spacing:-.04em;
}
.section p.lead{
  margin:0;
  color:var(--muted);
  font-size:17px;
}
.guide-list,.benefits,.steps,.faq{
  display:grid;
  gap:14px;
  margin-top:20px;
}
.guide{
  padding:20px;
  border-radius:24px;
  background:#fff;
  border:1px solid rgba(28,32,33,.08);
}
.guide-head{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-start;
}
.guide h3{
  margin:0 0 8px;
  font-size:27px;
  line-height:1.03;
}
.guide p{
  margin:0;
  color:var(--muted);
}
.price{
  white-space:nowrap;
  font-size:32px;
  line-height:1;
}
.meta{
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:12px;
  letter-spacing:.15em;
  text-transform:uppercase;
}
.benefit{
  padding:18px;
  border-radius:20px;
  background:var(--paper-2);
  border:1px solid rgba(28,32,33,.06);
}
.benefit strong{
  display:block;
  font-size:20px;
  margin-bottom:6px;
}
.step{
  display:grid;
  grid-template-columns:58px 1fr;
  gap:16px;
  align-items:start;
}
.num{
  width:58px;
  height:58px;
  border-radius:18px;
  background:var(--paper-2);
  display:grid;
  place-items:center;
  font-size:25px;
}
.step h4{
  margin:0 0 6px;
  font-size:22px;
}
.step p{
  margin:0;
  color:var(--muted);
}
.faq details{
  padding:16px 18px;
  border-radius:20px;
  background:#fff;
  border:1px solid rgba(28,32,33,.08);
}
.faq summary{
  cursor:pointer;
  font-size:18px;
  font-weight:700;
}
.faq p{
  margin:12px 0 0;
  color:var(--muted);
}
.request{
  display:grid;
  grid-template-columns:.88fr 1.12fr;
  gap:18px;
}
.request-info{
  padding:30px;
  background:linear-gradient(180deg,#eef3ea 0%, #e2e8dd 100%);
}
.request-info h3{
  margin:0 0 10px;
  font-size:31px;
  line-height:1.02;
}
.request-info p{
  margin:0 0 14px;
  color:#576360;
}
form{
  padding:30px;
  display:grid;
  gap:14px;
}
label{
  display:grid;
  gap:7px;
  font-size:14px;
}
input, textarea, select{
  width:100%;
  padding:14px 15px;
  border-radius:16px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--ink);
  font:inherit;
}
textarea{min-height:150px; resize:vertical}
.footer{
  padding:28px 30px;
  background:#212829;
  color:#f2f3ef;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:20px;
}
.footer p{
  color:#d2d9d6;
}
.footer a{
  color:#f2f3ef;
  text-decoration:none;
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  align-content:flex-start;
}
.legal{
  max-width:980px;
  margin:0 auto;
  padding:26px 20px 50px;
}
.legal .panel{
  padding:34px;
}
.legal-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:16px;
  margin-bottom:18px;
}
.legal h1{
  margin:0;
  font-size:46px;
  line-height:1;
  letter-spacing:-.04em;
}
.legal h2{
  margin:28px 0 10px;
  font-size:30px;
  line-height:1;
}
.legal p,.legal li{
  color:var(--muted);
  font-size:17px;
}
.legal ul{padding-left:20px}
.back{
  text-decoration:none;
  border-bottom:1px solid currentColor;
}
@media (max-width: 1050px){
  .top,.hero,.grid,.request,.footer-grid{grid-template-columns:1fr}
  .hero-main{min-height:auto}
  .hero-main h2{font-size:58px}
}
@media (max-width: 720px){
  .site,.legal{padding:14px}
  .intro,.contact,.hero-main,.hero-side,.section,.request-info,form,.footer,.legal .panel{padding:22px}
  .intro{flex-direction:column}
  .links{justify-content:flex-start}
  .hero-main h2{font-size:42px}
  .guide-head{flex-direction:column}
  .section h2{font-size:32px}
}
