.dpc-widget,
.dpc-widget * {
  box-sizing: border-box;
}

.dpc-widget {
  --dpc-navy: #03172e;
  --dpc-ink: #07172d;
  --dpc-gold: #d99a2b;
  --dpc-border: #e7d6b8;
  --dpc-overlay-start: #03172e;
  --dpc-overlay-end: rgba(3, 23, 46, 0.03);
  --dpc-overlay-stop: 56%;
  width: 100%;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

.dpc-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 50px;
  padding-right: 50px;
}

/* HERO */
.dpc-hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 510px;
  overflow: hidden;
  background: var(--dpc-navy);
  color: #fff;
}

.dpc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, #03172e 0%, #03172e 43%, rgba(3, 23, 46, 0.78) 60%, rgba(3, 23, 46, 0) 100%);
}

.dpc-hero__photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 56%;
  z-index: -2;
  background-image: var(--dpc-hero-image);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.dpc-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, var(--dpc-overlay-start) 0%, var(--dpc-overlay-start) var(--dpc-overlay-stop), var(--dpc-overlay-end) 100%);
  pointer-events: none;
}

.dpc-hero .dpc-container {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
  padding-top: 68px;
  padding-bottom: 54px;
}

.dpc-hero__content {
  max-width: 49%;
}

.dpc-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dpc-gold);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
}

.dpc-hero__eyebrow i {
  display: inline-block;
  width: 42px;
  height: 1px;
  background: currentColor;
  opacity: 0.9;
}

.dpc-hero__title {
  margin: 18px 0;
  padding: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 3.2vw, 54px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.012em;
}

.dpc-hero__title-line {
  display: block;
}

.dpc-hero__title-line--one { color: #fff; }
.dpc-hero__title-line--two { color: var(--dpc-gold); }

.dpc-hero__description {
  max-width: 570px;
  color: #fff;
  font-size: 17px;
  line-height: 1.42;
}

.dpc-hero__description p {
  margin: 0;
}

.dpc-benefits {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.dpc-benefit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.dpc-benefit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dpc-gold);
  font-size: 30px;
  line-height: 1;
  flex: 0 0 auto;
}

