:root{
  --dbs-ink: #0f172a;
  --dbs-muted: #475569;
  --dbs-bg: #ffffff;
  --dbs-soft: #f6f7fb;

  --dbs-border: rgba(15, 23, 42, 0.12);
  --dbs-shadow: 0 18px 45px rgba(16, 24, 40, .10);

  --dbs-primary: #0b2540;
  --dbs-accent: #f2c200;

  --dbs-radius: 18px;
  --dbs-pad: clamp(16px, 4vw, 44px);
  --dbs-wrap: 1100px;
}

/* page wrapper */
.dbs-page{
  background: var(--dbs-bg);
  color: var(--dbs-ink);
}

/* =========================
   HERO (background image)
   ========================= */
.dbs-hero--bg{
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #0b2540;
}

/* overlay to keep text readable */
.dbs-hero__overlay{
  width: 100%;
  min-height: clamp(420px, 60vh, 640px);
  padding: clamp(34px, 6vw, 70px) 0;

  background: linear-gradient(
    to right,
    rgba(11,37,64,.82) 0%,
    rgba(11,37,64,.62) 45%,
    rgba(11,37,64,.25) 70%,
    rgba(11,37,64,.10) 100%
  );
}

.dbs-hero__wrap{
  max-width: var(--dbs-wrap);
  margin: 0 auto;
  padding: 0 var(--dbs-pad);

}

.dbs-hero__eyebrow{
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  font-size: 12px;
}

.dbs-hero__title{
  font-family: Tahoma, Roboto, Geneva, Verdana, sans-serif;
  font-weight: 900;
  font-size: 3.6em;
  line-height: 1.05;
  color: #fff;
  text-align: center;
  margin-bottom: 1.5em;
  margin-top: 1em;
}

.dbs-hero__sub{
  margin: 0 0 16px;
  color: rgba(255,255,255,.88);
  font-size: 1.3em;
  max-width: 62ch;
  font-family: Roboto, Geneva, Verdana, sans-serif;
  line-height: 1.75;
  margin-bottom: 1em;
}

.dbs-hero__chips{
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  margin: 14px 0 22px;
  margin-top: 5em;
}

.dbs-chip{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 800;
  font-size: 0.9em;
  color: rgba(255,255,255,.92);
  font-family: Roboto, Geneva, Verdana, sans-serif;
}

.dbs-hero__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Buttons */
.dbs-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .2px;
  user-select: none;
  font-family: Roboto, Geneva, Verdana, sans-serif;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.dbs-btn:active{ transform: translateY(1px); }

.dbs-btn--primary{
  background-color: #0b2540;
  color: white;
  border: 2px solid #ffffff;
}


.dbs-btn--ghost{
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.45);
}
.dbs-btn--ghost:hover{
  background: rgba(255,255,255,.12);
}

/* optional right card on hero */
.dbs-hero__right{
  display: grid;
  justify-items: end;
}

.dbs-hero__card{
  width: min(420px, 100%);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: var(--dbs-radius);
  box-shadow: var(--dbs-shadow);
  padding: 14px 16px 16px;
}

.dbs-hero__cardTop{
  font-weight: 900;
  color: rgba(15,23,42,.90);
  margin-bottom: 10px;
}

.dbs-hero__bullets{
  margin: 0;
  padding-left: 18px;
  color: rgba(15,23,42,.72);
  line-height: 1.65;
  font-size: 13px;
}

/* =========================
   BODY
   ========================= */
.dbs-body__wrap{
  max-width: var(--dbs-wrap);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 60px) var(--dbs-pad) clamp(48px, 7vw, 90px);
}

.dbs-section{
  margin-top: clamp(18px, 3vw, 34px);
}

.dbs-section__head{
  margin-bottom: 14px;
}

.dbs-h2{
  margin: 0 0 8px;
  font-family: Roboto, Geneva, Verdana, sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 3.2vw, 34px);
  color: var(--dbs-primary);
}

.dbs-h3{
  margin: 0 0 10px;
  font-weight: 900;
  font-size: 18px;
  color: rgba(15,23,42,.92);
  font-family: Tahoma, Roboto, Geneva, Verdana, sans-serif;
}

.dbs-h4{
  margin: 0 0 8px;
  color: rgba(15,23,42,.92);
  font-family: Tahoma, Roboto, Geneva, Verdana, sans-serif;
  font-weight: 1900;
  font-size: 1em;
}

.dbs-muted{
  margin: 0;
  color: var(--dbs-muted);
  max-width: 80ch;
  font-size: 0.95em;
  line-height: 1.90;
  font-family: Tahoma, Roboto, Geneva, Verdana, sans-serif;
  text-align: left;
}

