
html:has(body.dsa-landing-page) {
    overflow-x: clip;
}

body.dsa-landing-page {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    background: #fff !important;
}

body.dsa-landing-page > .wp-site-blocks,
body.dsa-landing-page #page,
body.dsa-landing-page #content,
body.dsa-landing-page .site,
body.dsa-landing-page .site-content,
body.dsa-landing-page .content-area,
body.dsa-landing-page main,
body.dsa-landing-page article,
body.dsa-landing-page .entry-content,
body.dsa-landing-page .wp-block-post-content {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.dsa-landing-page .wp-block-post-title,
body.dsa-landing-page .entry-title,
body.dsa-landing-page .page-title {
    display: none !important;
}

.dsa-landing,
.dsa-landing * {
    box-sizing: border-box;
}

.dsa-landing {
    --dsa-primary: #080b72;
    --dsa-accent: #006bb6;
    --dsa-soft: #f7f8fc;
    --dsa-text: #111326;
    --dsa-muted: #6c7284;
    --dsa-coral: #ff6f73;
    --dsa-border: #e7e9f1;
    --dsa-shadow: 0 18px 55px rgba(24, 31, 72, .08);
    width: 100%;
    max-width: none !important;
    margin: 0 !important;
    overflow: hidden;
    direction: rtl;
    background: #fff;
    color: var(--dsa-text);
    font-family: Vazirmatn, IRANSansX, IRANSans, Tahoma, Arial, sans-serif;
    line-height: 1.8;
    text-align: right;
}

.dsa-landing a {
    color: inherit;
    text-decoration: none;
}

.dsa-landing img,
.dsa-landing svg {
    display: block;
}

.dsa-landing img {
    max-width: 100%;
}

.dsa-landing button,
.dsa-landing input {
    /* font: revert; */
    font-size: 14px;
}

.dsa-container {
    width: min(1180px, calc(100% - 56px));
    margin-inline: auto;
}

.dsa-section {
    padding: 112px 0;
}

/* Header */
.dsa-header {
    position: relative;
    z-index: 50;
    height: 78px;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid #eef0f5;
}

.dsa-header-inner {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
}

.dsa-brand {
    display: inline-flex;
    width: max-content;
    align-items: center;
    justify-self: center;
    line-height: 1;
    color: var(--dsa-primary);
}

.dsa-brand img {
    display: block;
    width: 215px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    image-rendering: auto;
    transform: none;
    filter: none;
}

.dsa-nav {
    justify-self: start;
}

.dsa-nav-list,
.dsa-footer-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dsa-nav-list {
    display: flex;
    align-items: center;
    gap: 34px;
}

.dsa-nav-list a {
    position: relative;
    display: inline-flex;
    padding: 8px 0;
    color: #343748;
    font-size: 13px;
    font-weight: 600;
    transition: color .25s ease;
}

.dsa-nav-list a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: var(--dsa-primary);
    transition: width .25s ease;
}

.dsa-nav-list a:hover,
.dsa-nav-list .current-menu-item > a {
    color: var(--dsa-primary);
}

.dsa-nav-list a:hover::after,
.dsa-nav-list .current-menu-item > a::after {
    width: 100%;
}

.dsa-header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dsa-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 1px solid var(--dsa-border);
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
}

.dsa-menu-toggle span {
    display: block;
    height: 2px;
    margin: 4px 0;
    background: var(--dsa-primary);
    transition: transform .25s ease, opacity .25s ease;
}

.dsa-menu-overlay,
.dsa-mobile-nav-head,
.dsa-mobile-nav-label,
.dsa-mobile-nav-footer {
    display: none;
}

.dsa-menu-lock {
    overflow: hidden;
}

/* Buttons */
.dsa-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.dsa-actions-center {
    justify-content: center;
}

.dsa-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border: 1px solid transparent;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.dsa-button:hover {
    transform: translateY(-2px);
}

.dsa-button-primary {
    color: #fff !important;
    background: var(--dsa-primary);
    border-color: var(--dsa-primary);
    box-shadow: 0 12px 26px rgba(8, 11, 114, .17);
}

.dsa-button-primary:hover {
    background: #10158d;
    box-shadow: 0 16px 30px rgba(8, 11, 114, .23);
}

.dsa-button-outline {
    color: var(--dsa-primary) !important;
    background: transparent;
    border-color: var(--dsa-primary);
}

.dsa-button-outline:hover {
    color: #fff !important;
    background: var(--dsa-primary);
}

.dsa-button-white {
    color: var(--dsa-primary) !important;
    background: #fff;
    border-color: #fff;
}

