:root{
  --bg:#0b0d12;
  --card:#11162a;
  --text:#e9ecf3;
  --muted:#b5bdd0;
  --line:rgba(255,255,255,.10);
  /* Straight Up Sites brand accents (gold) */
  --accent:#d4af37;
  --accent2:#f6d365;
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background: linear-gradient(180deg, #0b0d12 0%, #090b10 100%);
  color:var(--text);
  overflow-x:hidden;
}

a{color:inherit}
.container{width:min(1120px,92vw); margin:0 auto}

.bg-noise{display:none;}

.header{
  position:sticky; top:0;
  backdrop-filter: blur(12px);
  background: rgba(11,13,18,.55);
  border-bottom:1px solid var(--line);
  z-index:50;
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}

.brand{display:flex; align-items:center; gap:12px; text-decoration:none}
.brand__logo{
  height:44px; width:auto;
  border-radius:14px;
  border:1px solid rgba(212,175,55,.35);
  box-shadow:var(--shadow);
  background:rgba(255,255,255,.06);
}
.brand__text{display:flex; flex-direction:column; line-height:1.1}
.brand__name{font-weight:800; font-size:14px}
.brand__tag{font-size:12px; color:var(--muted)}

.nav{display:flex; align-items:center; gap:16px}
.nav__link{
  text-decoration:none;
  color:var(--muted);
  font-weight:600;
  font-size:13px;
}
.nav__link:hover{color:var(--text)}

.menu{display:none; background:transparent; border:0; padding:10px; cursor:pointer}
.menu span{
  display:block; width:22px; height:2px;
  background:rgba(255,255,255,.8);
  margin:5px 0; border-radius:2px;
}

.mobile{
  display:none;
  border-top:1px solid var(--line);
  background:rgba(11,13,18,.72);
}
.mobile__inner{padding:14px 0; display:grid; gap:10px}
.mobile__link{color:var(--muted); text-decoration:none; font-weight:600}
.mobile__link:hover{color:var(--text)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background:linear-gradient(135deg, rgba(212,175,55,.28), rgba(246,211,101,.18));
  color:var(--text);
  text-decoration:none;
  font-weight:800;
  letter-spacing:.2px;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}
.btn--ghost{
  background:transparent;
  color:var(--text);
  border:1px solid rgba(255,255,255,.18);
  box-shadow:none;
}
.btn--small{padding:10px 14px; border-radius:12px; font-weight:800}
.btn--wide{width:100%}

.hero{padding:66px 0 30px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:26px;
  align-items:start;
}
.pill{
  display:inline-flex; gap:8px; align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-weight:700;
  font-size:12px;
}
h1{
  font-size: clamp(34px, 4vw, 54px);
  line-height:1.03;
  margin:14px 0 12px;
  letter-spacing:-.8px;
}
.accent{
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{
  font-size:16px;
  line-height:1.6;
  color:rgba(233,236,243,.92);
  margin:0 0 18px;
}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 14px}
.trust{
  display:flex; gap:12px; flex-wrap:wrap;
  margin:18px 0 10px;
}
.trust__item{
  min-width:150px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
}
.trust__title{font-weight:900; font-size:14px}
.trust__desc{color:var(--muted); font-size:12px; margin-top:2px}

.micro{
  margin-top:10px;
  color:rgba(233,236,243,.85);
  font-weight:600;
  font-size:13px;
}

.card{
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(17,22,42,.95), rgba(13,16,30,.88));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:var(--shadow);
  padding:18px;
}
.badge{
  display:inline-flex; align-items:center;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(212,175,55,.14);
}
.card__title{font-size:22px; font-weight:900; margin:10px 0 10px; letter-spacing:-.4px}
.checks{list-style:none; padding:0; margin:0; display:grid; gap:10px}
.checks li{
  display:flex; gap:10px; align-items:flex-start;
  color:rgba(233,236,243,.92);
}
.checks li::before{
  content:"✓";
  font-weight:900;
  color:var(--accent2);
  margin-top:1px;
}
.card__bottom{margin-top:16px}
.fine{margin-top:10px; color:var(--muted); font-size:12px}

