/* DirectPayNet site styles
 * Brand tokens + Bootstrap 5 overrides + small component styles.
 * Loaded after Bootstrap so :root / variable overrides take effect.
 */

@font-face {
    font-family: 'IntelOne Display';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('/fonts/intelone-display-light.ttf') format('truetype');
}
@font-face {
    font-family: 'IntelOne Display';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/intelone-display-regular.ttf') format('truetype');
}
@font-face {
    font-family: 'IntelOne Display';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/fonts/intelone-display-medium.ttf') format('truetype');
}
@font-face {
    font-family: 'IntelOne Display';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/fonts/intelone-display-bold.ttf') format('truetype');
}

:root {
    --dpn-bg:        #FDFFFC;
    --dpn-text:      #484D6D;
    --dpn-accent:    #FF5D0F;
    --dpn-accent-2:  #F4D352;

    /* Bootstrap variable overrides */
    --bs-primary:        #FF5D0F;
    --bs-primary-rgb:    255, 93, 15;
    --bs-secondary:      #484D6D;
    --bs-secondary-rgb:  72, 77, 109;
    --bs-body-color:     #484D6D;
    --bs-body-bg:        #FDFFFC;
    --bs-body-font-family: "IntelOne Display", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --bs-link-color:        #FF5D0F;
    --bs-link-hover-color:  #cc4607;
}

body {
    color: var(--dpn-text);
    background-color: var(--dpn-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}
h1 { color: var(--dpn-accent); }

/* --- Navbar -------------------------------------------------------------- */
.dpn-navbar {
    --bs-navbar-nav-link-padding-x: 1.5rem;
    background-color: var(--dpn-bg);
    box-shadow: 0 0 24px rgba(0, 0, 0, .15);
}
.dpn-navbar .nav-link {
    color: var(--dpn-text);
    font-weight: 500;
    font-size: 1.125rem;
}
.dpn-navbar .nav-link:hover,
.dpn-navbar .nav-link:focus,
.dpn-navbar .dropdown-item:active {
    color: var(--dpn-accent);
}
.dpn-navbar .navbar-brand img {
    width: auto;
}
.dpn-navbar .btn-accent {
    font-weight: 700;
    font-size: 1.25rem;
    padding: .55rem 1.5rem;
}
.dpn-navbar .navbar-toggler {
    border: 0;
    padding: .35rem .55rem;
    box-shadow: none;
    background: transparent;
}
.dpn-navbar .navbar-toggler:focus { box-shadow: none; }
.dpn-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, .35));
}
.dpn-navbar__mobile-cta {
    font-size: 1rem;
    padding: .4rem 1.1rem;
    margin-right: auto;
}

/* --- Buttons ------------------------------------------------------------- */
.btn-accent {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--dpn-accent);
    --bs-btn-border-color: var(--dpn-accent);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #e54f08;
    --bs-btn-hover-border-color: #e54f08;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #cc4607;
    --bs-btn-active-border-color: #cc4607;
    font-weight: 700;
    position: relative;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, .2));
    transition: background-color .15s, color .15s, filter .15s;
}
.btn-accent:hover {
    filter: drop-shadow(0 6px 9px rgba(0, 0, 0, .25));
}
.btn-accent::after {
    content: '';
    position: absolute;
    top: -0.08em;
    right: -0.5em;
    width: 4em;
    height: 3.5em;
    background: var(--dpn-accent);
    clip-path: polygon(67% 25%, 0 0, 100% 0);
    transition: background-color .15s;
}
.btn-accent:hover::after { background: #e54f08; }
.btn-accent.no-tab::after,
.dpn-cta__button.no-tab::after { display: none; }

/* --- Footer -------------------------------------------------------------- */
.dpn-footer {
    background-color: var(--dpn-accent);
    color: #fff;
}
.dpn-footer-link {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
}
.dpn-footer-link:hover { color: #fff; }
.dpn-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-left: .25rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    transition: background .15s ease;
}
.dpn-socials a:hover { background: rgba(255, 255, 255, .3); }

/* --- Contact CTA banner (legal/content pages) -------------------------- */
.dpn-cta {
    position: relative;
    background: linear-gradient(126deg, var(--dpn-accent) 0%, var(--dpn-accent-2) 90%);
    color: #fff;
}
.dpn-cta__wave {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 100px;
    line-height: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}
.dpn-cta__wave svg {
    display: block;
    position: relative;
    left: 84%;
    width: 260%;
    height: 100px;
    transform: translateX(-50%);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, .25));
}
.dpn-cta__wave svg path { fill: var(--dpn-bg); }

.dpn-cta__title {
    color: #fff;
    font-size: 2.875rem; /* 46px */
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: .5rem;
}
.dpn-cta__eyebrow {
    color: #fff;
    font-size: 1.25rem; /* 20px */
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 2rem;
}
.dpn-cta__button {
    display: inline-block;
    position: relative;
    background: #fff;
    color: var(--dpn-accent);
    font-weight: 500;
    font-size: 1.25rem;
    padding: .75rem 2.5rem;
    border-radius: 999px;
    text-decoration: none;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, .2));
    transition: background .15s, color .15s, filter .15s;
}
.dpn-cta__button:hover {
    background: var(--dpn-text);
    color: #fff;
    filter: drop-shadow(0 6px 9px rgba(0, 0, 0, .25));
}
.dpn-cta__button::after {
    content: '';
    position: absolute;
    top: 0;
    right: -0.5em;
    width: 4em;
    height: 3.5em;
    background: #fff;
    clip-path: polygon(50% 35%, 0 0, 100% 0);
    transition: background .15s;
}
.dpn-cta__button:hover::after { background: var(--dpn-text); }
.dpn-cta__image {
    position: relative;
    z-index: 2;
}
.dpn-cta__image img {
    width: 100%;
    height: auto;
    border-radius: 325px 120px 120px 120px;
    filter: drop-shadow(0 -8px 16px rgba(0, 0, 0, .15));
}
@media (min-width: 992px) {
    .dpn-cta__image img { margin-top: -120px; }
}
@media (max-width: 991.98px) {
    .dpn-cta { text-align: center; padding-top: 20px; }
    .dpn-cta__title { font-size: 1.75rem; margin-bottom: .25rem; }
    .dpn-cta__eyebrow { font-size: 1.125rem; margin-bottom: 1.25rem; }
    .dpn-cta__wave, .dpn-cta__wave svg { height: 70px; }
    .dpn-cta__image img { width: 75%; max-width: 480px; }
}

