:root{
  --bg:#111;
  --card:#1a1a1a;
  --text:#fff;
  --muted:#d0d0d0;
  --border:rgba(208,208,208,.22);
  --divider:rgba(208,208,208,.2);
  --shadow:0 12px 28px rgba(0,0,0,.35);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:"Futura","Century Gothic",sans-serif;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

a{color:inherit}

.page{
  min-height:100%;
  display:flex;
  flex-direction:column;
}

.header{
  padding:44px 16px 22px;
}

.header-inner{
  max-width:980px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:14px;
}

.brand{
  margin:0;
  font-size:clamp(28px,5.2vw,46px);
  letter-spacing:.14em;
  font-weight:800;
  text-transform:uppercase;
}

.subtitle{
  margin:0;
  color:var(--muted);
  font-style:italic;
  font-size:clamp(14px,2.2vw,16px);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 22px;
  border-radius:999px;
  background:var(--text);
  color:var(--bg);
  font-weight:800;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.18);
  transition:background-color .18s ease,color .18s ease,transform .18s ease,border-color .18s ease;
}

.btn:focus-visible{
  outline:3px solid rgba(208,208,208,.55);
  outline-offset:3px;
}

@media (hover:hover){
  .btn:hover{
    background:var(--bg);
    color:var(--text);
    border-color:rgba(208,208,208,.35);
    transform:translateY(-1px);
  }
}

.sections{
  width:100%;
  max-width:980px;
  margin:0 auto;
  padding:18px 16px 32px;
  display:grid;
  gap:16px;
}

@media (min-width:860px){
  .sections{
    grid-template-columns:1fr 1fr;
    gap:18px;
  }
}

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

@media (min-width:520px){
  .card{padding:20px 18px}
}

.card-title{
  margin:0 0 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-transform:uppercase;
  letter-spacing:.1em;
  font-weight:800;
  font-size:16px;
}

.icon{
  width:22px;
  height:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--muted);
}

.rows{
  display:flex;
  flex-direction:column;
}

.row{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:14px;
  padding:10px 2px;
}

.service{
  color:var(--muted);
  font-size:14px;
  font-weight:500;
  letter-spacing:.02em;
}

.price{
  color:var(--text);
  font-weight:800;
  font-size:16px;
  letter-spacing:.02em;
  white-space:nowrap;
}

.divider{
  height:1px;
  width:100%;
  background:var(--divider);
}

.note{
  margin:12px 0 0;
  color:var(--muted);
  font-style:italic;
  font-size:13px;
  line-height:1.45;
}

.footer{
  padding:18px 16px 34px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:14px;
}

.footer-note{
  margin:0;
  color:var(--muted);
  font-style:italic;
  max-width:760px;
  line-height:1.5;
}

.footer-brand{
  margin:8px 0 0;
  color:var(--muted);
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:700;
  font-size:12px;
}

@media (prefers-reduced-motion:reduce){
  .btn{transition:none}
}
