/* Summit Ledger Co. landing page */
:root{
  --navy:#0B1F3B;
  --accent:#2F6FED;
  --text:#0B1220;
  --muted:#475569;
  --border:#D6DEEE;
  --bg:#FFFFFF;
  --card:#F5F7FB;
  --soft:#F8FAFC;
  --popBorder:#B8D4FF;
  --radius:18px;
  --shadow: 0 10px 30px rgba(11, 31, 59, 0.12);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", Helvetica, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.45;
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{
  width:min(1120px, calc(100% - 40px));
  margin:0 auto;
}

.skip-link{
  position:absolute;
  top:-60px;
  left:20px;
  background:#fff;
  border:1px solid var(--border);
  padding:10px 12px;
  border-radius:12px;
  z-index:999;
}
.skip-link:focus{ top:14px; }

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,0.86);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(214,222,238,0.7);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand-mark{
  width:40px;
  height:40px;
  border-radius:14px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.95), rgba(255,255,255,0) 55%),
    linear-gradient(135deg, var(--navy), var(--accent));
  box-shadow: 0 8px 22px rgba(47,111,237,0.18);
}
.brand-name{
  font-weight:800;
  letter-spacing:-0.3px;
}
.brand-tag{
  font-size:12px;
  color:var(--muted);
  margin-top:2px;
}

.nav{
  display:flex;
  align-items:center;
  gap:14px;
  font-size:14px;
  color:var(--muted);
}
.nav a{ padding:8px 10px; border-radius:12px; }
.nav a:hover{ background:rgba(245,247,251,0.85); text-decoration:none; color:var(--text); }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(47,111,237,0.35);
  background:linear-gradient(135deg, var(--navy), var(--accent));
  color:#fff;
  font-weight:700;
  box-shadow: 0 12px 26px rgba(11,31,59,0.18);
  cursor:pointer;
}
.btn:hover{ filter:brightness(1.03); text-decoration:none; }
.btn:active{ transform: translateY(1px); }

.btn-small{ padding:10px 12px; font-size:13px; }

.btn-ghost{
  background:transparent;
  color:var(--navy);
  border:1px solid var(--border);
  box-shadow:none;
}
.btn-ghost:hover{
  background:rgba(245,247,251,0.9);
}

.hero{
  position:relative;
  padding:70px 0 55px 0;
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap:24px;
  align-items:start;
}
.eyebrow{
  margin:0 0 10px 0;
  font-weight:700;
  font-size:13px;
  letter-spacing:0.3px;
  color:var(--accent);
  text-transform:uppercase;
}
.hero h1{
  margin:0 0 10px 0;
  font-size:44px;
  line-height:1.05;
  letter-spacing:-1.1px;
}
.lead{
  margin:0 0 18px 0;
  font-size:17px;
  color:var(--muted);
  max-width: 58ch;
}
.hero-cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:16px;
}
.trust-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.trust-pill{
  font-size:13px;
  color:var(--muted);
  padding:8px 10px;
  border:1px solid rgba(214,222,238,0.9);
  border-radius:999px;
  background:rgba(248,250,252,0.75);
}