/* --- Section: Contact Us page (form + phones/emails) ------------------ */
.dpn-contact-page__eyebrow {
    font-size: 1.3125rem; /* 21px */
    font-weight: 500;
    color: var(--dpn-accent);
    margin-bottom: .5rem;
}
.dpn-contact-page__title {
    font-size: 2.3125rem; /* 37px */
    font-weight: 500;
    color: var(--dpn-text);
    line-height: 1.05;
    margin-bottom: 1rem;
}
.dpn-contact-page__lead {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--dpn-text);
    line-height: 1.5;
    margin-bottom: 3rem;
}
.dpn-contact-page__heading {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--dpn-accent);
    margin-top: 0;
    margin-bottom: 1.5rem;
}
.dpn-contact-page__list {
    margin-bottom: 2.5rem;
}
.dpn-contact-page__list li {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: .75rem;
    margin-bottom: 1rem;
}
.dpn-contact-page__icon {
    width: 18px;
    height: 18px;
    color: var(--dpn-accent);
    flex-shrink: 0;
    grid-row: span 2;
    align-self: center;
}
.dpn-contact-page__primary {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--dpn-accent);
    text-decoration: none;
    transition: font-weight .15s ease;
}
.dpn-contact-page__primary:hover {
    font-weight: 700;
    text-decoration: none;
}
.dpn-contact-page__secondary {
    font-size: 1rem;
    color: var(--dpn-text);
}
.dpn-contact-page__list--emails li { grid-template-columns: auto 1fr; }
.dpn-contact-page__list--emails .dpn-contact-page__icon { grid-row: auto; }
.dpn-contact-page__form-title {
    font-size: 2.3125rem; /* 37px, matches right-col title */
    font-weight: 500;
    color: var(--dpn-text);
    line-height: 1.05;
    margin-bottom: .5rem;
}
.dpn-contact-page__form-subtitle {
    font-size: 1.125rem; /* 18px, matches right-col lead */
    font-weight: 500;
    color: var(--dpn-text);
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}
.dpn-contact-page__form {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    padding: 1.5rem 1rem;
}
.dpn-contact-page__form iframe {
    display: block;
    width: 100%;
    border: 0;
}
@media (max-width: 991.98px) {
    .dpn-contact-page__info { text-align: center; }
    .dpn-contact-page__list li { justify-content: center; max-width: 320px; margin-left: auto; margin-right: auto; }
    .dpn-page-hero__subtitle { display: none; }
}

/* --- Section: Services page (engineered for growth grid) -------------- */
.dpn-services-grid__header .dpn-section__eyebrow {
    font-weight: 400;
}
.dpn-services-grid__header .dpn-section__title {
    font-weight: 700;
}
.dpn-services-grid__header .dpn-section__lead {
    max-width: 760px;
}
@media (max-width: 575.98px) {
    .dpn-services-grid__header .dpn-section__title { font-size: 1.5rem; }
    .dpn-services-grid__header .dpn-section__lead { line-height: 1.6; }
    .dpn-services-grid__why .dpn-section__title.dpn-section__title--text { font-size: 1.5rem; }
    .dpn-services-grid__why.row p { font-size: 1rem; line-height: 1.5; }
    .dpn-services-grid__closing.mt-5 { font-size: 1rem; line-height: 1.5; }
    .dpn-services-pillars .dpn-services-pillar { text-align: center; }
    .dpn-services-why .dpn-why__list { display: block; text-align: center; }
}
.dpn-service-tile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    background: #fff;
    border-radius: 15px 15px 15px 70px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
    padding: 4rem 3rem;
    height: 100%;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease;
}
a.dpn-service-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
}
.dpn-service-tile__icon {
    width: 70px;
    height: auto;
    margin-bottom: 1rem;
}
.dpn-service-tile__title {
    font-size: 1.125rem; /* 18px */
    font-weight: 500;
    color: var(--dpn-accent);
    margin-bottom: .75rem;
}
.dpn-service-tile__text {
    font-size: 1.125rem; /* 18px */
    color: var(--dpn-text);
    line-height: 1.45;
    margin: 0;
}
@media (max-width: 991.98px) {
    .dpn-service-tile {
        align-items: center;
        text-align: center;
    }
}
.dpn-services-grid__why .dpn-section__title {
    font-size: 43px;
    font-weight: 600;
    text-align: center;
}
.dpn-services-grid__why > [class*="col-"] {
    display: flex;
    flex-direction: column;
}
.dpn-services-grid__why .text-end { margin-top: auto; }
.dpn-services-grid__why p {
    font-size: 1.375rem; /* 22px */
    color: var(--dpn-text);
    line-height: 1.2;
    text-align: center;
}
.dpn-services-grid__closing {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--dpn-text);
    font-size: 1.375rem; /* 22px */
    line-height: 1.2;
    text-align: center;
}
.dpn-services-grid__closing a {
    color: var(--dpn-accent);
    text-decoration: none;
    transition: font-weight .15s ease;
}
.dpn-services-grid__closing a:hover {
    font-weight: 700;
    text-decoration: none;
}

/* --- Feature card icon variant + centered modifier --------------------- */
.dpn-feature.dpn-feature--centered {
    text-align: center;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
}
.dpn-feature__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--dpn-accent);
    color: #fff;
    margin-bottom: 1rem;
}
.dpn-feature__icon svg {
    width: 36px;
    height: 36px;
}

/* industry pages: getting-started steps */
.dpn-industry-steps__inner {
    max-width: 900px;
    margin: 0 auto;
}
.dpn-industry-step { margin-bottom: 1.5rem; }
.dpn-industry-step:last-child { margin-bottom: 0; }
.dpn-industry-step__title {
    font-size: 1.5rem; /* 24px */
    font-weight: 600;
    color: var(--dpn-text);
    margin-bottom: .35rem;
}
.dpn-industry-step__text {
    font-size: 1.375rem; /* 22px */
    color: var(--dpn-text);
    line-height: 1.5;
    margin: 0;
}