.dsa-button-ghost {
    color: #fff !important;
    background: rgba(255,255,255,.03);
    border-color: rgba(255,255,255,.75);
}

.dsa-button-ghost:hover {
    color: var(--dsa-primary) !important;
    background: #fff;
}

.dsa-button-small {
    min-height: 38px;
    padding: 8px 17px;
    font-size: 11px;
}

/* Hero */
.dsa-hero {
    min-height: 640px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #f2f3fb;
}

.dsa-hero-content {
    position: relative;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f6f7fc;
}

.dsa-hero-dots,
.dsa-process-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(8,11,114,.13) 1px, transparent 1px);
    background-size: 16px 16px;
}

.dsa-hero-dots {
    opacity: .5;
    mask-image: linear-gradient(to left, #000, transparent 88%);
}

.dsa-hero-inner {
    position: relative;
    z-index: 2;
    width: min(520px, calc(100% - 80px));
    margin-right: auto;
    margin-left: 70px;
}

.dsa-hero h1 {
    margin: 0;
    color: var(--dsa-primary);
    font-family: Tahoma, Vazirmatn, sans-serif;
    font-size: clamp(48px, 4.2vw, 76px);
    font-weight: 900;
    line-height: 1.33;
    letter-spacing: -.055em;
}

.dsa-hero p {
    max-width: 560px;
    margin: 25px 0 0;
    color: #676d80;
    font-size: 15px;
    line-height: 2;
}

.dsa-hero-media {
    position: relative;
    min-width: 0;
    min-height: 640px;
    overflow: hidden;
    background: #dfe2f1;
}

.dsa-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset -1px 0 rgba(255,255,255,.45);
    pointer-events: none;
}

.dsa-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Ticker */
.dsa-ticker {
    position: relative;
    width: 100%;
    height: 42px;
    overflow: hidden;
    color: #fff;
    background: var(--dsa-primary);
    border-top: 1px solid rgba(255,255,255,.15);
    direction: ltr;
}

.dsa-ticker-track {
    position: absolute;
    top: 0;
    left: 0;
    width: max-content;
    min-width: max-content;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    white-space: nowrap;
    direction: ltr;
    will-change: transform;
    transform: translate3d(0,0,0);
}

.dsa-ticker-track.is-running {
    animation: dsaTicker var(--dsa-ticker-duration, 24s) linear infinite;
}

.dsa-ticker-group {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
    margin: 0;
    direction: ltr;
}

.dsa-ticker-item {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    padding-inline: 30px;
    font-size: 11px;
    line-height: 1;
    opacity: .96;
    direction: rtl;
    unicode-bidi: plaintext;
}

.dsa-ticker-item::after {
    content: "•";
    position: absolute;
    inset-inline-end: -2px;
    opacity: .72;
    direction: ltr;
}

@keyframes dsaTicker {
    from { transform: translate3d(0,0,0); }
    to { transform: translate3d(calc(-1 * var(--dsa-ticker-shift, 500px)),0,0); }
}

/* About */
.dsa-about {
    background: #fff;
}

.dsa-about-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 100px;
}

.dsa-about-media {
    position: relative;
    min-height: 520px;
}

.dsa-about-media img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
}

.dsa-image-frame {
    position: absolute;
    z-index: 1;
    right: -20px;
    top: 22px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(8,11,114,.12);
}

.dsa-about-content {
    max-width: 530px;
}

.dsa-eyebrow {
    display: block;
    margin-bottom: 13px;
    color: var(--dsa-accent);
    font-size: 12px;
    font-weight: 800;
}

.dsa-about h2,
.dsa-section-heading-front h2,
.dsa-cta h2 {
    margin: 0;
    color: #10111a;
    font-size: clamp(31px, 3vw, 48px);
    font-weight: 900;
    line-height: 1.45;
    letter-spacing: -.035em;
}

.dsa-about-content > p {
    margin: 22px 0 0;
    color: var(--dsa-muted);
    font-size: 14px;
    line-height: 2.15;
}

/* Section headings */
.dsa-section-heading-front {
    max-width: 760px;
    margin: 0 auto 54px;
    text-align: center;
}

.dsa-section-heading-front h2 {
    font-size: clamp(30px, 3vw, 46px);
}

.dsa-section-heading-front p {
    margin: 13px auto 0;
    color: var(--dsa-muted);
    font-size: 14px;
    line-height: 2;
}

.dsa-section-heading-front.is-light h2 {
    color: #fff;
}

.dsa-section-heading-front.is-light p {
    color: rgba(255,255,255,.65);
}

/* Challenges */
.dsa-challenges {
    background: var(--dsa-soft);
}

