/* Extracted styles from _Layout.cshtml */
:root{
  --bg:#0b1220;
  --card:#121a2b;
  --muted:#a9b4c7;
  --text:#f3f5f8;
  --accent:#7dd3fc;
  --accent2:#a78bfa;
  --primary:#7dd3fc;
  --bg-alt:rgba(18,26,43,.86);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:linear-gradient(180deg,#070b14,var(--bg));
  color:var(--text)
}

a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}

.wrap{max-width:980px;margin:0 auto;padding:28px 18px 64px}

header{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap}

.brand{
  font-weight:800;
  letter-spacing:.2px;
  font-size:18px;
  flex-shrink:0;
  display:inline-block;
  line-height:1;
}

.brand img{
  display:block;
  height:40px;
  width:auto;
  transition:opacity .2s;
}

.brand:hover{
  text-decoration:none;
  opacity:0.85;
}

nav{display:flex;gap:14px;flex-wrap:wrap;font-size:14px}
nav a{padding:8px 12px;border-radius:8px;transition:background .2s}
nav a:hover{background:rgba(125,211,252,.1);text-decoration:none}

.hero{margin:46px 0 22px}

.kicker{color:var(--muted);font-size:14px}

h1{margin:10px 0 10px;font-size:44px;line-height:1.05}

.sub{color:var(--muted);font-size:18px;max-width:760px;line-height:1.5}

.sub-note{font-style:italic}

.ctaRow{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px;align-items:flex-start}
.ctaRow > div{display:flex;flex-direction:column}

.btn{
  display:inline-block;
  padding:12px 16px;
  border-radius:12px;
  background:rgba(125,211,252,.15);
  border:1px solid rgba(125,211,252,.45);
  color:var(--text);
  font-weight:600;
  transition:all .3s ease;
  text-align:center;
}

.btn:hover{
  background:rgba(125,211,252,.25);
  text-decoration:none;
}

.btn2{background:rgba(167,139,250,.15);border-color:rgba(167,139,250,.45)}
.btn2:hover{background:rgba(167,139,250,.25)}

.btn-tertiary{
  background:transparent;
  color:var(--primary);
  border:2px solid var(--primary);
}

.btn-tertiary:hover{
  background:var(--primary);
  color:var(--bg);
}

.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin:26px 0 10px}

.card{
  background:rgba(18,26,43,.86);
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  padding:16px
}

.card h3{margin:0 0 8px;font-size:16px}
.card h4{margin:0;font-size:15px}
.card p{margin:0;color:var(--muted);font-size:14px;line-height:1.5}

.bar{
  margin:18px 0 0;
  padding:14px 16px;
  border-radius:16px;
  background:rgba(255,255,255,.04);
  border:1px dashed rgba(255,255,255,.18);
  color:var(--muted);
  font-size:14px
}

.section{margin:34px 0 0}

h2{margin:0 0 10px;font-size:22px}
h3{margin:18px 0 6px;font-size:18px}

ul{margin:10px 0 0;padding-left:18px;color:var(--muted);line-height:1.6}

.split{display:grid;grid-template-columns:1.2fr .8fr;gap:14px;align-items:start}

form{display:grid;gap:10px}

input,textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.25);
  color:var(--text)
}

textarea{min-height:88px;resize:vertical}

.fine{color:var(--muted);font-size:12px;line-height:1.4}

footer{
  margin-top:46px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.08);
  color:var(--muted);
  font-size:13px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px
}

.price{font-size:26px;font-weight:800;margin:10px 0;color:var(--accent)}

/* Form response styling */
#formResponse{
  padding:1rem;
  border-radius:4px;
  text-align:center;
}

#formResponse .btn{
  margin-top:1rem;
}

/* Steps strip */
.steps-strip h3{
  text-align:center;
}

/* FAQ Quick Links */
#faq a[href^="#faq-"]:hover{
  background:rgba(125,211,252,.1);
  text-decoration:none;
}

/* Mobile Responsive Styles */
@media(max-width:900px){
  .grid{grid-template-columns:1fr}
  h1{font-size:36px}
  .split{grid-template-columns:1fr}
}

@media(max-width:640px){
  .wrap{padding:18px 12px 48px}
  
  header{gap:16px}
  
  .brand{
    font-size:16px;
    width:100%;
    text-align:center;
    padding-bottom:8px;
    border-bottom:1px solid rgba(255,255,255,.08)
  }
  
  .brand img{
    height:36px;
    margin:0 auto;
  }
  
  nav{width:100%;justify-content:center;gap:8px}
  nav a{
    flex:1;
    text-align:center;
    padding:10px 8px;
    font-size:13px;
    background:rgba(18,26,43,.6);
    border:1px solid rgba(255,255,255,.08)
  }
  
  h1{font-size:28px;line-height:1.15}
  
  .sub{font-size:16px}
  
  .hero{margin:28px 0 18px}
  
  .kicker{font-size:13px}
  
  .ctaRow{flex-direction:column}
  .ctaRow > div{width:100%}
  
  .btn{width:100%;text-align:center}
  
  footer{flex-direction:column;text-align:center;gap:8px;font-size:12px}
  
  .steps-strip > div{text-align:center}
}