/* industry pages: why-choose row with image on right */
.dpn-industry-why__image img {
    width: 100%;
    height: auto;
    max-width: 460px;
    border-radius: 100px 100px 150px 280px;
    filter: drop-shadow(0 -8px 22px rgba(0, 0, 0, .35));
}

/* industry pages: benefits 2x2 grid */
.dpn-industry-benefits__header p {
    font-size: 1.375rem; /* 22px */
    color: var(--dpn-text);
    line-height: 1.5;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}
.dpn-industry-benefit {
    height: 100%;
    background: #fff;
    border-radius: 15px 15px 15px 70px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .28);
    padding: 2.5rem 1.75rem;
}
.dpn-industry-benefit__title {
    font-size: 1.75rem; /* 28px */
    font-weight: 500;
    color: var(--dpn-accent);
    margin-bottom: .75rem;
    text-align: center;
}
.dpn-industry-benefit__text {
    font-size: 1.375rem; /* 22px */
    color: var(--dpn-text);
    line-height: 1.5;
    margin: 0;
}
@media (max-width: 767.98px) {
    .dpn-industry-benefits__header p,
    .dpn-industry-benefit__text,
    .dpn-industry-step__text { font-size: 1rem; /* 16px */ }
    .dpn-industry-benefit__title,
    .dpn-industry-step__title { font-size: 1.125rem; /* 18px */ }
}

/* industry pages: prose intro/overview block */
.dpn-industry-overview__content {
    max-width: 1100px;
    margin: 0 auto;
    color: var(--dpn-text);
    font-size: 1.25rem; /* 20px */
    line-height: 1.5;
}
.dpn-industry-overview__content p { margin-bottom: 1.25rem; }
.dpn-industry-overview__content p:last-child { margin-bottom: 0; }
@media (max-width: 767.98px) {
    .dpn-industry-overview__content { font-size: 1rem; /* 16px */ }
}

/* industry pages: narrow CTA strip with title + pill, ~45% width centered */
.dpn-industry-strip__row {
    max-width: 45%;
    margin-left: auto;
    margin-right: auto;
}
.dpn-industry-strip .btn {
    font-size: 1.5rem; /* 24px */
    padding: .5rem 1.5rem;
    white-space: nowrap;
}
@media (max-width: 991.98px) {
    .dpn-industry-strip__row { max-width: 100%; }
}

