.dp-faq-app-cta,
.dp-faq-app-cta * { box-sizing: border-box; }

.dp-faq-app-cta {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 72px 20px;
    background: #fbfaf7;
}

.dp-faq-app-cta__inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    gap: 34px;
}

.dp-faq-app-cta__left,
.dp-faq-app-cta__right { min-width: 0; }

.dp-faq-app-cta__left {
    width: 41%;
    padding: 34px 30px;
    background: #fff;
    border: 1px solid #edf0f4;
    border-radius: 26px;
    box-shadow: 0 16px 40px -30px rgba(6,45,104,.38);
}

.dp-faq-app-cta__left-title-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.dp-faq-app-cta__left-icon {
    width: 68px;
    height: 68px;
    flex: 0 0 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #edf5ff;
    color: #062d68;
}

.dp-faq-app-cta__left-icon i { font-size: 33px; }
.dp-faq-app-cta__left-icon svg { width: 33px; height: 33px; fill: #062d68; }

.dp-faq-app-cta__left-heading {
    color: #062d68;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 29px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -.02em;
}

.dp-faq-app-cta__faqs {
    border: 1px solid #d7e1ee;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
}

.dp-faq-app-cta__faq {
    position: relative;
    border-bottom: 1px solid #e1e7ef;
}
.dp-faq-app-cta__faq:last-child { border-bottom: 0; }

.dp-faq-app-cta__question-row {
    appearance: none;
    border: 0;
    background: transparent;
    width: 100%;
    padding: 16px 16px 16px 18px;
    display: grid;
    grid-template-columns: 40px minmax(0,1fr) 16px;
    align-items: center;
    gap: 14px;
    text-align: left;
    cursor: pointer;
    color: inherit;
    transition: background-color .2s ease, color .2s ease;
}

/* Override theme/Elementor global button hover/focus colours for this FAQ only. */
.dp-faq-app-cta .dp-faq-app-cta__question-row:focus,
.dp-faq-app-cta .dp-faq-app-cta__question-row:active {
    background: transparent !important;
    color: inherit !important;
}
.dp-faq-app-cta .dp-faq-app-cta__question-row:focus-visible {
    outline: 2px solid #073e85;
    outline-offset: -2px;
}
.dp-faq-app-cta .dp-faq-app-cta__question-row:hover {
    background: #073e85 !important;
    color: #fff !important;
}
.dp-faq-app-cta .dp-faq-app-cta__question-row:hover .dp-faq-app-cta__question {
    color: #fff !important;
}
.dp-faq-app-cta .dp-faq-app-cta__question-row:hover .dp-faq-app-cta__chevron {
    border-color: #fff !important;
}
.dp-faq-app-cta .dp-faq-app-cta__question-row:hover .dp-faq-app-cta__toggle {
    background: #fff !important;
    color: #073e85 !important;
}
.dp-faq-app-cta .dp-faq-app-cta__question-row:hover .dp-faq-app-cta__toggle svg {
    fill: #073e85 !important;
}

.dp-faq-app-cta__toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eaf2fd;
    color: #062d68;
}
.dp-faq-app-cta__toggle i { font-size: 14px; }
.dp-faq-app-cta__toggle svg { width: 14px; height: 14px; fill: #062d68; }
.dp-faq-app-cta__toggle-open { display: none; }
.dp-faq-app-cta__faq.is-open .dp-faq-app-cta__toggle-closed { display: none; }
.dp-faq-app-cta__faq.is-open .dp-faq-app-cta__toggle-open { display: inline-flex; }

.dp-faq-app-cta__question {
    color: #062d68;
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
}

.dp-faq-app-cta__chevron {
    width: 9px;
    height: 9px;
    border-right: 2px solid #062d68;
    border-bottom: 2px solid #062d68;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .25s ease;
}
.dp-faq-app-cta__faq.is-open .dp-faq-app-cta__chevron { transform: rotate(225deg) translate(-2px,-2px); }

.dp-faq-app-cta__answer {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows .28s ease, opacity .28s ease;
}
.dp-faq-app-cta__faq.is-open .dp-faq-app-cta__answer { grid-template-rows: 1fr; opacity: 1; }
.dp-faq-app-cta__answer > * { overflow: hidden; }
.dp-faq-app-cta__answer-inner {
    margin: 0 18px 18px 62px;
    padding: 22px 24px;
    border-radius: 13px;
    background: #f1f6fd;
    color: #334866;
    font-family: Inter, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.65;
}
.dp-faq-app-cta__answer-inner p:last-child { margin-bottom: 0; }

.dp-faq-app-cta__right {
    width: 59%;
    min-height: 590px;
    position: relative;
    overflow: hidden;
    padding: 64px 54px 54px 44px;
    border-radius: 26px;
    background: linear-gradient(135deg,#073e85 0%,#031d49 100%);
    color: #fff;
    box-shadow: 0 18px 40px -28px rgba(3,29,73,.55);
    display: grid;
    grid-template-columns: minmax(0,1fr) 290px;
    gap: 28px;
    align-items: center;
}

.dp-faq-app-cta__right::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 72% 30%,rgba(14,88,182,.34),transparent 34%);
    pointer-events: none;
}

