:root{
  --dp-navy:#07113f;
  --dp-red:#d20a2e;
  --dp-soft:#f6f8ff;
  --dp-border:#e5eaf5;
  --dp-muted:#5d6884;
  --dp-gold:#ffcf73;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:Inter,Arial,sans-serif;
  color:var(--dp-navy);
  background:linear-gradient(135deg,#ffffff 0%,#f7f9ff 55%,#fff8ef 100%);
}

a{color:inherit}

.dp-cat-wrap{
  width:min(1180px,calc(100% - 32px));
  margin:auto;
}

.dp-cat-header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--dp-border);
}

.dp-cat-nav{
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.dp-cat-logo{
  display:flex;
  align-items:center;
  justify-content:center;
  width:150px;
  height:62px;
  border:1px solid var(--dp-border);
  border-radius:24px;
  background:#fff;
  box-shadow:0 15px 35px rgba(7,17,63,.06);
}

.dp-cat-logo img{
  max-width:108px;
  max-height:48px;
  object-fit:contain;
}

.dp-cat-menu{
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px;
  background:#fff;
  border:1px solid var(--dp-border);
  border-radius:999px;
  box-shadow:0 15px 40px rgba(7,17,63,.06);
}

.dp-cat-menu a{
  text-decoration:none;
  font-weight:900;
  font-size:14px;
  padding:12px 18px;
  border-radius:999px;
}

.dp-cat-menu a:hover{
  background:#f3f5fb;
}

.dp-cat-menu .active{
  color:#fff;
  background:linear-gradient(135deg,#9b0038,#ed1b2f);
}

.dp-cat-cta{
  text-decoration:none;
  font-weight:950;
  padding:14px 20px;
  border:1px solid var(--dp-border);
  border-radius:999px;
  background:#fff;
  box-shadow:0 15px 40px rgba(7,17,63,.06);
}

.dp-cat-hero{
  padding:76px 0 36px;
}

.dp-cat-hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:30px;
  align-items:center;
}

.dp-cat-pill{
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  padding:9px 14px;
  background:#fff3d2;
  border:1px solid #ffd978;
  color:#8a5200;
  font-weight:950;
  font-size:14px;
}

.dp-cat-hero h1{
  margin:18px 0 16px;
  font-size:clamp(42px,6vw,76px);
  line-height:.96;
  letter-spacing:-.07em;
}

.dp-cat-lead{
  font-size:18px;
  line-height:1.75;
  color:var(--dp-muted);
  max-width:760px;
  margin:0 0 24px;
}

.dp-cat-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.dp-cat-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 22px;
  border-radius:999px;
  text-decoration:none;
  font-weight:950;
}

.dp-cat-btn.primary{
  background:var(--dp-navy);
  color:#fff;
  box-shadow:0 16px 34px rgba(7,17,63,.16);
}

.dp-cat-btn.secondary{
  background:#fff;
  border:1px solid var(--dp-border);
}

.dp-cat-hero-card{
  background:#fff;
  border:1px solid var(--dp-border);
  border-radius:32px;
  padding:26px;
  box-shadow:0 28px 80px rgba(7,17,63,.08);
}

.dp-cat-score{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.dp-cat-mini{
  padding:18px;
  border-radius:22px;
  background:var(--dp-soft);
  border:1px solid var(--dp-border);
}

.dp-cat-mini strong{
  display:block;
  font-size:30px;
  line-height:1;
  margin-bottom:6px;
}

.dp-cat-mini span{
  color:var(--dp-muted);
  font-size:13px;
  font-weight:800;
}

.dp-cat-section{
  padding:34px 0;
}

.dp-cat-section h2{
  margin:0 0 12px;
  font-size:clamp(30px,4vw,48px);
  line-height:1.05;
  letter-spacing:-.05em;
}

.dp-cat-section-text{
  color:var(--dp-muted);
  line-height:1.75;
  max-width:920px;
  margin:0 0 24px;
  font-size:16px;
}

.dp-cat-tools{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.dp-cat-tool{
  display:flex;
  flex-direction:column;
  min-height:210px;
  text-decoration:none;
  padding:24px;
  border-radius:28px;
  background:#fff;
  border:1px solid var(--dp-border);
  box-shadow:0 22px 55px rgba(7,17,63,.06);
  transition:.2s ease;
}

.dp-cat-tool:hover{
  transform:translateY(-3px);
  border-color:#ffc1ca;
  box-shadow:0 30px 70px rgba(7,17,63,.10);
}

.dp-cat-tool small{
  color:#d20a2e;
  font-weight:950;
  margin-bottom:14px;
}

.dp-cat-tool h3{
  margin:0 0 12px;
  font-size:24px;
  line-height:1.15;
}

.dp-cat-tool p{
  margin:0;
  color:var(--dp-muted);
  line-height:1.6;
}

.dp-cat-tool span{
  margin-top:auto;
  padding-top:20px;
  font-weight:950;
  color:#d20a2e;
}

.dp-cat-content{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.dp-cat-info{
  background:#fff;
  border:1px solid var(--dp-border);
  border-radius:28px;
  padding:26px;
  box-shadow:0 22px 55px rgba(7,17,63,.05);
}

.dp-cat-info h3{
  margin:0 0 10px;
  font-size:24px;
}

.dp-cat-info p,.dp-cat-info li{
  color:var(--dp-muted);
  line-height:1.7;
}

.dp-cat-info ul{
  margin:12px 0 0;
  padding-left:20px;
}

.dp-cat-faq{
  display:grid;
  gap:12px;
}

.dp-cat-faq details{
  background:#fff;
  border:1px solid var(--dp-border);
  border-radius:20px;
  padding:18px 20px;
}

.dp-cat-faq summary{
  cursor:pointer;
  font-weight:950;
  font-size:17px;
}

.dp-cat-faq p{
  color:var(--dp-muted);
  line-height:1.7;
}

.dp-cat-footer{
  margin-top:44px;
  padding:30px 0;
  border-top:1px solid var(--dp-border);
  background:#fff;
}

.dp-cat-footer-row{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:center;
  flex-wrap:wrap;
  color:var(--dp-muted);
  font-weight:800;
}

.dp-cat-footer a{
  color:var(--dp-navy);
  text-decoration:none;
  font-weight:950;
}

@media(max-width:900px){
  .dp-cat-hero-grid,
  .dp-cat-content{
    grid-template-columns:1fr;
  }

  .dp-cat-tools{
    grid-template-columns:1fr;
  }

  .dp-cat-nav{
    align-items:flex-start;
    flex-direction:column;
    padding:16px 0;
  }

  .dp-cat-menu{
    width:100%;
    overflow:auto;
    justify-content:flex-start;
  }
}