/* resources page: intro + zigzag rows */
.dpn-resources-intro .dpn-section__title { font-weight: 600; }
.dpn-resources-intro p {
    font-size: 1.25rem; /* 20px */
    color: var(--dpn-text);
    line-height: 1.5;
}
.dpn-resources-intro__image img {
    width: 100%;
    height: auto;
    max-width: 480px;
    border-radius: 100px 100px 310px 100px;
    filter: drop-shadow(0 -6px 14px rgba(0, 0, 0, .15));
}
.dpn-resources-zigzag { padding-bottom: 9rem !important; }
.dpn-resources-zigzag__row { margin-bottom: 4rem; }
.dpn-resources-zigzag__row:last-child { margin-bottom: 0; }
.dpn-resources-zigzag__img {
    width: 100%;
    max-width: 560px;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 40px;
    filter: drop-shadow(0 -6px 14px rgba(0, 0, 0, .15));
}
.dpn-resources-zigzag__text p {
    font-size: 1.125rem; /* 18px */
    color: var(--dpn-text);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

/* faq page: category section with accordion */
.dpn-faq-page__category { margin-bottom: 3rem; }
.dpn-faq-page__category:last-child { margin-bottom: 0; }
.dpn-faq-page__category-title { margin-bottom: 1.25rem; }

/* faq mid-page CTA: stacked overlapping Maria images on the left,
 * heading + paragraphs + button on the right */
.dpn-faq-cta__images img {
    width: 100%;
    height: auto;
}
.dpn-faq-cta__image-1 {
    max-width: 45%;
    margin-left: auto;
    margin-right: 0;
    border-radius: 268px 72px 72px 72px;
    filter: drop-shadow(0 -6px 14px rgba(0, 0, 0, .15));
    position: relative;
    z-index: 1;
    display: block;
}
.dpn-faq-cta__image-2 {
    max-width: 68%;
    margin-top: -7rem;
    margin-left: 0;
    margin-right: auto;
    border-radius: 120px 120px 325px 120px;
    filter: drop-shadow(0 -6px 14px rgba(0, 0, 0, .15));
    position: relative;
    z-index: 2;
    display: block;
}
.dpn-faq-cta__text .dpn-section__eyebrow { font-weight: 500; }

/* faq final CTA: orange "About Us" pill instead of the default white,
 * heavier title + eyebrow per client */
.page-faq .dpn-cta__title { font-weight: 600; font-size: 3rem; /* 48px */ }
.page-faq .dpn-cta__eyebrow { font-weight: 500; font-size: 1.5rem; /* 24px */ }
.page-faq .dpn-cta__button {
    background: var(--dpn-accent);
    color: #fff;
}
.page-faq .dpn-cta__button::after { background: var(--dpn-accent); }
.dpn-faq-cta__text p {
    font-size: 1.375rem; /* 22px */
    color: var(--dpn-text);
    line-height: 1.5;
    margin-bottom: 1rem;
}
@media (max-width: 767.98px) {
    .dpn-faq-cta__text { text-align: center; }
    .dpn-faq-cta__text .dpn-section__eyebrow { font-size: 1.125rem; /* 18px */ }
    .dpn-faq-cta__text .dpn-section__title { font-size: 1.75rem; /* 28px */ }
    .dpn-faq-cta__text p { font-size: 1rem; /* 16px */ }
}

/* industries index intro */
.dpn-industries-intro__header { margin-bottom: 1.5rem; }
.dpn-industries-intro__header .dpn-section__eyebrow {
    font-size: 1.5rem; /* 24px */
    font-weight: 500;
    color: var(--dpn-text);
}
.dpn-industries-intro__header .dpn-section__title {
    font-size: 3rem; /* 48px */
    font-weight: 600;
}
@media (max-width: 767.98px) {
    .dpn-industries-intro__header .dpn-section__title { font-size: 2.25rem; /* 36px */ }
    .dpn-industries-intro__header .dpn-section__eyebrow { font-size: 1.125rem; /* 18px */ }
}
.dpn-industries-intro__copy {
    color: var(--dpn-text);
    font-size: 1.125rem; /* 18px */
    line-height: 1.5;
    text-align: center;
}
.dpn-industries-intro__copy p { margin-bottom: 1rem; }
.dpn-industries-intro__copy p:last-child { margin-bottom: 0; }
.dpn-industries-intro__subhead {
    font-size: 1.5rem; /* 24px */
    font-weight: 500;
    color: var(--dpn-accent);
    margin-bottom: .75rem;
    text-align: center;
}
.dpn-industries-intro__split p {
    color: var(--dpn-text);
    font-size: 1.125rem; /* 18px */
    line-height: 1.5;
    margin: 0;
}
.dpn-industries-intro__shopify {
    align-items: center;
    gap: 1rem;
    padding-left: 5rem;
    padding-right: 5rem;
}
.dpn-industries-intro__shopify-link { flex-shrink: 0; line-height: 0; }
.dpn-industries-intro__shopify-glyph { width: 70px; height: auto; }
.dpn-industries-intro__shopify-text {
    font-size: 1.125rem; /* 18px */
    color: var(--dpn-text);
    line-height: 1.4;
    margin: 0;
}
.dpn-industries-intro__shopify-text strong { color: var(--dpn-accent); }
.dpn-industries-intro__shopify-text a {
    color: var(--dpn-accent);
    font-weight: 500;
    text-decoration: none;
}
.dpn-industries-intro__shopify-text a:hover { text-decoration: underline; }

/* industries index: big tile grid */
/* Let cols flex-grow so the last (possibly incomplete) row stretches its
 * tiles to fill the row width, matching the live site. Full rows still hit
 * the column percentage exactly (no spare space to grow into). */
.dpn-industries-grid__tiles > [class*="col-"] { flex-grow: 1; }
.dpn-industries-cta__image img { max-width: 70%; height: auto; }
@media (min-width: 992px) {
    .dpn-industries-cta { padding-bottom: 9rem !important; }
}
@media (max-width: 767.98px) {
    .dpn-industries-cta p { text-align: center; }
}
.dpn-industries-cta p {
    font-size: 1.125rem; /* 18px */
    color: var(--dpn-text);
    line-height: 1.5;
}
.dpn-industries-cta a:not(.btn) {
    color: var(--dpn-accent);
    text-decoration: none;
    font-weight: 500;
}
.dpn-industries-cta a:not(.btn):hover { text-decoration: underline; }
.dpn-industry-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    background: #fff;
    border-radius: 15px 15px 15px 70px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .18);
    padding: 2.5rem 1.75rem;
    transition: transform .15s ease, box-shadow .15s ease;
}
.dpn-industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
}
.dpn-industry-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 95px;
    height: 95px;
    margin-bottom: 1rem;
}
.dpn-industry-card__icon svg { width: 100%; height: 100%; }
.dpn-industry-card__title {
    font-size: 1.5rem; /* 24px */
    font-weight: 500;
    color: var(--dpn-accent);
    margin-bottom: .75rem;
}
.dpn-industry-card__text {
    font-size: 1.125rem; /* 18px */
    color: var(--dpn-text);
    line-height: 1.45;
    margin-bottom: 1.25rem;
}
.dpn-industry-card__cta { margin-top: auto; align-self: flex-start; margin-left: .5rem; }

/* high-risk + fraud: scoped overrides */
.dpn-high-risk-why .dpn-feature__title,
.dpn-fraud-why .dpn-feature__title { font-size: 1.5rem; /* 24px */ }

.dpn-high-risk-intro__content {
    max-width: 1200px;
    margin: 0 auto;
    color: var(--dpn-text);
    font-size: 1.375rem; /* 22px */
    line-height: 1.2;
}
.dpn-high-risk-intro__content p { margin-bottom: 1.25rem; }
.dpn-high-risk-intro__content p:last-child { margin-bottom: 0; }
@media (max-width: 767.98px) {
    .dpn-high-risk-intro__content { font-size: 1.125rem; /* 18px */ }
}

/* high-risk: industries grid (4x2) */
.dpn-high-risk-industries .dpn-section__title {
    color: var(--dpn-text);
    font-size: 3rem; /* 48px */
}
.dpn-high-risk-industries .dpn-section__eyebrow { font-weight: 400; }
@media (min-width: 992px) {
    .dpn-high-risk-industries { padding-bottom: 9rem !important; }
}
.dpn-industry-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
    height: 100%;
    background: #fff;
    border-radius: 15px 15px 15px 70px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .18);
    padding: 2.5rem 1.75rem;
    transition: transform .15s ease, box-shadow .15s ease;
}
.dpn-industry-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
    color: inherit;
    text-decoration: none;
}
.dpn-industry-tile__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 94px;
    height: 94px;
    margin-bottom: 1rem;
}
.dpn-industry-tile__icon svg {
    width: 100%;
    height: 100%;
}
.dpn-industry-tile__title {
    font-size: 1.5rem; /* 24px */
    font-weight: 500;
    color: var(--dpn-accent);
    margin-bottom: .75rem;
}
.dpn-industry-tile__text {
    font-size: 1.125rem; /* 18px */
    color: var(--dpn-text);
    line-height: 1.45;
    margin: 0;
}