.dsa-challenge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.dsa-challenge-card {
    min-height: 170px;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--dsa-border);
    text-align: center;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.dsa-challenge-card:hover {
    transform: translateY(-7px);
    border-color: rgba(8,11,114,.22);
    box-shadow: var(--dsa-shadow);
}

.dsa-card-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--dsa-primary);
    background: rgba(8,11,114,.075);
}

.dsa-card-icon svg {
    width: 24px;
    height: 24px;
}

.dsa-card-icon img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    display: block;
}

.dsa-icon-coral {
    color: #ff5d65;
    background: #fff0f1;
}

.dsa-challenge-card h3 {
    margin: 18px 0 0;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.9;
    max-width: 230px;
}

/* Process */
.dsa-process {
    position: relative;
    overflow: hidden;
    min-height: 980px;
    color: #fff;
    background: #080b72;
}

.dsa-process-pattern {
    opacity: .34;
    background-image: radial-gradient(circle, rgba(255,255,255,.20) 1px, transparent 1px);
    background-size: 18px 18px;
    mask-image: none;
}

.dsa-process-container {
    position: relative;
    z-index: 2;
}

.dsa-process .dsa-section-heading-front {
    max-width: 840px;
    margin: 0 auto 62px;
}

.dsa-process .dsa-section-heading-front h2 {
    font-size: clamp(42px, 4vw, 64px);
    line-height: 1.3;
}

.dsa-process .dsa-section-heading-front p {
    margin-top: 15px;
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255,255,255,.62);
}

.dsa-timeline {
    --dsa-timeline-line-length: 182px;
    --dsa-timeline-text-gap: 42px;
    position: relative;
    width: min(1110px, 100%);
    margin: 0 auto;
    padding: 10px 0 14px;
    direction: ltr;
}

.dsa-timeline::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    right: 50%;
    width: 1px;
    background: rgba(255,255,255,.58);
}

.dsa-timeline-item {
    position: relative;
    min-height: 147px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.dsa-timeline-content {
    position: relative;
    width: calc(100% - var(--dsa-timeline-line-length) - var(--dsa-timeline-text-gap));
    max-width: 350px;
    padding: 0;
    direction: rtl;
}

.dsa-timeline-item.is-right .dsa-timeline-content {
    grid-column: 2;
    justify-self: start;
    margin-left: calc(var(--dsa-timeline-line-length) + var(--dsa-timeline-text-gap));
    text-align: right;
}

.dsa-timeline-item.is-left .dsa-timeline-content {
    grid-column: 1;
    justify-self: end;
    margin-right: calc(var(--dsa-timeline-line-length) + var(--dsa-timeline-text-gap));
    text-align: right;
}

.dsa-timeline-dot {
    position: absolute;
    z-index: 4;
    top: 17px;
    right: calc(50% - 6px);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 8px rgba(8,11,114,.95);
}

.dsa-timeline-dot::before {
    content: "";
    position: absolute;
    inset: -8px;
    border: 1px dashed rgba(255,255,255,.75);
    border-radius: 50%;
}

.dsa-timeline-line {
    position: absolute;
    top: 22px;
    width: var(--dsa-timeline-line-length);
    height: 1px;
    background: rgba(255,255,255,.72);
}

.dsa-timeline-line::after {
    content: "";
    position: absolute;
    top: -3px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
}

.dsa-timeline-item.is-right .dsa-timeline-line {
    left: 50%;
}

.dsa-timeline-item.is-right .dsa-timeline-line::after {
    right: -1px;
}

.dsa-timeline-item.is-left .dsa-timeline-line {
    right: 50%;
}

.dsa-timeline-item.is-left .dsa-timeline-line::after {
    left: -1px;
}

.dsa-step-number {
    display: none;
}

.dsa-timeline-content h3 {
    margin: 0;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.45;
}

.dsa-timeline-content p {
    margin: 12px 0 0;
    color: rgba(255,255,255,.66);
    font-size: 16px;
    line-height: 1.9;
}

/* Results */
.dsa-results {
    background: #fff;
}

.dsa-results-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.dsa-result-card {
    position: relative;
    min-height: 230px;
    padding: 30px 34px 28px;
    display: block;
    background: #fff;
    border: 1px solid var(--dsa-border);
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.dsa-result-card:nth-child(1),
.dsa-result-card:nth-child(2) {
    grid-column: span 3;
}

.dsa-result-card:nth-child(n+3) {
    grid-column: span 2;
}

.dsa-result-card:hover {
    transform: translateY(-5px);
    border-color: rgba(8,11,114,.2);
    box-shadow: var(--dsa-shadow);
}

.dsa-result-card .dsa-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--dsa-primary);
    background: transparent;
}

