
:root{
  --bg:#e9ecef;
  --bg-2:#f7f5f2;
  --paper:#fffdf9;
  --ink:#1e2830;
  --muted:#5d6872;
  --line:#cad1d8;
  --accent:#b4664a;
  --accent-2:#667b8b;
  --soft:#eef2f4;
  --dark:#27323a;
  --radius:28px;
  --shadow:0 24px 60px rgba(30,40,48,.08);
  --max:1220px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:
    radial-gradient(circle at top left, rgba(180,102,74,.10), transparent 28%),
    linear-gradient(180deg, #eff2f4 0%, #ece7df 100%);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height:1.55;
}
a{color:inherit}
img{max-width:100%}
.page{
  max-width:var(--max);
  margin:0 auto;
  padding:20px 20px 40px;
}
.masthead{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  margin-bottom:18px;
}
.mastbox,.contactbar,.panel,.footer{
  background:rgba(255,253,249,.84);
  border:1px solid rgba(30,40,48,.08);
  box-shadow:var(--shadow);
  backdrop-filter:blur(10px);
}
.mastbox{
  border-radius:30px;
  padding:24px 26px;
}
.tag{
  display:inline-block;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.16em;
  color:var(--accent);
  margin-bottom:16px;
}
.brand{
  margin:0;
  font-family: Georgia, "Times New Roman", serif;
  font-size:44px;
  line-height:.98;
  letter-spacing:-.03em;
}
.subtitle{
  margin:12px 0 0;
  color:var(--muted);
  max-width:44rem;
  font-size:17px;
}
.contactbar{
  border-radius:30px;
  padding:24px 26px;
  display:grid;
  gap:10px;
  align-content:start;
}
.contactbar strong{font-size:14px}
.topnav{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:16px;
}
.topnav a{
  text-decoration:none;
  font-size:14px;
  padding-bottom:2px;
  border-bottom:1px solid transparent;
}
.topnav a:hover{border-color:var(--accent)}
.layout{
  display:grid;
  grid-template-columns: minmax(0,1fr) 320px;
  gap:18px;
}
.content{
  display:grid;
  gap:18px;
}
.sidebar{
  display:grid;
  gap:18px;
  align-content:start;
}
.panel{
  border-radius:34px;
  padding:34px;
}
.hero{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:20px;
  align-items:stretch;
}
.hero h2{
  margin:0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size:64px;
  line-height:.93;
  letter-spacing:-.04em;
  max-width:10ch;
}
.hero p{
  margin:0 0 16px;
  color:var(--muted);
  font-size:18px;
  max-width:42rem;
}
.notice{
  border-left:4px solid var(--accent);
  background:linear-gradient(180deg,#f4ece7 0%, #efe6df 100%);
  color:#4e4d4c;
  padding:16px 18px;
  border-radius:18px;
  margin:20px 0 0;
}
.button-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 18px;
  text-decoration:none;
  border-radius:999px;
  font-size:15px;
  border:1px solid var(--dark);
}
.btn.primary{
  background:var(--dark);
  color:white;
}
.btn.secondary{
  background:transparent;
}
.hero-card{
  background:linear-gradient(180deg,#e8eff3 0%, #dfe7ec 100%);
  border-radius:28px;
  padding:26px;
  display:grid;
  gap:18px;
  min-height:100%;
}
.hero-card .small{
  color:var(--muted);
  font-size:14px;
}
.hero-card strong{
  font-size:22px;
  line-height:1.15;
}
.mini-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.mini{
  background:rgba(255,255,255,.58);
  border:1px solid rgba(30,40,48,.07);
  border-radius:22px;
  padding:18px;
}
.section-head{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:space-between;
  align-items:end;
  margin-bottom:16px;
}
.section-head h3{
  margin:0;
  font-family: Georgia, "Times New Roman", serif;
  font-size:38px;
  line-height:1;
}
.section-head p{
  margin:0;
  color:var(--muted);
  max-width:36rem;
}
.guide-list{
  display:grid;
  gap:14px;
}
.guide{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:20px;
  padding:22px;
  border-radius:26px;
  background:linear-gradient(180deg,#fffefb 0%, #fbf8f3 100%);
  border:1px solid rgba(30,40,48,.08);
}
.guide h4{
  margin:0 0 8px;
  font-size:27px;
  line-height:1.05;
}
.guide p{
  margin:0;
  color:var(--muted);
}
.pricebox{
  display:grid;
  align-content:space-between;
  gap:14px;
  justify-items:end;
  text-align:right;
}
.pricebox .eyebrow{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.16em;
  color:var(--accent-2);
}
.price{
  font-family: Georgia, "Times New Roman", serif;
  font-size:40px;
  line-height:1;
}
.columns{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
}
.feature{
  padding-top:12px;
  border-top:1px solid var(--line);
}
.feature strong{
  display:block;
  font-size:20px;
  margin-bottom:6px;
}
.feature p{
  margin:0;
  color:var(--muted);
}
.steps{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:14px;
}
.step{
  background:linear-gradient(180deg,#f8f6f1 0%, #f0ebe3 100%);
  border:1px solid rgba(30,40,48,.08);
  border-radius:24px;
  padding:18px;
}
.num{
  width:38px;height:38px;border-radius:999px;
  display:grid;place-items:center;
  background:var(--dark);color:#fff;
  font-size:14px;margin-bottom:12px;
}
.step h4{margin:0 0 8px;font-size:18px;line-height:1.15}
.step p{margin:0;color:var(--muted);font-size:14px}
.sidebar .panel{padding:24px 24px}
.sidebar h3{
  margin:0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size:30px;
  line-height:1;
}
.sidebar p{margin:0 0 12px;color:var(--muted)}
.disclaimer{
  padding:14px 16px;
  background:var(--soft);
  border-radius:18px;
  color:#4f5860;
  font-size:13px;
}
.faq{
  display:grid;
  gap:12px;
}
.faq details{
  background:#fffefb;
  border:1px solid rgba(30,40,48,.08);
  border-radius:20px;
  padding:16px 18px;
}
.faq summary{
  cursor:pointer;
  font-weight:700;
  font-size:18px;
}
.faq p{
  margin:12px 0 0;
  color:var(--muted);
}
form{
  display:grid;
  gap:14px;
}
label{display:grid;gap:7px;font-size:14px}
input,select,textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px 15px;
  background:#fffefb;
  color:var(--ink);
  font:inherit;
}
textarea{min-height:140px;resize:vertical}
.footer{
  margin-top:18px;
  border-radius:30px;
  padding:28px;
}
.footergrid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:20px;
}
.footer p{color:var(--muted); margin:10px 0 0}
.links{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:16px;
}
.links a{text-decoration:none;border-bottom:1px solid transparent}
.links a:hover{border-color:currentColor}
.simple{
  max-width:940px;
  margin:0 auto;
  padding:22px 20px 54px;
}
.simple .panel{padding:34px}
.topline{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:space-between;
  align-items:end;
  margin-bottom:18px;
}
.simple h1{
  margin:0;
  font-family: Georgia, "Times New Roman", serif;
  font-size:46px;
  line-height:1;
}
.simple h2{
  margin:26px 0 10px;
  font-size:28px;
  font-family: Georgia, "Times New Roman", serif;
}
.simple p,.simple li{
  color:var(--muted);
  font-size:17px;
}
.simple ul{padding-left:20px}
.return{
  text-decoration:none;
  border-bottom:1px solid currentColor;
}
@media (max-width: 1100px){
  .layout,.masthead,.hero,.footergrid{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
}
@media (max-width: 820px){
  .guide,.columns{grid-template-columns:1fr}
  .hero h2{font-size:46px}
}
@media (max-width: 640px){
  .page,.simple{padding:12px}
  .panel,.mastbox,.contactbar,.footer{padding:22px}
  .brand{font-size:34px}
  .hero h2{font-size:40px}
  .section-head h3{font-size:32px}
  .mini-grid{grid-template-columns:1fr}
}