/* --- Section: Form-hero (high-risk and other services subpages) -------- */
.dpn-form-hero {
    position: relative;
    background: linear-gradient(126deg, var(--dpn-accent) 0%, var(--dpn-accent-2) 90%);
    color: #fff;
    padding: 4rem 0 6rem;
}
.dpn-form-hero__title {
    color: #fff;
    font-size: 3rem; /* 48px */
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 1.75rem;
}
.dpn-form-hero__subtitle {
    color: rgba(255, 255, 255, .9);
    font-size: 1.375rem; /* 22px */
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 2rem;
}
.dpn-form-hero__features { margin-bottom: .75rem; }
.dpn-form-hero__features li {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .75rem;
    color: #fff;
}
.dpn-form-hero__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, .15);
    border-radius: 50%;
    color: #fff;
}
.dpn-form-hero__icon svg {
    width: 28px;
    height: 28px;
}
.dpn-form-hero__feature-text {
    font-size: 1.5rem; /* 24px */
    font-weight: 500;
}
.dpn-form-hero__note {
    color: rgba(255, 255, 255, .8);
    font-size: .9rem;
    margin: 0;
}
.dpn-form-hero__form-heading {
    color: #fff;
    font-size: 2.25rem; /* 36px */
    font-weight: 500;
    margin-bottom: .25rem;
    text-align: center;
}
.dpn-form-hero__form-col iframe {
    display: block;
    width: 100%;
    border: 0;
}

.dpn-form-hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 100px;
    line-height: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}
.dpn-form-hero__wave svg {
    display: block;
    position: relative;
    left: 13%;
    width: 260%;
    height: 100px;
    transform: translateX(-50%) rotate(180deg);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, .25));
}
.dpn-form-hero__wave svg path { fill: var(--dpn-bg); }

@media (max-width: 991.98px) {
    .dpn-form-hero { padding: 3rem 0 5rem; text-align: center; }
    .dpn-form-hero__title { font-size: 2rem; }
    .dpn-form-hero__subtitle { font-size: 1.125rem; }
    .dpn-form-hero__features li { justify-content: center; }
    .dpn-form-hero__wave, .dpn-form-hero__wave svg { height: 70px; }
}

/* --- Section: Services page (Why Businesses Choose override) ----------- */
.dpn-services-why .dpn-why__list,
.dpn-services-why .dpn-why__list li {
    font-size: 1.125rem; /* 18px */
}
.dpn-services-why .dpn-why__image img {
    max-width: 480px;
    border-radius: 120px 120px 325px 170px;
}

/* --- Section: Services page (FAQ accordion) ---------------------------- */
.dpn-services-faq .dpn-section__eyebrow { font-size: 1.375rem; /* 22px */ }
.dpn-services-faq .dpn-section__title {
    font-size: 3rem; /* 48px */
    font-weight: 700;
}
.dpn-services-faq .btn-accent::after { top: -0.07em; }

.dpn-faq {
    --bs-accordion-active-bg: #fff;
    --bs-accordion-active-color: var(--dpn-text);
    --bs-accordion-border-color: transparent;
    --bs-accordion-border-width: 0;
    --bs-accordion-border-radius: 6px;
    --bs-accordion-inner-border-radius: 6px;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 .2rem rgba(255, 93, 15, .15);
    --bs-accordion-btn-padding-y: 1.5rem;
    --bs-accordion-btn-padding-x: 1.75rem;
    --bs-accordion-body-padding-y: 1.5rem;
    --bs-accordion-body-padding-x: 1.75rem;
    --bs-accordion-color: var(--dpn-text);
    --bs-accordion-bg: #fff;
}
.dpn-faq .accordion-item {
    margin-bottom: 1rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}
.dpn-faq .accordion-item:last-child { margin-bottom: 0; }
.dpn-faq .accordion-button { border-radius: 6px; }
.dpn-faq .accordion-button.collapsed { border-radius: 6px; }
.dpn-faq .accordion-button:not(.collapsed) {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.dpn-faq .accordion-button {
    font-weight: 500;
    font-size: 1.375rem; /* 22px */
    color: var(--dpn-text);
    transition: font-weight .15s ease, color .15s ease;
}
.dpn-faq .accordion-button:hover { font-weight: 600; }
.dpn-faq .accordion-button:not(.collapsed) {
    color: var(--dpn-text);
    background: #fff;
}
.dpn-faq .accordion-body {
    color: var(--dpn-text);
    font-size: 1.125rem; /* 18px */
    line-height: 1.5;
}
.dpn-faq .accordion-body p:last-child { margin-bottom: 0; }
.dpn-faq .accordion-body a {
    color: var(--dpn-accent);
    font-weight: 500;
    text-decoration: none;
    transition: font-weight .15s ease;
}
.dpn-faq .accordion-body a:hover { font-weight: 600; text-decoration: none; }

/* --- Section: Services page (3 pillars + images) ----------------------- */
.dpn-services-pillar { margin-bottom: 6rem; }
.dpn-services-pillar:last-child { margin-bottom: 0; }
.dpn-services-pillar p {
    font-size: 1.125rem;
    color: var(--dpn-text);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}
.dpn-services-pillar__cta {
    font-size: 1rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
}
.dpn-services-pillars__images img {
    display: inline-block;
    width: 100%;
    height: auto;
}
.dpn-services-pillars__illustration {
    max-width: 360px;
    margin-bottom: 2rem;
    border-radius: 268px 72px 72px 72px;
    filter: drop-shadow(0 -6px 14px rgba(0, 0, 0, .15));
}
.dpn-services-pillars__photo {
    max-width: 700px;
    border-radius: 120px 120px 325px 120px;
    filter: drop-shadow(0 -6px 14px rgba(0, 0, 0, .15));
    margin-top: -6rem;
    position: relative;
    z-index: 2;
}

/* --- Section: About Us page ---------------------------------------------- */
.dpn-about-page__intro-image img {
    width: 100%;
    height: auto;
    border-radius: 195px 105px 105px 105px;
    filter: drop-shadow(0 -6px 14px rgba(0, 0, 0, .15));
}

/* Section title overrides scoped to the about-us intro + pillar columns */
.dpn-about-page__intro .dpn-section__title,
.dpn-about-page__pillar .dpn-section__title {
    font-size: 36px;
}
.dpn-section__title.dpn-section__title--text { color: var(--dpn-text); }
.dpn-section__eyebrow.dpn-section__eyebrow--accent { color: var(--dpn-accent); }

/* "Payments You Can Trust" / "Driven by Expertise..." color swap */
.dpn-about-page__pillar .dpn-section__eyebrow {
    color: var(--dpn-accent);
    font-weight: 500;
}
.dpn-about-page__pillar .dpn-section__title { color: var(--dpn-text); }

.dpn-about-page__intro p,
.dpn-about-page__pillar p {
    font-size: 1.375rem; /* 22px */
    line-height: 1.15;
}

/* "Our Services" button needs a slightly different tab offset */
.dpn-about-page__pillar .btn-accent::after { top: -0.07em; }

/* "We..." feature cards — same card treatment as industry tiles */
.dpn-feature {
    background: #fff;
    border-radius: 15px 15px 15px 70px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
    padding: 3.5rem 2.75rem;
    height: 100%;
}
.dpn-feature__title {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--dpn-accent);
    margin-bottom: .5rem;
}
.dpn-feature p {
    font-size: 1.375rem; /* 22px */
    color: var(--dpn-text);
    line-height: 1.15;
    margin: 0;
}
@media (max-width: 991.98px) {
    .dpn-about-page__intro { text-align: center; }
    .dpn-about-page__intro-image { margin-top: 1.5rem; }
    .dpn-about-page__intro-image img { max-width: 480px; }
    .dpn-about-page__pillar { text-align: center; }
}
@media (max-width: 575.98px) {
    .dpn-about-page__intro .dpn-section__title,
    .dpn-about-page__pillar .dpn-section__title { font-size: 24px; }
    .dpn-about-page__intro p,
    .dpn-about-page__pillar p,
    .dpn-feature p { font-size: 1rem; line-height: 1.45; }
}