.dsa-result-card .dsa-card-icon svg,
.dsa-result-card .dsa-card-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    padding-top: 8px;
}

.dsa-result-card h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.7;
}

.dsa-result-card p {
    margin: 10px auto 0;
    max-width: 330px;
    color: var(--dsa-muted);
    font-size: 14px;
    line-height: 2.05;
}

/* FAQ */
.dsa-faq {
    background: var(--dsa-soft);
}

.dsa-faq-container {
    max-width: 960px;
}

.dsa-accordion {
    display: grid;
    gap: 12px;
}

.dsa-faq-item {
    overflow: hidden;
    background: #fff;
    border: 1px solid transparent;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.dsa-faq-item.is-open {
    border-color: rgba(8,11,114,.12);
    box-shadow: 0 15px 35px rgba(24,31,72,.05);
}

.dsa-faq-question {
    width: 100%;
    min-height: 52px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 0;
    color: #202235;
    background: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.8;
    text-align: right;
    cursor: pointer;
}

.dsa-faq-label {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-size: 18px;
    font-weight: 600;
}

.dsa-faq-mini-icon {
    color: var(--dsa-primary);
}

.dsa-faq-mini-icon svg {
    width: 20px;
    height: 20px;
}

.dsa-faq-toggle {
    width: 26px;
    height: 15px;
    flex: 0 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dsa-faq-toggle img {
    width: 15px;
    height: 15px;
    object-fit: contain;
    display: block;
}

.dsa-faq-toggle-open {
    display: none !important;
}

.dsa-faq-item.is-open .dsa-faq-toggle-closed {
    display: none !important;
}

.dsa-faq-item.is-open .dsa-faq-toggle-open {
    display: block !important;
}

.dsa-faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .32s ease;
}

.dsa-faq-answer > div {
    overflow: hidden;
}

.dsa-faq-item.is-open .dsa-faq-answer {
    grid-template-rows: 1fr;
}

.dsa-faq-answer p {
    margin: 0;
    padding: 0 52px 24px 22px;
    color: var(--dsa-muted);
    font-size: 15px;
    line-height: 2.1;
}

/* CTA */
.dsa-cta {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    background-image: var(--dsa-cta-image);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.dsa-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.76), rgba(0,0,0,.5), rgba(0,0,0,.76));
}

.dsa-cta-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    text-align: center;
}

.dsa-cta h2 {
    color: #fff;
    font-size: clamp(36px, 4vw, 58px);
}

.dsa-cta p {
    max-width: 660px;
    margin: 16px auto 0;
    color: rgba(255,255,255,.78);
    font-size: 14px;
}

/* Footer */
.dsa-footer {
    background: #fff;
}

.dsa-footer-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr 1fr;
    gap: 80px;
    padding-top: 72px;
    padding-bottom: 65px;
}

.dsa-footer .dsa-brand {
    align-items: flex-start;
    justify-self: start;
}

.dsa-footer .dsa-brand img {
    width: 225px;
}

.dsa-footer-brand p,
.dsa-footer-contact p {
    margin: 20px 0 0;
    color: var(--dsa-muted);
    font-size: 14px;
    line-height: 2.15;
}

.dsa-footer-brand p {
    max-width: 330px;
}

.dsa-footer h3 {
    margin: 0 0 18px;
    font-size: 13px;
    font-weight: 900;
}

.dsa-footer-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
}

.dsa-footer-menu a {
    color: rgba(7, 7, 7, 1);
    font-size: 12px;
    font-weight: 700;
}

.dsa-footer-menu a:hover {
    color: var(--dsa-primary);
}

.dsa-footer-contact {
    width: 100%;
    max-width: 445px;
    justify-self: start;
    text-align: center;
}

.dsa-footer-contact h3 {
    margin: 0;
    color: #a4a1a1;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.6;
}

.dsa-footer-contact > p {
    margin: 6px 0 0;
    color: #101010;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.8;
}

.dsa-newsletter-form {
    position: relative;
    max-width: 400px;
    margin: 14px auto 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 78px;
    align-items: center;
    gap: 8px;
    direction: rtl;
}

.dsa-newsletter-field {
    position: relative;
    min-width: 0;
    display: block;
}