.dp-faq-app-cta__copy,
.dp-faq-app-cta__app-stack { position: relative; z-index: 3; }

.dp-faq-app-cta__eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 28px;
    color: #58a8ff;
    font-family: Inter,Arial,sans-serif;
    font-size: 16px;
    font-weight: 500;
}
.dp-faq-app-cta__eyebrow-icon { display: inline-flex; }
.dp-faq-app-cta__eyebrow-icon i { font-size: 21px; }
.dp-faq-app-cta__eyebrow-icon svg { width: 21px; height: 21px; fill: #58a8ff; }

.dp-faq-app-cta__cta-heading {
    color: #fff;
    font-family: "Playfair Display",Georgia,serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.02em;
    max-width: 390px;
}

.dp-faq-app-cta__accent-line {
    display: block;
    width: 48px;
    height: 3px;
    margin: 28px 0;
    border-radius: 3px;
    background: #56a5ff;
}

.dp-faq-app-cta__cta-description {
    max-width: 390px;
    color: #fff;
    font-family: Inter,Arial,sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.dp-faq-app-cta__buttons {
    margin-top: 34px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.dp-faq-app-cta__btn {
    min-height: 54px;
    padding: 12px 20px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: Inter,Arial,sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: transform .2s ease, filter .2s ease;
}
.dp-faq-app-cta__btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.dp-faq-app-cta__btn--primary { background: #0d5bd7; color: #fff; min-width: 218px; }
.dp-faq-app-cta__btn--secondary { border: 1px solid #8eb9ef; color: #fff; background: rgba(0,0,0,.08); min-width: 130px; }
.dp-faq-app-cta__btn-icon { display: inline-flex; }
.dp-faq-app-cta__btn-icon i { font-size: 15px; }
.dp-faq-app-cta__btn-icon svg { width: 15px; height: 15px; fill: #fff; }

.dp-faq-app-cta__app-stack {
    width: 290px;
    height: 430px;
    justify-self: end;
    align-self: center;
    transform: rotate(7deg);
}
.dp-faq-app-cta__app-back {
    position: absolute;
    width: 92%;
    height: 95%;
    right: -20px;
    top: 24px;
    border-radius: 20px;
    background: linear-gradient(180deg,#75a8ec,#2b5da7);
    box-shadow: 0 14px 35px -20px rgba(0,0,0,.55);
}
.dp-faq-app-cta__app-card {
    position: absolute;
    inset: 0;
    padding: 42px 36px 32px;
    border-radius: 20px;
    background: #fff;
    color: #062d68;
    box-shadow: 0 18px 35px -20px rgba(0,0,0,.48);
}
.dp-faq-app-cta__app-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #eef5ff;
    color: #062d68;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dp-faq-app-cta__app-icon i { font-size: 25px; }
.dp-faq-app-cta__app-icon svg { width: 25px; height: 25px; fill: #062d68; }
.dp-faq-app-cta__app-title {
    text-align: center;
    font-family: "Playfair Display",Georgia,serif;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.1;
}
.dp-faq-app-cta__app-divider {
    width: 100%;
    height: 1px;
    margin: 24px 0 18px;
    background: #cbd7e7;
}
.dp-faq-app-cta__steps { display: grid; gap: 16px; }
.dp-faq-app-cta__step {
    position: relative;
    padding-bottom: 13px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.dp-faq-app-cta__step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 44px;
    right: 0;
    bottom: 0;
    border-bottom: 1px dashed #d5deea;
}
.dp-faq-app-cta__step-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #073e85;
    color: #fff;
}
.dp-faq-app-cta__step-icon i { font-size: 11px; }
.dp-faq-app-cta__step-icon svg { width: 11px; height: 11px; fill: #fff; }
.dp-faq-app-cta__step-text {
    font-family: "Playfair Display",Georgia,serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
}

.dp-faq-app-cta__dots {
    position: absolute;
    width: 95px;
    height: 95px;
    right: 18px;
    top: 6px;
    z-index: 1;
    opacity: .42;
    background-image: radial-gradient(circle,#2381df 2px,transparent 2.1px);
    background-size: 12px 12px;
}
.dp-faq-app-cta__curve {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    width: 570px;
    height: 300px;
    border: 1px solid rgba(62,130,221,.25);
    border-radius: 50%;
    transform: rotate(-15deg);
}
.dp-faq-app-cta__curve--one { right: 40px; top: 92px; }
.dp-faq-app-cta__curve--two { left: 120px; bottom: -190px; width: 760px; height: 280px; }

@media (max-width: 1200px) {
    .dp-faq-app-cta__right { grid-template-columns: minmax(0,1fr) 230px; padding-right: 34px; }
    .dp-faq-app-cta__app-stack { width: 230px; height: 370px; }
    .dp-faq-app-cta__app-card { padding: 30px 25px; }
    .dp-faq-app-cta__cta-heading { font-size: 34px; }
}

@media (max-width: 1024px) {
    .dp-faq-app-cta__inner { flex-direction: column; }
    .dp-faq-app-cta__left,
    .dp-faq-app-cta__right { width: 100% !important; }
    .dp-faq-app-cta__right { min-height: 560px; grid-template-columns: minmax(0,1fr) 260px; }
    .dp-faq-app-cta__app-stack { width: 250px; height: 390px; }
}

@media (max-width: 767px) {
    .dp-faq-app-cta { padding: 40px 16px; }
    .dp-faq-app-cta__left { padding: 24px 18px; border-radius: 20px; }
    .dp-faq-app-cta__left-title-row { align-items: flex-start; gap: 14px; }
    .dp-faq-app-cta__left-icon { width: 54px; height: 54px; flex-basis: 54px; }
    .dp-faq-app-cta__left-heading { font-size: 25px; }
    .dp-faq-app-cta__question-row { padding: 14px 12px; grid-template-columns: 34px minmax(0,1fr) 14px; gap: 10px; }
    .dp-faq-app-cta__toggle { width: 32px; height: 32px; }
    .dp-faq-app-cta__question { font-size: 14px; }
    .dp-faq-app-cta__answer-inner { margin: 0 12px 14px; padding: 18px; font-size: 14px; }
    .dp-faq-app-cta__right { min-height: 0; padding: 38px 22px 36px; border-radius: 20px; grid-template-columns: 1fr; }
    .dp-faq-app-cta__cta-heading { max-width: none; font-size: 32px; }
    .dp-faq-app-cta__cta-description { max-width: none; }
    .dp-faq-app-cta__buttons { flex-direction: column; align-items: stretch; }
    .dp-faq-app-cta__btn { width: 100%; }
    .dp-faq-app-cta__app-stack { width: min(290px,88%); height: 420px; justify-self: center; margin: 20px auto 5px; }
}