/* --- Page hero (banner used on legal/content pages) -------------------- */
.dpn-page-hero {
    position: relative;
    background: linear-gradient(126deg, var(--dpn-accent) 0%, var(--dpn-accent-2) 90%);
    color: #fff;
    padding: 5rem 0 8rem;
    overflow: hidden;
}
.dpn-page__title {
    font-size: 97px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    margin: 0;
}
.dpn-page-hero__subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, .9);
    text-align: center;
    margin: 1.25rem 0 0;
}
@media (max-width: 575.98px) {
    .dpn-page-hero__subtitle { font-size: 1rem; }
}
.dpn-page-hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 100px;
    line-height: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}
.dpn-page-hero__wave svg {
    display: block;
    position: relative;
    left: 22%; /* tuned visually; pairs with width:260% */
    width: 260%;
    height: 100px;
    transform: translateX(-50%) rotate(180deg);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, .25));
}
.dpn-page-hero__wave svg path { fill: var(--dpn-bg); }
@media (max-width: 991.98px) {
    .dpn-page-hero { padding: 3.5rem 0 5rem; }
    .dpn-page-hero__wave, .dpn-page-hero__wave svg { height: 70px; }
}
@media (max-width: 575.98px) {
    .dpn-page-hero { padding: 2.5rem 0 4rem; }
    .dpn-page__title { font-size: 30px; }
}

/* --- Prose (for legal/article body content) ---------------------------- */
.dpn-prose {
    max-width: 760px;
    margin: 0 auto;
    color: var(--dpn-text);
    font-size: 1.125rem; /* 18px */
    line-height: 1.4;
}
.dpn-prose > * + * { margin-top: 1rem; }
.dpn-prose h2 {
    font-size: 1.25rem; /* 20px */
    font-weight: 500;
    color: var(--dpn-text);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.dpn-prose h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dpn-text);
    margin-top: 2rem;
    margin-bottom: .75rem;
}
.dpn-prose ul, .dpn-prose ol {
    padding-left: 1.5rem;
    margin-top: .5rem;
    margin-bottom: 1.5rem;
}
.dpn-prose li { margin-bottom: 0; }
.dpn-prose a {
    color: var(--dpn-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.dpn-prose a:hover { color: #cc4607; }
.dpn-prose strong { font-weight: 700; }

/* --- Hero ---------------------------------------------------------------- */
.dpn-hero {
    position: relative;
    background: linear-gradient(126deg, var(--dpn-accent) 0%, var(--dpn-accent-2) 90%);
    color: #fff;
    padding: 5rem 0 7rem;
}
.dpn-hero__row { min-height: 520px; }
.dpn-hero__image {
    position: relative;
    z-index: 2;
}
.dpn-hero__image img {
    margin-bottom: -3rem;
}

.dpn-hero__eyebrow {
    font-size: 26px;
    font-weight: 400;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 1rem;
}
.dpn-hero__title {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.25rem;
}
.dpn-hero__lead {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
    max-width: 32rem;
}
.dpn-hero__cta {
    font-weight: 700;
    font-size: 1.5rem;
    padding: 1rem 2.5rem;
}

.dpn-hero__image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    transform: scale(1.3);
    transform-origin: center center;
}

.dpn-hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 100px;
    line-height: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}
.dpn-hero__wave svg {
    display: block;
    position: relative;
    left: 13%; /* tuned to visually match live; pairs with width:260% */
    width: 260%;
    height: 100px;
    transform: translateX(-50%) rotate(180deg);
    /* drop-shadow follows the wave path shape; y is flipped because of
       the 180deg rotate, so a positive value here renders below the
       wave in screen space */
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, .25));
}
.dpn-hero__wave svg path { fill: var(--dpn-bg); }

@media (max-width: 991.98px) {
    .dpn-hero { padding: 2.5rem 0 4rem; text-align: center; }
    .dpn-hero__row { min-height: 0; }
    .dpn-hero__lead { margin-left: auto; margin-right: auto; }
    .dpn-hero__title { font-size: 40px; }
    .dpn-hero__image img { transform: scale(1.05); margin-bottom: -2rem; }
    .dpn-hero__wave { height: 70px; }
    .dpn-hero__wave svg { height: 70px; }
    .dpn-hero__cta { font-size: 1.25rem; padding: .75rem 2rem; }
}
@media (max-width: 767.98px) {
    .dpn-hero__eyebrow { display: none; }
}
@media (max-width: 575.98px) {
    .dpn-hero { padding: 2rem 0 3rem; }
    .dpn-hero__title { font-size: 24px; line-height: 1.2; }
    .dpn-hero__lead { font-size: 1rem; margin-bottom: 1.25rem; }
    .dpn-hero__cta { font-size: 1rem; padding: .35rem .9rem; }
    .dpn-hero__image img { margin-bottom: -4rem; }
}