.section{padding:54px 0}
.section--alt{background:transparent}
.section--contact{padding-top:60px}
h2{font-size:28px; margin:0 0 16px; letter-spacing:-.4px}
.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.step{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  border-radius:18px;
  padding:16px;
}
.step__num{
  width:34px; height:34px;
  border-radius:12px;
  display:grid; place-items:center;
  background:rgba(212,175,55,.14);
  border:1px solid rgba(255,255,255,.12);
  font-weight:900;
  margin-bottom:10px;
}
.step h3{margin:0 0 8px; font-size:16px}
.step p{margin:0; color:var(--muted); line-height:1.5; font-size:13px}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:14px;
}
.feature{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  border-radius:18px;
  padding:16px;
}
.feature h3{margin:0 0 8px; font-size:16px}
.feature p{margin:0; color:var(--muted); line-height:1.55; font-size:13px}

.cta-bar{
  margin-top:22px;
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; flex-wrap:wrap;
  border-radius:22px;
  padding:16px 18px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.03);
}
.cta-bar__title{font-weight:900}
.cta-bar__sub{color:var(--muted); margin-top:4px; font-size:13px}

.faq{display:grid; gap:10px; margin-top:10px}
details{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  border-radius:18px;
  padding:14px 16px;
}
summary{
  cursor:pointer;
  font-weight:800;
}
details p{margin:10px 0 0; color:var(--muted); line-height:1.55}

.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:start;
}
.bullets{margin:16px 0 0; padding-left:18px; color:rgba(233,236,243,.92)}
.bullets li{margin:8px 0}
.contact__card .note{
  margin-top:12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  padding:12px 14px;
}
.note__title{font-weight:900; margin-bottom:4px}
.note__text{color:var(--muted); font-size:13px; line-height:1.5}

.form{display:grid; gap:12px}
label{display:grid; gap:8px; font-weight:700; font-size:13px; color:rgba(233,236,243,.92)}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.25);
  color:var(--text);
  font:inherit;
  outline:none;
}
input::placeholder, textarea::placeholder{color:rgba(181,189,208,.72)}
input:focus, textarea:focus{border-color:rgba(212,175,55,.55)}
.hidden{display:none}

.footer{
  padding:26px 0 36px;
  border-top:1px solid var(--line);
  background:rgba(0,0,0,.16);
}
.footer__inner{display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap}
.footer__brand{font-weight:900}
.footer__small{color:var(--muted); font-size:12px; margin-top:4px}
.footer__links{display:flex; gap:14px}
.footer__links a{color:var(--muted); text-decoration:none; font-weight:700; font-size:13px}
.footer__links a:hover{color:var(--text)}

@media (max-width: 960px){
  .hero__grid{grid-template-columns:1fr; gap:16px}
  .steps{grid-template-columns:1fr 1fr}
  .grid{grid-template-columns:1fr 1fr}
  .contact{grid-template-columns:1fr}
}
@media (max-width: 640px){
  .nav{display:none}
  .menu{display:block}
  .steps{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr}
}



/* --- Reviews page + Pricing copy helpers --- */
.page-pad{padding:64px 20px;}
.page-lead{margin:0 0 36px; max-width: 60ch; opacity:.9;}
.section-lead{margin:12px 0 28px; max-width: 70ch; opacity:.9;}

/* --- Review cards --- */
.reviews-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:16px;
  margin-top: 18px;
}
.review-card{
  position:relative;
  padding:18px 18px 16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius:16px;
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .15s ease, border-color .15s ease;
}
.review-card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.18);
}
.review-card strong{
  letter-spacing: .06em;
  font-size: 14px;
  opacity: .95;
  display:inline-block;
  margin-bottom:10px;
}
.review-card p{
  margin:0 0 14px;
  line-height:1.55;
}
.review-card span{
  display:block;
  font-weight:600;
  opacity:.85;
}

/* Responsive */
@media (max-width: 960px){
  .reviews-grid{grid-template-columns: repeat(2, minmax(0, 1fr));}
}
@media (max-width: 640px){
  .reviews-grid{grid-template-columns: 1fr;}
  .page-pad{padding:54px 16px;}
}


.checkbox-group{
display:flex;
flex-direction:column;
gap:12px;
margin-top:10px;
}

.checkbox-item{
display:flex;
align-items:center;
gap:10px;
font-size:16px;
cursor:pointer;
}

.checkbox-item input{
width:18px;
height:18px;
margin:0;
}

.checkbox-note{
font-size:14px;
opacity:.8;
margin-bottom:6px;
}