.dsa-newsletter-field input {
    width: 100%;
    height: 40px;
    margin: 0;
    padding: 7px 42px 7px 14px;
    border: 1px solid #e7e7e7;
    border-radius: 9px;
    outline: none;
    background: #fafafa;
    color: #171717;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    text-align: right;
    box-shadow: 0 3px 10px rgba(17,17,127,.04);
    transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.dsa-newsletter-field input::placeholder {
    color: #aaa;
    opacity: 1;
}

.dsa-newsletter-field input:focus {
    border-color: rgba(8,11,114,.35);
    background: #fff;
    box-shadow: 0 6px 18px rgba(17,17,127,.08);
}

.dsa-newsletter-phone-icon {
    position: absolute;
    z-index: 2;
    right: 14px;
    top: 50%;
    width: 20px;
    height: 20px;
    pointer-events: none;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5.587 4.5h2.326c.395 0 .738.275.824.66l.65 2.922a.843.843 0 0 1-.243.81l-1.474 1.474a13.47 13.47 0 0 0 5.964 5.964l1.474-1.474a.843.843 0 0 1 .81-.243l2.922.65c.385.086.66.429.66.824v2.326a1.087 1.087 0 0 1-1.087 1.087H18.25C10.932 20.5 5 14.568 5 7.25V5.587C5 4.987 5.487 4.5 6.087 4.5Z' stroke='%2311117F' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.dsa-footer-button {
    width: 78px;
    min-width: 0;
    min-height: 34px;
    height: 34px;
    margin: 0;
    padding: 6px 8px;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    color: #fff !important;
    background: linear-gradient(180deg, #13178a 0%, #0f1175 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font: inherit;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 3px 9px rgba(17,17,127,.12);
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.dsa-footer-button:hover {
    opacity: 1;
    transform: translateY(-1px);
    box-shadow: 0 5px 12px rgba(17,17,127,.16);
}

.dsa-footer-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 7px rgba(17,17,127,.10);
}

.dsa-newsletter-hp {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.dsa-newsletter-message {
    grid-column: 1 / -1;
    margin: 8px 0 0 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1.7 !important;
}

.dsa-newsletter-message.is-success {
    color: #18864b !important;
}

.dsa-newsletter-message.is-error {
    color: #c43333 !important;
}

.dsa-footer-email {
    display: none;
}

.dsa-footer-bottom {
    border-top: 1px solid var(--dsa-border);
}

.dsa-footer-bottom-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.dsa-footer-bottom-inner > span {
    color: #85899a;
    font-size: 12px;
    font-weight: 600;
}

.dsa-copyright-brand {
    color: var(--dsa-primary);
    font-weight: 800;
    text-decoration: none;
    transition: color .2s ease, opacity .2s ease;
}

.dsa-copyright-brand:hover {
    color: var(--dsa-primary);
    opacity: .78;
}

.dsa-socials {
    display: flex;
    align-items: center;
    gap: 9px;
}

.dsa-socials a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #20243a;
    background: #f2f3f7;
    transition: color .25s ease, background .25s ease, transform .25s ease;
}

.dsa-socials a:hover {
    transform: translateY(-2px);
    color: #fff;
    background: var(--dsa-primary);
}

.dsa-socials svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Reveal animation */
.dsa-landing.is-js .dsa-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
}

.dsa-landing.is-js .dsa-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Tablet */
@media (max-width: 1080px) {
    .dsa-container {
        width: min(100% - 40px, 980px);
    }

    .dsa-header-inner {
        grid-template-columns: 1fr auto 1fr;
    }

    .dsa-nav-list {
        gap: 20px;
    }

    .dsa-hero,
    .dsa-hero-media {
        min-height: 570px;
    }

    .dsa-hero-inner {
        width: calc(100% - 52px);
        margin-left: 35px;
    }

    .dsa-hero h1 {
        font-size: 54px;
    }

    .dsa-about-grid {
        gap: 55px;
    }

    .dsa-about-media,
    .dsa-about-media img {
        min-height: 470px;
        height: 470px;
    }

    .dsa-challenge-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 821px) and (max-width: 1080px) {
    .dsa-timeline {
        --dsa-timeline-line-length: 145px;
        --dsa-timeline-text-gap: 30px;
    }

    .dsa-timeline-content {
        max-width: 290px;
    }

    .dsa-timeline-content h3 {
        font-size: 20px;
    }

    .dsa-timeline-content p {
        font-size: 14px;
    }
}

/* Mobile navigation breakpoint */
@media (max-width: 820px) {
    .dsa-section {
        padding: 82px 0;
    }

    .dsa-header {
        height: 70px;
    }

    .dsa-header-inner {
        grid-template-columns: 1fr auto;
    }

    .dsa-header .dsa-brand {
        justify-self: start;
    }

    .dsa-header-actions {
        justify-self: end;
    }

    .dsa-header-actions .dsa-button {
        display: none;
    }

    .dsa-menu-toggle {
        display: block;
    }

    .dsa-menu-toggle {
        width: 40px;
        height: 40px;
        padding: 9px;
        border: 1px solid rgba(8,11,114,.12);
        border-radius: 11px;
        background: #f8f8fd;
        box-shadow: 0 4px 14px rgba(8,11,114,.06);
    }

    .dsa-menu-overlay {
        position: fixed;
        inset: 0;
        z-index: 80;
        display: block;
        visibility: hidden;
        opacity: 0;
        background: rgba(7,9,43,.46);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        transition: opacity .3s ease, visibility .3s ease;
    }

    .dsa-header.is-menu-open .dsa-menu-overlay {
        visibility: visible;
        opacity: 1;
    }

    .dsa-nav {
        position: fixed;
        z-index: 90;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(86vw, 350px);
        height: 100dvh;
        padding: 18px 16px 20px;
        display: flex;
        flex-direction: column;
        background: #fff;
        border-left: 1px solid rgba(8,11,114,.08);
        border-radius: 22px 0 0 22px;
        box-shadow: -24px 0 60px rgba(7,9,43,.2);
        overflow-y: auto;
        transform: translateX(108%);
        visibility: hidden;
        transition: transform .34s cubic-bezier(.22,.61,.36,1), visibility .34s ease;
    }

    .dsa-header.is-menu-open .dsa-nav {
        visibility: visible;
        transform: translateX(0);
    }

    .dsa-mobile-nav-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        padding: 2px 2px 17px;
        border-bottom: 1px solid #eef0f6;
    }

    .dsa-mobile-nav-brand {
        display: inline-flex;
        align-items: center;
    }

    .dsa-mobile-nav-brand img {
        display: block;
        width: 154px;
        height: auto;
    }

    .dsa-menu-close {
        position: relative;
        flex: 0 0 40px;
        width: 40px;
        height: 40px;
        padding: 0;
        border: 1px solid rgba(8,11,114,.11);
        border-radius: 12px;
        background: #f7f8fc;
        cursor: pointer;
    }

    .dsa-menu-close span {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 17px;
        height: 2px;
        border-radius: 2px;
        background: var(--dsa-primary);
    }

    .dsa-menu-close span:first-child {
        transform: translate(-50%,-50%) rotate(45deg);
    }

    .dsa-menu-close span:last-child {
        transform: translate(-50%,-50%) rotate(-45deg);
    }

    .dsa-mobile-nav-label {
        display: block;
        margin: 20px 5px 10px;
        color: #9a9dad;
        font-size: 11px;
        font-weight: 800;
    }

    .dsa-nav-list {
        display: grid;
        gap: 8px;
    }

    .dsa-nav-list li {
        margin: 0;
    }

    .dsa-nav-list a {
        min-height: 51px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 10px 14px;
        border: 1px solid transparent;
        border-radius: 13px;
        background: #fafbfe;
        color: #25283a;
        font-size: 14px;
        font-weight: 800;
        transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
    }

    .dsa-nav-list a::after {
        position: static;
        display: block;
        flex: 0 0 8px;
        width: 8px;
        height: 8px;
        border: 0;
        border-left: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        background: transparent;
        transform: rotate(45deg);
        opacity: .48;
        content: "";
    }

    .dsa-nav-list a:hover,
    .dsa-nav-list .current-menu-item > a {
        color: var(--dsa-primary);
        background: #f0f1fb;
        border-color: rgba(8,11,114,.10);
        transform: translateX(-2px);
    }

    .dsa-mobile-nav-footer {
        margin-top: auto;
        display: block;
        padding-top: 22px;
    }

    .dsa-mobile-nav-footer > span {
        display: block;
        margin-bottom: 10px;
        color: #85899a;
        font-size: 11px;
        font-weight: 700;
        text-align: center;
    }

    .dsa-mobile-nav-cta {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 16px;
        border-radius: 13px;
        color: #fff !important;
        background: linear-gradient(180deg,#15198f 0%,#0b0e72 100%);
        box-shadow: 0 10px 22px rgba(8,11,114,.18);
        font-size: 13px;
        font-weight: 900;
    }

    .dsa-hero {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .dsa-hero-content {
        min-height: 510px;
        order: 1;
    }

    .dsa-hero-media {
        min-height: 520px;
        order: 2;
    }

    .dsa-hero-inner {
        width: min(100% - 40px, 620px);
        margin: 0 auto;
        text-align: center;
    }

    .dsa-hero h1 {
        font-size: clamp(42px, 10vw, 62px);
    }

    .dsa-hero p {
        margin-inline: auto;
    }

    .dsa-hero .dsa-actions {
        justify-content: center;
    }

    .dsa-about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .dsa-about-media {
        order: 1;
        min-height: 560px;
    }

    .dsa-about-media img {
        height: 560px;
    }

    .dsa-about-content {
        order: 2;
        max-width: 100%;
    }

    .dsa-timeline {
        width: min(700px, 100%);
        direction: rtl;
    }

    .dsa-timeline::before {
        right: 24px;
    }

    .dsa-timeline-item {
        min-height: 160px;
        display: block;
        padding-right: 84px;
    }

    .dsa-timeline-item.is-right .dsa-timeline-content,
    .dsa-timeline-item.is-left .dsa-timeline-content {
        width: auto;
        margin: 0;
        text-align: right;
        max-width: none;
        direction: rtl;
    }

    .dsa-timeline-dot {
        right: 18px;
    }

    .dsa-timeline-line {
        display: none;
    }

    .dsa-results-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dsa-result-card:nth-child(n) {
        grid-column: span 1;
        min-height: 220px;
    }

    .dsa-result-card:last-child {
        grid-column: span 2;
    }

    .dsa-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .dsa-footer-contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .dsa-container {
        width: calc(100% - 30px);
    }

    .dsa-section {
        padding: 68px 0;
    }

    .dsa-brand img {
        width: 185px;
    }

    .dsa-hero-content {
        min-height: 470px;
    }

    .dsa-hero h1 {
        font-size: 40px;
        line-height: 1.42;
    }

    .dsa-hero p {
        font-size: 13px;
    }

    .dsa-hero-media {
        min-height: 410px;
        height: 410px;
    }

    .dsa-hero-media img {
        object-position: center top;
    }

    .dsa-actions {
        width: 100%;
    }

    .dsa-button {
        flex: 1 1 auto;
        min-width: 135px;
    }

    .dsa-ticker-item {
        padding-inline: 22px;
    }

    .dsa-about-grid {
        gap: 38px;
    }

    .dsa-about-media,
    .dsa-about-media img {
        min-height: 420px;
        height: 420px;
    }

    .dsa-image-frame {
        right: -9px;
        top: 10px;
    }

    .dsa-about h2,
    .dsa-section-heading-front h2 {
        font-size: 31px;
    }

    .dsa-challenge-grid,
    .dsa-results-grid {
        grid-template-columns: 1fr;
    }

    .dsa-challenge-grid {
        gap: 14px;
    }

    .dsa-result-card:nth-child(n),
    .dsa-result-card:last-child {
        grid-column: span 1;
    }

    .dsa-challenge-card {
        min-height: 122px;
        padding: 18px 18px 18px 16px;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 14px;
        text-align: right;
        border-radius: 18px;
        box-shadow: 0 8px 22px rgba(15, 23, 42, .05);
    }

    .dsa-challenge-card .dsa-card-icon {
        width: 60px;
        height: 60px;
        flex: 0 0 60px;
        border-radius: 16px;
        margin-right: 4px;
    }

    .dsa-challenge-card .dsa-card-icon img {
        width: 34px;
        height: 34px;
    }

    .dsa-challenge-card h3 {
        margin: 0;
        font-size: 14px;
        line-height: 2;
        max-width: none;
    }

    .dsa-process {
        min-height: 0;
        padding: 64px 0 58px;
    }

    .dsa-process .dsa-section-heading-front {
        margin-bottom: 38px;
    }

    .dsa-process .dsa-section-heading-front h2 {
        font-size: 31px;
        line-height: 1.45;
    }

    .dsa-process .dsa-section-heading-front p {
        margin-top: 10px;
        padding: 0 10px;
        font-size: 13px;
        line-height: 2;
    }

    .dsa-timeline {
        width: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .dsa-timeline::before {
        top: 16px;
        bottom: 16px;
        right: 18px;
        background: rgba(255,255,255,.34);
    }

    .dsa-timeline-item {
        min-height: 0;
        margin-bottom: 0;
        padding-right: 82px;
    }

    .dsa-timeline-item:last-child {
        margin-bottom: 0;
    }

    .dsa-timeline-item.is-right .dsa-timeline-content,
    .dsa-timeline-item.is-left .dsa-timeline-content {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 19px 44px 17px 18px;
        border: 1px solid rgba(255,255,255,.10);
        border-radius: 18px;
        background: rgba(255,255,255,.05);
        text-align: right;
        box-shadow: 0 10px 24px rgba(0,0,0,.08);
    }

    .dsa-timeline-dot {
        top: 24px;
        right: 12px;
        width: 12px;
        height: 12px;
        box-shadow: 0 0 0 6px #080b72;
    }

    .dsa-timeline-dot::before {
        inset: -6px;
        border-color: rgba(255,255,255,.55);
    }

    .dsa-timeline-content h3 {
        font-size: 16px;
        line-height: 1.75;
    }

    .dsa-timeline-content p {
        margin-top: 8px;
        font-size: 12.5px;
        line-height: 1.95;
    }


    @media (max-width: 390px) {
        .dsa-timeline-item {
            padding-right: 74px;
        }

        .dsa-timeline-item.is-right .dsa-timeline-content,
        .dsa-timeline-item.is-left .dsa-timeline-content {
            padding-right: 40px;
        }
    }

    .dsa-results-grid {
        gap: 16px;
    }

    .dsa-result-card {
        min-height: 0;
        padding: 18px 16px 18px;
    }

    .dsa-result-card .dsa-card-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 16px;
    }

    .dsa-result-card .dsa-card-icon svg,
    .dsa-result-card .dsa-card-icon img {
        width: 50px;
        height: 50px;
        padding-top: 4px;
    }

    .dsa-result-card h3 {
        font-size: 16px;
        line-height: 1.7;
    }

    .dsa-result-card p {
        font-size: 12px;
        line-height: 2;
        margin-top: 8px;
    }

    .dsa-faq-question {
        min-height: 48px;
        padding: 11px 14px;
        font-size: 11px;
        gap: 10px;
    }

    .dsa-faq-answer p {
        margin: 0;
        padding: 0 52px 24px 22px;
        color: var(--dsa-muted);
        font-size: 15px;
        line-height: 2.1;
    }

    .dsa-cta {
        min-height: 390px;
    }

    .dsa-cta h2 {
        font-size: 34px;
    }

    .dsa-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 55px;
        padding-bottom: 48px;
    }

    .dsa-footer-contact {
        grid-column: auto;
    }

    .dsa-footer-contact {
        max-width: none;
        justify-self: stretch;
    }

    .dsa-footer-brand,
    .dsa-footer .dsa-brand {
        justify-self: center;
        align-items: center;
        text-align: center;
    }

    .dsa-footer-brand p {
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }

    .dsa-footer .dsa-brand img {
        margin-right: auto;
        margin-left: auto;
    }

    .dsa-newsletter-form {
        max-width: 100%;
        grid-template-columns: minmax(0, 1fr) 104px;
        gap: 10px;
    }

    .dsa-footer-button {
        width: 96px;
        min-height: 42px;
        height: 42px;
        border-radius: 10px;
        font-size: 11px;
        line-height: 1.2;
    }

    .dsa-newsletter-field input {
        height: 44px;
        border-radius: 10px;
    }

    .dsa-footer-bottom-inner {
        padding: 18px 0;
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 390px) {
    .dsa-newsletter-form {
        grid-template-columns: 1fr;
    }

    .dsa-footer-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dsa-landing *,
    .dsa-landing *::before,
    .dsa-landing *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}


/* v1.0.41 - forced compact result cards on mobile */
@media (max-width: 767px) {
    body .dsa-landing .dsa-results-grid {
        gap: 14px !important;
    }

    body .dsa-landing .dsa-result-card {
        min-height: auto !important;
        height: auto !important;
        padding: 14px 14px 16px !important;
    }

    body .dsa-landing .dsa-result-card .dsa-card-icon {
        width: 46px !important;
        height: 46px !important;
        margin: 0 auto 14px !important;
    }

    body .dsa-landing .dsa-result-card .dsa-card-icon svg,
    body .dsa-landing .dsa-result-card .dsa-card-icon img {
        width: 46px !important;
        height: 46px !important;
        padding-top: 2px !important;
    }

    body .dsa-landing .dsa-result-card h3 {
        margin: 0 !important;
        font-size: 15px !important;
        line-height: 1.7 !important;
    }

    body .dsa-landing .dsa-result-card p {
        margin: 7px auto 0 !important;
        max-width: 290px !important;
        font-size: 11.5px !important;
        line-height: 1.95 !important;
    }
}


/* Performance: skip rendering below-the-fold sections until needed. */
@supports (content-visibility: auto) {
    .dsa-about,
    .dsa-challenges,
    .dsa-process,
    .dsa-results,
    .dsa-faq,
    .dsa-cta,
    .dsa-footer {
        content-visibility: auto;
        contain-intrinsic-size: 800px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dsa-landing *,
    .dsa-landing *::before,
    .dsa-landing *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