/* --- Shared section primitives ----------------------------------------- */
.dpn-section__eyebrow {
    font-size: 1.3125rem; /* 21px */
    font-weight: 300;
    color: var(--dpn-text);
    line-height: 1.15;
    margin-bottom: .75rem;
}
.dpn-section__title {
    font-size: 2.3125rem; /* 37px */
    font-weight: 500;
    color: var(--dpn-accent);
    line-height: 1.05;
    margin-bottom: 1rem;
}
.dpn-section__lead {
    font-size: 1.375rem; /* 22px */
    color: var(--dpn-text);
    line-height: 1.1;
    margin-bottom: 1.25rem; /* 20px */
}
.dpn-section__cta {
    font-weight: 500;
    font-size: 1.25rem;
    padding: .85rem 2.25rem;
}

@media (max-width: 575.98px) {
    .dpn-section__title { font-size: 1.25rem; line-height: 1.3; }
    .dpn-section__eyebrow { font-size: 1rem; }
    .dpn-section__lead { font-size: 1rem; }
    .dpn-section__cta { font-size: 1.05rem; padding: .55rem 1.5rem; }
}

/* --- Section: About / Maria -------------------------------------------- */
.dpn-about__image img {
    width: 100%;
    height: auto;
    border-radius: 120px 120px 325px 120px;
    filter: drop-shadow(0 -4px 10px rgba(0, 0, 0, .15));
}
@media (max-width: 991.98px) {
    .dpn-about { text-align: center; }
    .dpn-about__image { text-align: right; }
    .dpn-about__image img { width: 75%; max-width: 480px; }
}

/* --- Section: Why Businesses Choose DirectPayNet ----------------------- */
.dpn-why .dpn-section__title {
    text-align: center;
    margin-bottom: 2rem;
}
.dpn-why__list {
    font-size: 1.375rem; /* 22px, matches section lead */
    line-height: 1.5;
    color: var(--dpn-text);
    padding-left: 1.5rem;
    margin-bottom: 0;
}
.dpn-why__list li { margin-bottom: .5rem; }
.dpn-why__list strong { font-weight: 600; }
.dpn-why__lead {
    font-size: 1.375rem; /* 22px, matches dpn-why__list */
    line-height: 1.5;
    color: var(--dpn-text);
}
@media (max-width: 767.98px) {
    .dpn-why__lead { font-size: 1rem; /* 16px */ }
}
.dpn-why__image img {
    width: 100%;
    max-width: 80%;
    height: auto;
    border-radius: 160px 160px 220px 435px;
    filter: drop-shadow(0 -8px 16px rgba(0, 0, 0, .3));
}
@media (max-width: 991.98px) {
    .dpn-why { text-align: center; }
    .dpn-why__list { display: inline-block; text-align: left; }
    .dpn-why__image { text-align: right; }
    .dpn-why__image img { max-width: 75%; }
}
@media (max-width: 575.98px) {
    .dpn-why__list { font-size: 1rem; }
}

/* --- Section: Our Merchant Services (carousel) ------------------------- */
.dpn-services .dpn-section__eyebrow,
.dpn-industries .dpn-section__eyebrow { font-weight: 400; }
.dpn-services__header .dpn-section__title { margin-bottom: 0; }

.dpn-services__carousel {
    position: relative;
    padding: 0 4rem;
}
.dpn-services__carousel .carousel-inner {
    min-height: 540px;
}
.dpn-services__slide {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 1rem 4rem;
}
.dpn-services__slide-title {
    font-size: 3rem; /* 48px */
    font-weight: 700;
    color: var(--dpn-text);
    margin-bottom: 1rem;
}
.dpn-services__slide-text {
    font-size: 1.75rem; /* 28px */
    color: var(--dpn-text);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}
.dpn-services__slide-cta {
    --bs-btn-bg: transparent;
    --bs-btn-color: var(--dpn-accent);
    --bs-btn-border-color: var(--dpn-accent);
    --bs-btn-hover-bg: var(--dpn-accent);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-border-color: var(--dpn-accent);
    --bs-btn-active-bg: var(--dpn-accent);
    --bs-btn-active-color: #fff;
    --bs-btn-active-border-color: var(--dpn-accent);
    border-width: 4px;
    font-weight: 700;
    font-size: 1.5rem; /* 24px */
    padding: .6rem 1.75rem;
    filter: none; /* hollow button doesn't need the drop-shadow */
}
.dpn-services__slide-cta:hover { filter: none; }

.dpn-services__carousel .carousel-control-prev,
.dpn-services__carousel .carousel-control-next {
    width: 3rem;
    opacity: .8;
}
.dpn-services__carousel .carousel-control-prev-icon,
.dpn-services__carousel .carousel-control-next-icon {
    background-color: var(--dpn-accent);
    border-radius: 50%;
    padding: 1rem;
    background-size: 60% 60%;
    width: 2.5rem;
    height: 2.5rem;
}
.dpn-services__carousel .carousel-indicators {
    bottom: 0;
    margin-bottom: 0;
}
.dpn-services__carousel .carousel-indicators [data-bs-target] {
    background-color: var(--dpn-accent);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    margin: 0 .25rem;
    opacity: .4;
}
.dpn-services__carousel .carousel-indicators .active { opacity: 1; }

@media (max-width: 991.98px) {
    .dpn-services__header { text-align: center; }
    .dpn-services__header .text-lg-end { margin-top: 1rem; }
    .dpn-services__carousel { padding: 0 2.5rem; }
    .dpn-services__carousel .carousel-inner { min-height: 440px; }
    .dpn-services__slide { padding: 1.5rem .5rem 3.5rem; }
    .dpn-services__slide-title { font-size: 1.5rem; }
    .dpn-services__slide-text { font-size: 1.05rem; }
}

