
:root{
  --navy:#102a56;
  --blue:#0868f8;
  --muted:#60728f;
  --bg:#f3f8ff;
  --line:#dce6f3;
  --green:#08a85a;
  --red:#e93434;
  --orange:#f59b23;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  background:var(--bg);
  color:var(--navy);
}

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

button,
input{
  font:inherit;
}

.site-header{
  background:#fff;
  border-bottom:1px solid var(--line);
}

.site-header-inner{
  max-width:1180px;
  min-height:70px;
  margin:auto;
  padding:0 22px;
  display:flex;
  align-items:center;
  gap:32px;
}

.brand{
  font-size:20px;
  font-weight:800;
  white-space:nowrap;
}

.brand span{
  color:var(--blue);
}

.top-nav{
  display:flex;
  gap:28px;
  margin-left:18px;
}

.top-nav a,
.account-link{
  font-size:14px;
  font-weight:600;
}

.top-nav a:hover,
.account-link:hover,
.top-nav a[aria-current="page"]{
  color:var(--blue);
}

.account-link{
  margin-left:auto;
  white-space:nowrap;
}

.page{
  width:min(1180px,calc(100% - 40px));
  margin:0 auto;
  padding:54px 0 72px;
}

.kicker{
  color:var(--blue);
  font-size:12px;
  font-weight:800;
  letter-spacing:.13em;
  text-transform:uppercase;
}

h1{
  margin:10px 0 12px;
  font-size:42px;
  line-height:1.08;
  letter-spacing:-.03em;
}

.lead{
  max-width:700px;
  margin:0;
  color:var(--muted);
  font-size:17px;
  line-height:1.6;
}

.cards{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin-top:34px;
}

.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:12px;
  padding:22px;
}

.card h2,
.card h3{
  margin:0 0 8px;
}

.card p{
  color:var(--muted);
  line-height:1.55;
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 18px;
  border-radius:7px;
  background:var(--blue);
  color:#fff;
  font-weight:700;
  font-size:14px;
}

.button.secondary{
  background:#fff;
  color:var(--blue);
  border:1px solid #aac9ff;
}

.button-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:22px;
}

.steps{
  margin-top:34px;
  display:grid;
  gap:14px;
  max-width:860px;
}

.step-card{
  position:relative;
  display:grid;
  grid-template-columns:52px 1fr;
  gap:15px;
  align-items:start;
  background:#fff;
  border:1px solid var(--line);
  border-radius:12px;
  padding:19px;
}

.step-number{
  width:40px;
  height:40px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--blue);
  color:#fff;
  font-weight:800;
}

.step-card h3{
  margin:1px 0 5px;
  font-size:17px;
}

.step-card p{
  margin:0;
  color:var(--muted);
  line-height:1.5;
}

.notice{
  margin-top:26px;
  padding:17px 19px;
  border:1px solid #d3e6ff;
  border-radius:11px;
  background:#eaf4ff;
  line-height:1.5;
}

.price-card{
  display:flex;
  flex-direction:column;
  min-height:320px;
}

.price-card.featured{
  border:2px solid var(--blue);
}

.plan-label{
  color:var(--blue);
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.plan-status{
  margin:13px 0 16px;
  font-size:23px;
  font-weight:800;
}

.check-list{
  display:grid;
  gap:11px;
  margin:12px 0 24px;
  color:var(--muted);
  font-size:14px;
}

.check-list div::before{
  content:"✓";
  color:var(--green);
  font-weight:800;
  margin-right:9px;
}

.price-card .button{
  margin-top:auto;
}

.dashboard{
  width:min(1180px,calc(100% - 40px));
  margin:0 auto;
  display:grid;
  grid-template-columns:220px minmax(0,1fr);
  min-height:calc(100vh - 71px);
}

.side{
  padding:30px 18px 40px 0;
  border-right:1px solid var(--line);
}

.side a{
  display:flex;
  gap:10px;
  align-items:center;
  margin-bottom:6px;
  padding:11px 12px;
  border-radius:8px;
  color:var(--navy);
  font-size:14px;
}

.side a.active{
  background:#e7f2ff;
  color:var(--blue);
  font-weight:700;
}

.dashboard-main{
  padding:44px 0 70px 34px;
}

.dashboard-title{
  margin:0 0 6px;
  font-size:30px;
}

.dashboard-subtitle{
  color:var(--muted);
  margin-bottom:28px;
}

.empty-state{
  min-height:300px;
  border:1px dashed #b9cae0;
  border-radius:13px;
  background:rgba(255,255,255,.55);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:36px;
}

.empty-icon{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#e7f2ff;
  color:var(--blue);
  font-size:24px;
  margin-bottom:15px;
}

.empty-state h2{
  margin:0 0 8px;
}

.empty-state p{
  max-width:520px;
  color:var(--muted);
  line-height:1.55;
}

.quick-links{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:18px;
}

.quick-link{
  background:#fff;
  border:1px solid var(--line);
  border-radius:11px;
  padding:18px;
}

.quick-link strong{
  display:block;
  margin-bottom:6px;
}

.quick-link span{
  color:var(--muted);
  font-size:13px;
  line-height:1.4;
}

.compare-slots{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-bottom:18px;
}

.compare-slot{
  min-height:160px;
  border:1px dashed #b9cae0;
  border-radius:11px;
  display:grid;
  place-items:center;
  text-align:center;
  color:var(--muted);
  background:rgba(255,255,255,.55);
  padding:18px;
}

.faq{
  max-width:850px;
  margin-top:32px;
  display:grid;
  gap:11px;
}

.faq details{
  background:#fff;
  border:1px solid var(--line);
  border-radius:10px;
  padding:16px 18px;
}

.faq summary{
  cursor:pointer;
  font-weight:700;
}

.faq p{
  color:var(--muted);
  line-height:1.55;
  margin:12px 0 2px;
}

.footer{
  border-top:1px solid var(--line);
  padding:24px 20px;
  text-align:center;
  color:var(--muted);
  font-size:12px;
}

@media(max-width:850px){
  .site-header-inner{
    flex-wrap:wrap;
    padding:14px 18px;
    gap:12px;
  }

  .top-nav{
    order:3;
    width:100%;
    margin-left:0;
    overflow-x:auto;
    gap:18px;
  }

  .cards,
  .quick-links,
  .compare-slots{
    grid-template-columns:1fr;
  }

  .dashboard{
    grid-template-columns:1fr;
  }

  .side{
    border-right:0;
    border-bottom:1px solid var(--line);
    display:flex;
    overflow-x:auto;
    padding:14px 0;
  }

  .side a{
    white-space:nowrap;
  }

  .dashboard-main{
    padding:34px 0 60px;
  }

  h1{
    font-size:34px;
  }
}