.dpc-benefit__icon svg,
.dpc-area-card__icon svg,
.dpc-decorator__icon svg,
.dpc-button__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.dpc-benefit__text {
  max-width: 130px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.dpc-hero__actions {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 32px;
}

.dpc-button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 16px 28px;
  border: 1px solid transparent;
  border-radius: 0;
  text-decoration: none !important;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.dpc-button:hover,
.dpc-button:focus { text-decoration: none !important; }
.dpc-button:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.dpc-button__icon { display: inline-flex; font-size: 20px; line-height: 1; }
.dpc-button--primary { color: #fff; background: var(--dpc-gold); border-color: var(--dpc-gold); }
.dpc-button--primary:hover { color: #fff; background: #b77a14; }
.dpc-button--secondary { color: #fff; background: transparent; border-color: var(--dpc-gold); }
.dpc-button--secondary:hover { color: #fff; background: rgba(217, 154, 43, .12); }

/* SHARED SECTION TITLES */
.dpc-section-heading {
  width: 100%;
  margin: 0 auto 22px;
  text-align: center;
}

.dpc-section-title {
  margin: 0;
  padding: 0;
  color: var(--dpc-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: .015em;
}

.dpc-decorator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 7px;
}

.dpc-decorator__line {
  width: 78px;
  height: 1px;
}

.dpc-decorator__line--left { background: #93a0ae; }
.dpc-decorator__line--right { background: var(--dpc-gold); }
.dpc-decorator__icon { display: inline-flex; color: var(--dpc-gold); font-size: 15px; line-height: 1; }

/* AREAS */
.dpc-areas {
  position: relative;
  padding: 34px 0 22px;
  background: #fff;
}

.dpc-areas__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.dpc-area-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 242px;
  padding: 22px 15px 18px;
  border: 1px solid var(--dpc-border);
  border-radius: 0;
  background: #fff;
  color: var(--dpc-ink);
  text-decoration: none !important;
  text-align: center;
  box-shadow: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.dpc--area-hover .dpc-area-card:hover {
  transform: translateY(-3px);
  border-color: var(--dpc-gold);
  box-shadow: 0 10px 24px rgba(3, 23, 46, .08);
}

.dpc-area-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  color: var(--dpc-ink);
  font-size: 38px;
  line-height: 1;
}

.dpc-area-card__title {
  margin: 11px 0 12px;
  color: var(--dpc-ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.dpc-area-card__description {
  color: #1d2a39;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.48;
}

/* FAQ */
.dpc-faq {
  position: relative;
  padding: 24px 0 22px;
  border-top: 1px solid #e2e5e8;
  background: #fff;
}

.dpc-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.dpc-faq-item {
  min-width: 0;
  border: 1px solid var(--dpc-border);
  background: #fff;
}

.dpc-faq-item__inner { padding: 16px 20px 14px; }

.dpc-faq-item__header {
  appearance: none;
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--dpc-ink);
  text-align: left;
  cursor: default;
}

.dpc-faq--collapsible .dpc-faq-item__header { cursor: pointer; }
.dpc-faq--collapsible .dpc-faq-item__header:focus-visible { outline: 2px solid var(--dpc-gold); outline-offset: 4px; }

.dpc-faq-item__question {
  color: var(--dpc-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.dpc-faq-item__toggle {
  display: inline-flex;
  min-width: 14px;
  align-items: center;
  justify-content: center;
  color: var(--dpc-ink);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.dpc-minus { display: none; }
.dpc-faq--collapsible .dpc-faq-item.is-open .dpc-plus { display: none; }
.dpc-faq--collapsible .dpc-faq-item.is-open .dpc-minus { display: inline; }

.dpc-faq-item__answer-wrap { display: block; }
.dpc-faq--collapsible .dpc-faq-item:not(.is-open) .dpc-faq-item__answer-wrap { display: none; }

.dpc-faq-item__answer {
  margin-top: 7px;
  color: #243140;
  font-size: 12px;
  line-height: 1.42;
}

/* TABLET */
@media (max-width: 1024px) {
  .dpc-container { padding-left: 28px; padding-right: 28px; }
  .dpc-hero { min-height: 520px; }
  .dpc-hero__photo { width: 62%; }
  .dpc-hero__content { max-width: 60%; }
  .dpc-hero__title { font-size: clamp(37px, 5vw, 46px); }
  .dpc-areas__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* MOBILE */
@media (max-width: 767px) {
  .dpc-container { padding-left: 20px; padding-right: 20px; }

  .dpc-hero {
    min-height: 640px;
    background: var(--dpc-navy);
  }

  .dpc-hero::before { display: none; }

  .dpc-hero__photo {
    width: 100%;
    opacity: .48;
    background-image: var(--dpc-hero-mobile-image);
    background-position: center center;
  }

  .dpc-hero__overlay {
    background: linear-gradient(180deg, rgba(3, 23, 46, .72) 0%, rgba(3, 23, 46, .92) 48%, #03172e 100%);
  }

  .dpc-hero .dpc-container {
    align-items: flex-end;
    padding-top: 72px;
    padding-bottom: 54px;
  }

  .dpc-hero__content { max-width: 100%; }
  .dpc--mobile-align-left .dpc-hero__content { text-align: left; }
  .dpc--mobile-align-center .dpc-hero__content { text-align: center; }
  .dpc--mobile-align-right .dpc-hero__content { text-align: right; }

  .dpc--mobile-align-center .dpc-hero__eyebrow,
  .dpc--mobile-align-center .dpc-benefits,
  .dpc--mobile-align-center .dpc-hero__actions { justify-content: center; }

  .dpc--mobile-align-right .dpc-hero__eyebrow,
  .dpc--mobile-align-right .dpc-benefits,
  .dpc--mobile-align-right .dpc-hero__actions { justify-content: flex-end; }

  .dpc-hero__title { font-size: clamp(31px, 9.2vw, 40px); line-height: 1.04; }
  .dpc-hero__description { font-size: 15px; line-height: 1.48; }

  .dpc-benefits { margin-top: 25px; gap: 14px; }
  .dpc--mobile-benefits-stack .dpc-benefits { flex-direction: column; align-items: flex-start; }
  .dpc--mobile-benefits-stack.dpc--mobile-align-center .dpc-benefits { align-items: center; }
  .dpc--mobile-benefits-grid .dpc-benefits { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dpc-benefit__text { max-width: 170px; }

  .dpc--mobile-stack-buttons .dpc-hero__actions { flex-direction: column; }
  .dpc--mobile-full-buttons .dpc-button { width: 100%; }
  .dpc--hide-secondary-mobile .dpc-button--secondary { display: none; }
  .dpc--hide-benefits-mobile .dpc-benefits { display: none; }

  .dpc-section-title { font-size: 28px; }
  .dpc-decorator__line { width: 58px; }

  .dpc-areas { padding-top: 28px; }
  .dpc-areas__grid { grid-template-columns: 1fr; gap: 12px; }
  .dpc-area-card { min-height: 0; padding: 22px 18px; }
  .dpc-area-card__title { font-size: 16px; }
  .dpc-area-card__description { font-size: 13px; }

  .dpc-faq__grid { grid-template-columns: 1fr; }
  .dpc-faq-item__inner { padding: 16px 18px; }
  .dpc-faq-item__question { font-size: 14px; }
  .dpc-faq-item__answer { font-size: 12.5px; }
}

@media (prefers-reduced-motion: reduce) {
  .dpc-button,
  .dpc-area-card { transition: none !important; }
}