/* --- Section: Built for Your Business (industries grid) --------------- */
.dpn-industries__tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    aspect-ratio: 4 / 3;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    text-decoration: none;
    padding: 1.5rem;
    background: #fff;
    border-radius: 15px 15px 15px 70px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
    transition: transform .15s ease, box-shadow .15s ease;
}
.dpn-industries__tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
}
.dpn-industries__icon { line-height: 0; }
.dpn-industries__icon svg {
    width: 141px;  /* 1.5x of the 94px default */
    height: 141px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, .3));
}
.dpn-industries__name {
    font-size: 1.5rem; /* 24px */
    font-weight: 500;
    color: var(--dpn-accent);
    margin: 0;
}

/* --- Section: Testimonials --------------------------------------------- */
.dpn-testimonials .dpn-section__eyebrow { font-weight: 400; }
.dpn-testimonials .dpn-section__title { font-size: 3rem; /* 48px */ font-weight: 700; }
.dpn-testimonials__carousel .carousel-inner {
    min-height: 280px;
}
.dpn-testimonial {
    margin: 0;
    padding: 0 1rem 3rem;
}
.dpn-testimonial__text {
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--dpn-text);
    font-style: italic;
    margin-bottom: 1.25rem;
}
.dpn-testimonial__cite {
    display: block;
    font-style: normal;
}
.dpn-testimonial__name {
    display: block;
    font-weight: 600;
    font-style: italic;
    font-size: 1.125rem;
    color: var(--dpn-accent);
}
.dpn-testimonial__title {
    display: block;
    font-weight: 500;
    font-size: 1rem;
    color: var(--dpn-text);
}
.dpn-testimonials__carousel .carousel-indicators {
    display: none;
}
.dpn-testimonials__carousel .carousel-indicators [data-bs-target] {
    background-color: var(--dpn-accent);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    margin: 0 .25rem;
    opacity: .4;
}
.dpn-testimonials__carousel .carousel-indicators .active { opacity: 1; }
@media (max-width: 991.98px) {
    .dpn-testimonials__intro { text-align: center; }
    .dpn-testimonials .dpn-section__title { font-size: 1.5rem; text-align: center; }
    .dpn-testimonial { padding: 0 .5rem 3rem; }
    .dpn-testimonials__carousel .carousel-inner { min-height: 360px; }
}
@media (max-width: 575.98px) {
    .dpn-testimonial__text { font-size: 1.125rem; }
}

/* --- Section: Contact CTA + form --------------------------------------- */
.dpn-contact {
    position: relative;
    background: linear-gradient(126deg, var(--dpn-accent) 0%, var(--dpn-accent-2) 90%);
    color: #fff;
}
.dpn-contact__wave {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 100px;
    line-height: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}
.dpn-contact__wave svg {
    display: block;
    position: relative;
    left: 84%; /* tuned visually; pairs with width:260% */
    width: 260%;
    height: 100px;
    transform: translateX(-50%);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, .25));
}
.dpn-contact__wave svg path { fill: var(--dpn-bg); }

.dpn-contact__row {
    position: relative;
    z-index: 2;
}

.dpn-contact__title {
    color: #fff;
    font-size: 2.875rem; /* 46px */
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: .5rem;
}
.dpn-contact__eyebrow {
    color: #fff;
    font-size: 1.25rem; /* 20px */
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 4rem;
}

.dpn-contact__phones-heading {
    color: #fff;
    font-size: 2.25rem; /* 36px */
    font-weight: 500;
    margin-bottom: 1rem;
}
.dpn-contact__phones ul {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.dpn-contact__phones li {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: #fff;
}
.dpn-contact__phone-icon {
    width: 22px;
    height: 22px;
    color: var(--dpn-accent);
    background: #fff;
    padding: .3rem;
    border-radius: 50%;
    box-sizing: content-box;
    flex-shrink: 0;
}
.dpn-contact__phone-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.dpn-contact__phone-number {
    font-size: 1.375rem; /* 22px */
    font-weight: 500;
}
.dpn-contact__phone-region {
    font-size: 1.125rem; /* 18px */
    opacity: .85;
}

.dpn-contact__form-heading {
    color: #fff;
    font-size: 2.25rem; /* 36px */
    font-weight: 500;
    text-align: center;
    margin-bottom: 1.25rem;
}
.dpn-contact__form {
    color: var(--dpn-text);
}
.dpn-contact__form iframe {
    display: block;
    width: 100%;
    border: 0;
}

@media (max-width: 991.98px) {
    .dpn-contact { text-align: center; padding-top: 20px; }
    .dpn-contact__title { font-size: 1.75rem; margin-bottom: .5rem; }
    .dpn-contact__eyebrow { font-size: 1.125rem; margin-bottom: 0; }
    .dpn-contact__form-heading { font-size: 1.5rem; }
    .dpn-contact__wave, .dpn-contact__wave svg { height: 70px; }
    .dpn-contact__phones ul { align-items: center; }
    .dpn-contact__phones li { justify-content: center; }

    /* mobile-only reorder: intro / form / phones */
    .dpn-contact__intro-wrap { display: contents; }
    .dpn-contact__intro {
        order: 1;
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: var(--bs-gutter-x, 1.5rem);
        padding-left: var(--bs-gutter-x, 1.5rem);
    }
    .dpn-contact__form-col { order: 2; }
    .dpn-contact__phones {
        order: 3;
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: var(--bs-gutter-x, 1.5rem);
        padding-left: var(--bs-gutter-x, 1.5rem);
        margin-top: 1.5rem;
    }
}
@media (max-width: 575.98px) {
    .dpn-contact__title { font-size: 30px; line-height: 1.2; }
}

/* --- Section: industries link (small standalone) --------------------- */
.dpn-industries-link__heading {
    font-size: 2rem;
    font-weight: 500;
    margin: 0;
}
.dpn-industries-link__heading a {
    color: var(--dpn-accent);
    text-decoration: none;
    transition: font-weight .15s ease;
}
.dpn-industries-link__heading a:hover {
    font-weight: 700;
    text-decoration: none;
}