.dbs-p{
  margin: 0 0 10px;
  color: rgba(15,23,42,.78);
  font-size: 0.95em;
  line-height: 1.90;
  font-family: Tahoma, Roboto, Geneva, Verdana, sans-serif;
  text-align: left;
}

/* content cards */
.dbs-card{
  background: #fff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: var(--dbs-radius);
  box-shadow: 0 14px 34px rgba(16,24,40,.06);
  padding: 18px 18px;
  margin-top: 14px;
  margin-bottom: 50px;
}

/* banner image for cards */
.dbs-card__banner{
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.10);
  background: #e5e7eb;
  margin: 0 0 12px;
  aspect-ratio: 21 / 9;
}

.dbs-card__banner img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* grids */
.dbs-grid3{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.dbs-grid2{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.dbs-mini{
  background: var(--dbs-soft);
  border: 1px solid black;
  border-radius: 14px;
  padding: 14px;
}

/* image inside mini */
.dbs-mini__img{
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.10);
  background: #e5e7eb;
  margin-bottom: 10px;
  aspect-ratio: 16 / 9;
}

.dbs-mini__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dbs-list{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(15,23,42,.78);
  font-size: 0.95em;
  line-height: 1.90;
  font-family: Tahoma, Roboto, Geneva, Verdana, sans-serif;
  text-align: left;
}

/* notes */
.dbs-note{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(242, 194, 0, .12);
  color: rgba(15,23,42,.85);
  line-height: 1.65;
  font-size: 0.90em;
  font-family: Tahoma, Roboto, Geneva, Verdana, sans-serif;
}

.dbs-note--soft{
  background: rgba(15, 37, 64, .06);
}

/* table */
.dbs-table{
  margin-top: 12px;
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 14px;
  overflow: hidden;
}

.dbs-table__row{
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 12px;
  padding: 12px 14px;
  background: #fff;
  border-top: 1px solid rgba(15,23,42,.08);
  color: rgba(15,23,42,.80);
  line-height: 1.75;
  font-size: 0.95em;
  font-family: Tahoma, Roboto, Geneva, Verdana, sans-serif;
}

.dbs-table__row:first-child{ border-top: 0; }

.dbs-table__head{
  font-weight: 900;
  background: rgba(15, 37, 64, .06);
  font-size: 1.1em;
  font-family: Tahoma, Roboto, Geneva, Verdana, sans-serif;
}

/* badges */
.dbs-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 0;
}

.dbs-badge{
  background: rgba(15, 37, 64, .06);
  border: 1px solid rgba(15,23,42,.10);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  color: rgba(15,23,42,.82);
  font-size: 0.80em;
  font-family: Tahoma, Roboto, Geneva, Verdana, sans-serif;
}

/* FAQ */
.dbs-faq{
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.dbs-faq__item{
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.dbs-faq__item > summary{
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 900;
  color: rgba(15,23,42,.90);
  position: relative;
  user-select: none;
}

.dbs-faq__item > summary::-webkit-details-marker{ display:none; }

.dbs-faq__item > summary::after{
  content:"";
  position:absolute;
  right:16px;
  top:50%;
  width:10px;
  height:10px;
  border-right:3px solid rgba(15,23,42,.55);
  border-bottom:3px solid rgba(15,23,42,.55);
  transform: translateY(-50%) rotate(45deg);
  transition: transform .2s ease;
}

.dbs-faq__item[open] > summary::after{
  transform: translateY(-50%) rotate(-135deg);
}

.dbs-faq__a{
  padding: 0 16px 14px;
  color: rgba(15,23,42,.78);
  line-height: 1.7;
  font-size: 14px;
  font-size: 0.95em;
  font-family: Tahoma, Roboto, Geneva, Verdana, sans-serif;
}

/* CTA */
.dbs-cta{
  margin-top: clamp(22px, 4vw, 44px);
}

.dbs-cta__box{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;

  border: 1px solid rgba(15,23,42,.12);
  border-radius: 18px;
  background: rgba(15, 37, 64, .06);
  padding: 16px 16px;
}


.dbs-cta__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 980px){
  .dbs-hero__wrap{
    grid-template-columns: 1fr;
  }

  .dbs-hero__right{
    justify-items: start;
  }

  .dbs-hero__overlay{
    background: linear-gradient(
      to bottom,
      rgba(11,37,64,.86) 0%,
      rgba(11,37,64,.70) 55%,
      rgba(11,37,64,.35) 100%
    );
  }

  .dbs-grid3{
    grid-template-columns: 1fr;
  }

  .dbs-grid2{
    grid-template-columns: 1fr;
  }

  .dbs-table__row{
    grid-template-columns: 1fr;
  }
}