.hero-card{
  border-radius: var(--radius);
  border:1px solid rgba(214,222,238,0.9);
  background: rgba(245,247,251,0.65);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-card-top{
  padding:16px 16px 10px 16px;
  background: linear-gradient(135deg, rgba(11,31,59,0.10), rgba(47,111,237,0.10));
  border-bottom:1px solid rgba(214,222,238,0.7);
}
.hero-card-title{
  font-weight:800;
}
.hero-card-sub{
  margin-top:4px;
  font-size:13px;
  color:var(--muted);
}
.hero-card-body{
  padding:14px 16px 16px 16px;
}
.info{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:8px 0;
}
.info-label{
  color:var(--muted);
  font-size:13px;
}
.info-value{
  font-weight:700;
  font-size:13px;
}
.divider{
  height:1px;
  background: rgba(214,222,238,0.85);
  margin:10px 0;
}
.checklist{
  margin:0;
  padding-left:18px;
  color:var(--text);
  font-size:13px;
}
.checklist li{ margin:8px 0; }
.note{
  margin-top:12px;
  font-size:13px;
  color:var(--muted);
}

.hero-backdrop{
  position:absolute;
  left:0; right:0; bottom:-1px;
  pointer-events:none;
}

.section{
  padding:62px 0;
}
.section-alt{
  background: var(--soft);
  border-top:1px solid rgba(214,222,238,0.7);
  border-bottom:1px solid rgba(214,222,238,0.7);
}

.section-head{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:18px;
}
.section-head h2{
  margin:0;
  font-size:28px;
  letter-spacing:-0.6px;
}
.section-head p{
  margin:0;
  color:var(--muted);
  max-width: 70ch;
}

.cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.card{
  background: rgba(245,247,251,0.9);
  border:1px solid rgba(214,222,238,0.9);
  border-radius: var(--radius);
  padding:16px 16px 14px 16px;
  box-shadow: 0 8px 22px rgba(11,31,59,0.06);
}
.card h3{ margin:0 0 8px 0; }
.card p{ margin:0 0 10px 0; color:var(--muted); }
.card ul{
  margin:0;
  padding-left:18px;
}
.card li{ margin:7px 0; }

.pricing-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  align-items:stretch;
}
.price-card{
  background:#fff;
  border:1px solid rgba(214,222,238,0.95);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: 0 10px 26px rgba(11,31,59,0.06);
  position:relative;
  overflow:hidden;
}
.price-card.featured{
  border-color: var(--popBorder);
  background: linear-gradient(180deg, rgba(238,246,255,0.9), #fff);
}
.badge{
  position:absolute;
  top:14px;
  right:14px;
  font-size:12px;
  font-weight:800;
  color:#fff;
  background: var(--accent);
  padding:6px 10px;
  border-radius:999px;
}
.price-top h3{ margin:0; }
.price{
  font-size:32px;
  font-weight:900;
  letter-spacing:-0.6px;
  margin-top:6px;
}
.price span{
  font-size:14px;
  color:var(--muted);
  font-weight:700;
}
.price-sub{
  margin:8px 0 0 0;
  color:var(--muted);
}
.price-list{
  margin:12px 0 0 0;
  padding-left:18px;
}
.price-list li{ margin:8px 0; }

.fineprint{
  margin-top:16px;
  padding:14px 16px;
  background: rgba(245,247,251,0.9);
  border:1px solid rgba(214,222,238,0.9);
  border-radius: var(--radius);
  color:var(--muted);
  font-size:13px;
}
.fineprint p{ margin:10px 0; }

.steps{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
.steps li{
  display:flex;
  gap:12px;
  padding:16px;
  border-radius: var(--radius);
  border:1px solid rgba(214,222,238,0.9);
  background: rgba(245,247,251,0.8);
}
.step-num{
  width:36px;
  height:36px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  color:#fff;
  background: linear-gradient(135deg, var(--navy), var(--accent));
  flex: 0 0 auto;
}
.steps h3{ margin:0 0 6px 0; }
.steps p{ margin:0; color:var(--muted); }

.faq details{
  background:#fff;
  border:1px solid rgba(214,222,238,0.95);
  border-radius: var(--radius);
  padding:14px 16px;
  box-shadow: 0 10px 26px rgba(11,31,59,0.05);
}
.faq details + details{ margin-top:12px; }
.faq summary{
  cursor:pointer;
  font-weight:800;
}
.faq p{ margin:10px 0 0 0; color:var(--muted); }

.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  align-items:start;
}
.contact-cards{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin-top:12px;
}
.contact-card{
  border:1px solid rgba(214,222,238,0.95);
  background: rgba(245,247,251,0.9);
  border-radius: var(--radius);
  padding:14px 16px;
  box-shadow: 0 10px 26px rgba(11,31,59,0.06);
}
.contact-card:hover{ text-decoration:none; filter:brightness(1.02); }
.contact-label{ color:var(--muted); font-size:13px; }
.contact-value{ font-weight:900; margin-top:6px; }

.micro{
  margin-top:12px;
  color:var(--muted);
  font-size:13px;
}

.form{
  border:1px solid rgba(214,222,238,0.95);
  background: #fff;
  border-radius: var(--radius);
  padding:16px;
  box-shadow: 0 10px 26px rgba(11,31,59,0.06);
}
.form label{
  display:block;
  font-weight:700;
  font-size:13px;
  margin-top:12px;
}
.form input, .form textarea{
  width:100%;
  margin-top:6px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(214,222,238,1);
  background: rgba(248,250,252,0.9);
  font-family: inherit;
  font-size:14px;
}
.form input:focus, .form textarea:focus{
  outline:none;
  border-color: rgba(47,111,237,0.55);
  box-shadow: 0 0 0 4px rgba(47,111,237,0.12);
}
.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.form-note{
  margin:10px 0 0 0;
  font-size:12px;
  color:var(--muted);
}

.site-footer{
  padding:22px 0;
  border-top:1px solid rgba(214,222,238,0.75);
  background: #fff;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.footer-title{ font-weight:900; }
.footer-sub{ color:var(--muted); font-size:13px; margin-top:4px; }
.footer-links{ color:var(--muted); font-size:13px; }
.footer-links a{ color:var(--muted); }
.dot{ margin:0 8px; }

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: repeat(2, 1fr); }
  .pricing-grid{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .contact-cards{ grid-template-columns: 1fr; }
  .nav{ display:none; }
  .hero h1{ font-size: 36px; }
}
