:root {
    --dm-blue: #2463f6;
    --dm-blue-dark: #1555e8;
    --dm-blue-soft: #eaf2ff;
    --dm-black: #050505;
    --dm-text: #121212;
    --dm-muted: #6f6f6f;
    --dm-border: #e4e8ef;
    --dm-light: #f2f6fd;
    --dm-white: #ffffff;
    --dm-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
    --dm-soft-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: var(--dm-text);
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
}

.dm-container {
    max-width: 1520px;
    margin: 0 auto;
}

.section-bg-light {
    background: linear-gradient(110deg, #ffffff 0%, #ffffff 45%, #eef6ff 100%);
}

.dm-pattern-bg {
    background-color: #fff;
    background-image:
        radial-gradient(circle at 13px 13px, rgba(36, 99, 246, 0.07) 1px, transparent 0),
        linear-gradient(120deg, transparent 0%, transparent 70%, rgba(36, 99, 246, 0.03) 100%);
    background-size: 36px 36px, 100% 100%;
}

/* Hero */
.dm-hero {
    min-height: 760px;
    padding: 48px 0 0;
    position: relative;
}

.dm-hero-content {
    padding-left: 80px;
    padding-bottom: 40px;
}

.dm-hero-content h1 {
    /* font-size: clamp(48px, 4.5vw, 78px); */
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -2px;
    margin-bottom: 26px;
    color: #000;
}

.dm-hero-content h1 span {
    color: var(--dm-blue-dark);
}

.dm-hero-text {
    font-size: 21px;
    margin-bottom: 22px;
    color: #111;
}

.dm-hero-content h5 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.dm-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1px solid #bfc5cf;
    border-radius: 50px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    margin-bottom: 62px;
}

.dm-feature-pill span {
    padding: 18px 26px;
    font-size: 20px;
    color: var(--dm-blue-dark);
    font-weight: 600;
    white-space: nowrap;
    border-right: 1px solid #cfd4dc;
}

.dm-feature-pill span:last-child {
    border-right: 0;
}

.dm-hero-actions {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.dm-btn-primary,
.dm-btn-outline,
.dm-card-btn {
    min-height: 72px;
    padding: 18px 34px;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.25s ease;
}

.dm-btn-primary,
.dm-card-btn {
    background: var(--dm-blue);
    color: #fff;
    border: 2px solid var(--dm-blue);
}

.dm-btn-outline {
    color: var(--dm-blue-dark);
    border: 1.5px solid var(--dm-blue-dark);
    background: #fff;
}

.dm-btn-primary:hover,
.dm-card-btn:hover {
    background: var(--dm-blue-dark);
    color: #fff;
    transform: translateY(-3px);
}

.dm-btn-outline:hover {
    background: var(--dm-blue-dark);
    color: #fff;
    transform: translateY(-3px);
}

.dm-hero-visual {
    min-height: 710px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-right: 35px;
}

.dm-hero-circle {
    width: 680px;
    height: 680px;
    border: 2px dashed rgba(36, 99, 246, 0.18);
    border-radius: 50%;
    position: absolute;
    right: 150px;
    top: -35px;
    animation: rotateCircle 24s linear infinite;
}

@keyframes rotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.dm-hero-img {
    width: min(680px, 90%);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 18px 34px rgba(18, 60, 100, 0.15));
}

.dm-float-card {
    position: absolute;
    z-index: 3;
    background: rgba(255,255,255,0.94);
    box-shadow: var(--dm-soft-shadow);
    border-radius: 16px;
    backdrop-filter: blur(8px);
}

.dm-career-card {
    right: 60px;
    top: 40px;
    width: 398px;
    min-height: 254px;
    padding: 28px 28px;
    display: flex;
    gap: 24px;
}

.dm-float-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--dm-blue-dark);
    color: #fff;
    font-size: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.dm-career-card h4 {
    font-size: 25px;
    font-weight: 700;
    margin: 8px 0 12px;
}

.dm-career-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dm-career-card li {
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dm-career-card li i {
    color: var(--dm-blue);
    font-size: 16px;
}

.dm-demand-card {
    right: 40px;
    bottom: 190px;
    width: 248px;
    min-height: 218px;
    padding: 30px 32px;
}

.dm-black-icon {
    display: block;
    font-size: 54px;
    color: #000;
    line-height: 1;
    margin-bottom: 22px;
}

.dm-demand-card h5 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 8px;
}

.dm-demand-card p {
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
}

/* Trust strip */
.dm-trust-strip {
    background: #edf4ff;
    padding: 22px 0;
}

.dm-review-box,
.dm-trusted-text,
.dm-avatar-list {
    display: flex;
    align-items: center;
}

.dm-review-box {
    gap: 28px;
}

.dm-badge-wrap {
    display: flex;
    align-items: center;
}

.dm-shield,
.dm-count-badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 22px;
}

.dm-shield {
    background: #101010;
    margin-right: -10px;
}

.dm-count-badge {
    background: #1359b9;
}

.dm-stars {
    color: #ff9b00;
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.dm-review-box strong {
    font-size: 16px;
}

.dm-separator {
    width: 1px;
    height: 72px;
    background: #000;
    opacity: 0.85;
}

.dm-trusted-text {
    gap: 32px;
}

.dm-trusted-text i {
    color: var(--dm-blue-dark);
    font-size: 42px;
}

.dm-trusted-text p {
    margin: 0;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.65;
}

.dm-avatar-list {
    justify-content: center;
}

.dm-avatar-list img {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: -12px;
    border: 2px solid #fff;
}

/* Brand */
.dm-brand-section {
    padding: 42px 0 60px;
}

.dm-brand-card {
    max-width: 1300px;
    margin: 0 auto 92px;
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--dm-shadow);
    padding: 28px 40px 34px;
    overflow: hidden;
}

.dm-brand-card h3 {
    text-align: center;
    font-size: 26px;
    /* text-decoration: underline; */
    margin-bottom: 34px;
    font-weight: 500;
}

.dm-logo-track-wrap {
    overflow: hidden;
}

.dm-logo-track {
    display: flex;
    width: max-content;
    gap: 64px;
    align-items: center;
    animation: logoMove 26s linear infinite;
}

.dm-logo-track span {
    min-width: 145px;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    color: #4c4c4c;
    font-weight: 600;
    line-height: 1.05;
}

.dm-logo-track span:nth-child(4n+1) {
    font-size: 14px;
    font-weight: 500;
    color: #222;
}

.dm-logo-track span:nth-child(4n) {
    width: 56px;
    min-width: 56px;
    color: #fff;
    background: #1359b9;
    font-size: 10px;
    letter-spacing: 5px;
    border-radius: 2px;
}

.dm-logo-track .blue {
    color: #1359b9;
}

@keyframes logoMove {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.dm-center-heading {
    text-align: center;
}

.dm-center-heading h2 {
    font-size: clamp(34px, 3.2vw, 46px);
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 14px;
    letter-spacing: -0.8px;
}

.dm-center-heading h2 span,
.dm-section-title h2 span,
.blue-text,
.dm-how-box h4 {
    color: var(--dm-blue);
}

.dm-center-heading p {
    color: #7a7a7a;
    font-size: 22px;
    margin-top: 22px;
}

/* Problem cards */
.dm-problem-pills {
    padding: 28px 0 90px;
}

.dm-pill-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 42px 48px;
    align-items: center;
}

.dm-small-card {
    background: #fff;
    min-height: 136px;
    border-radius: 8px;
    box-shadow: var(--dm-soft-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 54px;
    padding: 22px 30px;
}

.dm-small-card:nth-child(1) { grid-column: 1 / span 2; }
.dm-small-card:nth-child(2) { grid-column: 3 / span 2; }
.dm-small-card:nth-child(3) { grid-column: 5 / span 2; }
.dm-small-card:nth-child(4) { grid-column: 2 / span 2; }
.dm-small-card:nth-child(5) { grid-column: 4 / span 2; }

.dm-small-card i {
    width: 78px;
    height: 78px;
    flex: 0 0 78px;
    border-radius: 50%;
    background: var(--dm-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.dm-small-card h4 {
    font-size: 25px;
    line-height: 1.45;
    font-weight: 700;
    margin: 0;
}

/* Outcomes */
.dm-outcomes {
    padding: 84px 0 72px;
    border-top: 1px solid #eef2f8;
}

.dm-outcome-row {
    margin: 0 auto 70px;
    /* max-width: 1280px; */
}

.dm-outcome-card {
    min-height: 408px;
    text-align: center;
    padding: 30px 42px 28px;
    position: relative;
    border-right: 1px solid #d5d5d5;
}

.dm-outcome-row > div:last-child .dm-outcome-card {
    border-right: 0;
}

.dm-xmark {
    position: absolute;
    right: 45px;
    top: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    line-height: 1;
}

.dm-outcome-icon {
    width: 104px;
    height: 104px;
    margin: 0 auto 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
}

.dm-outcome-card h4 {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.35;
    min-height: 64px;
    margin-bottom: 18px;
}

.dm-outcome-card p {
    font-size: 20px;
    line-height: 1.45;
    margin-bottom: 50px;
}

.dm-line-dot {
    width: 86%;
    height: 2px;
    position: absolute;
    bottom: 22px;
    left: 7%;
}

.dm-line-dot::after {
    content: "";
    width: 28px;
    height: 28px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 8px solid rgba(255, 255, 255, 0.8);
}

.dm-outcome-card.red { --accent: #df3441; }
.dm-outcome-card.orange { --accent: #ff9f16; }
.dm-outcome-card.blue-card { --accent: #3379ff; }
.dm-outcome-card.green { --accent: #2fbd35; }

.dm-outcome-card.red .dm-outcome-icon,
.dm-outcome-card.red .dm-xmark { background: #ffe7eb; color: var(--accent); }
.dm-outcome-card.orange .dm-outcome-icon,
.dm-outcome-card.orange .dm-xmark { background: #fff3e6; color: var(--accent); }
.dm-outcome-card.blue-card .dm-outcome-icon,
.dm-outcome-card.blue-card .dm-xmark { background: #eaf2ff; color: var(--accent); }
.dm-outcome-card.green .dm-outcome-icon,
.dm-outcome-card.green .dm-xmark { background: #eaffef; color: var(--accent); }

.dm-outcome-card .dm-line-dot { background: var(--accent); }
.dm-outcome-card .dm-line-dot::after { background: var(--accent); }

.dm-note-box {
    border: 1px solid #bfc4cd;
    border-radius: 8px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 34px 48px;
    display: flex;
    gap: 42px;
    align-items: center;
    background: #fff;
}

.dm-note-box i {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #dceaff;
    color: var(--dm-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    flex: 0 0 68px;
}

.dm-note-box p {
    margin: 0;
    font-size: 22px;
    line-height: 1.45;
}

/* Split sections */
.dm-help-section,
.dm-understand {
    padding: 70px 0;
    background: #f1f5fc;
}

.dm-understand {
    background: #f4f8ff;
}

.dm-section-title h2 {
    font-size: clamp(36px, 3.3vw, 50px);
    line-height: 1.35;
    font-weight: 800;
    margin-bottom: 30px;
}

.dm-section-title p {
    font-size: 25px;
    margin-bottom: 34px;
    font-weight: 500;
}

.dm-icon-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 620px;
}

.dm-icon-list li {
    display: flex;
    align-items: center;
    gap: 34px;
    font-size: 25px;
    padding: 14px 0;
    border-bottom: 1px solid #dbe2ec;
}

.dm-icon-list span {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: #e7f1ff;
    color: var(--dm-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 78px;
    font-size: 30px;
}

.dm-photo {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 15px 36px rgba(0, 0, 0, 0.09);
}

/* Specialization */
.dm-specialization {
    padding: 70px 0 90px;
}

.dm-special-card {
    min-height: 382px;
    max-width: 380px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    padding: 30px 34px 34px;
    text-align: center;
    box-shadow: var(--dm-soft-shadow);
    border-left: 3px solid transparent;
    transition: 0.25s ease;
}

.dm-special-card:hover,
.dm-special-card.active {
    transform: translateY(-5px);
    border-left-color: var(--dm-blue);
}

.dm-special-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 26px;
    border-radius: 50%;
    background: #dfecff;
    color: var(--dm-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.dm-special-card h4 {
    font-size: 23px;
    font-weight: 800;
    margin-bottom: 20px;
}

.dm-special-card p {
    font-size: 18px;
    line-height: 1.6;
    min-height: 86px;
}

.dm-card-btn {
    min-height: 52px;
    font-size: 18px;
    padding: 12px 38px;
    width: 80%;
    margin-top: 14px;
}

/* Certificate */
.dm-certificate {
    background: #f1f1f1;
    padding: 64px 0 80px;
}

.dm-certificate-img {
    width: 580px;
    max-width: 100%;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.dm-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 70px;
}

.dm-check-list li {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 21px;
    margin-bottom: 26px;
}

.dm-check-list i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--dm-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex: 0 0 28px;
}

.dm-enroll-btn {
    min-width: 254px;
    min-height: 72px;
}

/* Demand */
.dm-demand-section {
    padding: 70px 0;
}

.dm-demand-box {
    max-width: 1300px;
    margin: 0 auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--dm-shadow);
    padding: 38px 30px 26px;
}

.dm-demand-box h3 {
    font-size: 30px;
    font-weight: 500;
    /* text-decoration: underline; */
    margin-bottom: 38px;
}

.dm-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 22px 14px;
    margin-bottom: 54px;
}

.dm-tags span {
    background: #dfecff;
    color: var(--dm-blue-dark);
    border-radius: 50px;
    padding: 14px 28px;
    font-size: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 14px;
}

.dm-tags i {
    font-size: 18px;
}

.dm-demand-box h4 {
    font-size: 26px;
    font-weight: 800;
}

.dm-growth-img {
    width: 100%;
    background: #f4f8ff;
    border-radius: 4px;
}

/* Confusion */
.dm-confusion {
    padding: 82px 0;
}

.dm-confused-img {
    width: 480px;
    margin: 0 auto;
}

.dm-confusion h2 {
    font-size: 31px;
    font-weight: 700;
    /* text-decoration: underline; */
    margin-bottom: 34px;
}

.dm-question-list {
    list-style: none;
    padding: 0;
    margin: 0 0 46px;
}

.dm-question-list li {
    display: flex;
    align-items: center;
    gap: 54px;
    font-size: 26px;
    margin-bottom: 22px;
}

.dm-question-list span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--dm-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex: 0 0 34px;
}

.dm-goal-box {
    max-width: 650px;
    background: #e7f0ff;
    padding: 22px 90px;
    font-size: 26px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 14px;
}

.dm-goal-box i {
    color: var(--dm-blue);
    font-size: 38px;
}

.dm-icon-list.compact li {
    font-size: 23px;
    padding: 12px 0;
}

.dm-understand h5 {
    margin-top: 36px;
    font-size: 22px;
    font-weight: 700;
}

/* How it works */
.dm-how-it-works {
    padding: 70px 0;
    background: #fff;
}

.dm-how-box {
    max-width: 1300px;
    margin: 0 auto;
    background-color: #fff;
    background-image: radial-gradient(circle, #d9d9d9 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    border-radius: 16px;
    box-shadow: var(--dm-shadow);
    padding: 48px 70px 76px;
}

.dm-how-box h4 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 12px;
}

.dm-step-wrap {
    display: flex;
    justify-content: center;
    gap: 78px;
    position: relative;
}

.dm-step-wrap::before {
    content: "";
    position: absolute;
    top: 190px;
    left: 18%;
    right: 18%;
    border-top: 2px dashed var(--dm-blue);
    z-index: 0;
}

.dm-step-card {
    width: 290px;
    min-height: 372px;
    background: #fff;
    position: relative;
    z-index: 1;
    text-align: center;
    border-radius: 8px;
    padding: 28px 20px 24px;
    box-shadow: var(--dm-soft-shadow);
    border-bottom: 3px solid var(--step-color);
}

.dm-step-card::after {
    content: "›";
    position: absolute;
    right: -47px;
    top: 160px;
    color: var(--dm-blue);
    font-size: 54px;
    line-height: 1;
}

.dm-step-card:last-child::after {
    display: none;
}

.dm-step-card.purple { --step-color: #764dff; }
.dm-step-card.yellow { --step-color: #f7b500; }
.dm-step-card.green-step { --step-color: #26c281; }

.dm-step-card img {
    width: 154px;
    height: 122px;
    object-fit: contain;
    margin: 0 auto 18px;
}

.dm-step-card h4 {
    color: #000;
    font-size: 24px;
    min-height: 66px;
    margin-bottom: 18px;
}

.dm-step-card h4::after {
    content: "";
    display: block;
    width: 54px;
    height: 3px;
    background: var(--step-color);
    border-radius: 8px;
    margin: 12px auto 0;
}

.dm-step-card p {
    font-size: 18px;
    line-height: 1.42;
    margin: 0;
}

/* Platform */
.dm-platform {
    padding: 70px 0 100px;
}

.dm-trust-card {
    min-height: 276px;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--dm-soft-shadow);
    text-align: center;
    padding: 30px 24px;
    border-bottom: 4px solid var(--dm-blue);
}

.dm-trust-card i {
    width: 84px;
    height: 84px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: #dfeeff;
    color: var(--dm-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.dm-trust-card h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 18px;
}

.dm-trust-card p {
    font-size: 18px;
    line-height: 1.65;
    margin: 0;
}

.dm-carousel-dots {
    position: static;
    margin: 45px 0 0;
}

.dm-carousel-dots button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
    background-color: #cfcfcf !important;
    opacity: 1 !important;
}

.dm-carousel-dots button.active {
    background-color: var(--dm-blue) !important;
}

/* Common animation */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.7s ease;
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}



/* Header */
.dm-site-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(36, 99, 246, 0.12);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.dm-navbar {
    min-height: 82px;
    padding: 10px 0;
}

.dm-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #050505;
}

.dm-brand:hover {
    color: #050505;
}

.dm-brand > span {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--dm-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 12px 24px rgba(36, 99, 246, 0.25);
}

.dm-brand strong {
    display: block;
    font-size: 24px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.dm-brand small {
    display: block;
    color: var(--dm-muted);
    font-size: 12px;
    font-weight: 600;
    margin-top: 4px;
}

.dm-nav-links .nav-link {
    color: #121212;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 14px !important;
    border-radius: 50px;
    transition: 0.22s ease;
}

.dm-nav-links .nav-link:hover,
.dm-nav-links .nav-link.active {
    color: var(--dm-blue);
    background: var(--dm-blue-soft);
}

.dm-nav-btn {
    background: var(--dm-blue);
    color: #fff;
    border-radius: 50px;
    padding: 12px 22px;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(36, 99, 246, 0.22);
}

.dm-nav-btn:hover {
    background: var(--dm-blue-dark);
    color: #fff;
}

.dm-toggler {
    border: 1px solid rgba(36, 99, 246, 0.25);
    border-radius: 12px;
    box-shadow: none !important;
}

.dm-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dm-blue);
    background: var(--dm-blue-soft);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 16px;
}

/* Guidance form */
.dm-guidance-section {
    padding: 76px 0;
    background: #f1f5fc;
}

.dm-guidance-copy h2 {
    font-size: clamp(38px, 3.4vw, 50px);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.8px;
    margin-bottom: 28px;
}

.dm-guidance-copy h3 {
    color: var(--dm-blue-dark);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 28px;
}

.dm-guidance-copy ul {
    margin: 0 0 58px;
    padding-left: 26px;
}

.dm-guidance-copy li {
    font-size: 22px;
    margin-bottom: 18px;
    line-height: 1.45;
}

.dm-guidance-proof {
    max-width: 760px;
    background: linear-gradient(90deg, #e4f0ff 0%, #ffffff 100%);
    border-radius: 8px;
    padding: 24px 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    box-shadow: 0 10px 26px rgba(36, 99, 246, 0.08);
}

.dm-proof-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 20px;
    border-right: 1px solid rgba(0, 0, 0, 0.24);
}

.dm-proof-item:first-child {
    padding-left: 0;
}

.dm-proof-item:last-child {
    border-right: 0;
    padding-right: 0;
}

.dm-proof-item i {
    color: var(--dm-blue);
    font-size: 32px;
    flex: 0 0 auto;
}

.dm-proof-item strong,
.dm-proof-item span {
    display: block;
}

.dm-proof-item strong {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 8px;
}

.dm-proof-item span {
    font-size: 15px;
    color: #555;
}

.dm-form-card {
    max-width: 490px;
    margin: 0 auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--dm-shadow);
    padding: 34px 26px;
    text-align: center;
}

.dm-form-card h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}

.dm-form-card p {
    color: #444;
    font-size: 14px;
    margin-bottom: 28px;
    text-transform: capitalize;
}

.dm-form-group {
    margin-bottom: 18px;
}

.dm-form-card .form-control,
.dm-form-card .form-select {
    height: 52px;
    border-radius: 9px;
    border: 1px solid #9d9d9d;
    font-size: 16px;
    padding: 12px 18px;
    box-shadow: none !important;
}

.dm-form-card .form-control:focus,
.dm-form-card .form-select:focus {
    border-color: var(--dm-blue);
}

.dm-captcha-box {
    width: 220px;
    height: 52px;
    border: 1px solid #9d9d9d;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 10px 0 34px;
    color: #777;
    font-size: 16px;
    cursor: pointer;
}

.dm-captcha-box input {
    width: 16px;
    height: 16px;
}

.dm-form-message {
    min-height: 22px;
    margin-top: 14px;
    font-weight: 600;
    font-size: 14px;
}

.dm-form-message.success {
    color: #188038;
}

.dm-form-message.error {
    color: #d93025;
}

.dm-privacy {
    margin-top: 18px;
    color: #7a7a7a;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Video testimonials */
.dm-video-section {
    padding: 70px 0 88px;
}

.dm-video-card {
    width: 100%;
    position: relative;
    border: 0;
    padding: 0;
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--dm-soft-shadow);
    cursor: pointer;
}

.dm-video-card img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    transition: 0.35s ease;
}

.dm-video-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.08);
    transition: 0.35s ease;
}

.dm-video-card:hover img {
    transform: scale(1.04);
}

.dm-video-card:hover::after {
    background: rgba(0, 0, 0, 0.18);
}

.dm-play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    color: var(--dm-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.dm-play-btn i {
    margin-left: 4px;
}

.dm-video-modal {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
    padding: 18px;
}

.dm-video-modal .btn-close {
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 2;
    background-color: #fff;
    border-radius: 50%;
    opacity: 1;
}

.dm-video-placeholder {
    min-height: 420px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0b1220, #1e63f1);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 34px;
}

.dm-video-placeholder i {
    font-size: 72px;
    margin-bottom: 18px;
}

.dm-video-placeholder h3 {
    font-size: 32px;
    font-weight: 800;
}

/* Topics */
.dm-topic-section {
    padding: 70px 0 90px;
}

.dm-topic-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--dm-soft-shadow);
    height: 100%;
    transition: 0.25s ease;
}

.dm-topic-card:hover {
    transform: translateY(-6px);
}

.dm-topic-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.dm-topic-body {
    padding: 20px 22px 22px;
}

.dm-topic-body h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 18px;
}

.dm-topic-body span {
    display: block;
    color: #888;
    font-size: 16px;
    margin-bottom: 10px;
}

.dm-topic-body p {
    color: #424242;
    line-height: 1.55;
    margin-bottom: 18px;
}

.dm-read-btn {
    color: var(--dm-blue);
    border: 1px solid var(--dm-blue);
    border-radius: 8px;
    padding: 5px 14px;
    font-size: 14px;
}

.dm-read-btn:hover {
    background: var(--dm-blue);
    color: #fff;
}

.dm-view-more {
    min-width: 310px;
    min-height: 60px;
}

/* FAQ */
.dm-faq-section {
    padding: 70px 0 96px;
}

.dm-faq-accordion {
    max-width: 1300px;
    margin: 0 auto;
}

.dm-faq-accordion .accordion-item {
    border: 1px solid #c8d0da;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 14px;
    background: #dfecff;
}

.dm-faq-accordion .accordion-button {
    min-height: 88px;
    background: #dfecff;
    color: #000;
    font-size: 23px;
    font-weight: 600;
    padding: 22px 62px;
    box-shadow: none;
}

.dm-faq-accordion .accordion-button:not(.collapsed) {
    background: #d7e8ff;
    color: var(--dm-blue-dark);
}

.dm-faq-accordion .accordion-button::after {
    width: 24px;
    height: 24px;
    background-size: 24px;
    filter: brightness(0);
}

.dm-faq-accordion .accordion-body {
    background: #fff;
    padding: 24px 62px;
    font-size: 17px;
    line-height: 1.7;
}

/* Final CTA */
.dm-final-cta {
    padding: 74px 0 82px;
    background: linear-gradient(135deg, #1d5be8 0%, #1555e8 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.dm-final-cta::before,
.dm-final-cta::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.dm-final-cta::before {
    width: 240px;
    height: 240px;
    left: -90px;
    top: -90px;
}

.dm-final-cta::after {
    width: 320px;
    height: 320px;
    right: -150px;
    bottom: -170px;
}

.dm-final-cta h2,
.dm-final-cta p,
.dm-final-actions {
    position: relative;
    z-index: 1;
}

.dm-final-cta h2 {
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 800;
    margin-bottom: 30px;
}

.dm-final-cta p {
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto 56px;
    opacity: 0.95;
}

.dm-final-actions {
    display: flex;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
}

.dm-cta-light,
.dm-cta-outline {
    min-width: 335px;
    min-height: 74px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 600;
}

.dm-cta-light {
    background: #fff;
    color: var(--dm-blue);
}

.dm-cta-outline {
    border: 1px solid rgba(255, 255, 255, 0.95);
    color: #fff;
}

.dm-cta-light:hover,
.dm-cta-outline:hover {
    transform: translateY(-3px);
}

.dm-cta-light:hover {
    background: #f6f9ff;
    color: var(--dm-blue-dark);
}

.dm-cta-outline:hover {
    background: #fff;
    color: var(--dm-blue);
}

/* Footer */
.dm-footer {
    background: #071225;
    color: rgba(255, 255, 255, 0.78);
    padding: 70px 0 24px;
}

.dm-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 18px;
}

.dm-footer-brand:hover {
    color: #fff;
}

.dm-footer-brand span {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--dm-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dm-footer p {
    max-width: 390px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.dm-social-links {
    display: flex;
    gap: 12px;
}

.dm-social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.22s ease;
}

.dm-social-links a:hover {
    background: var(--dm-blue);
    transform: translateY(-3px);
}

.dm-footer h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 22px;
}

.dm-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dm-footer li {
    margin-bottom: 13px;
}

.dm-footer a {
    color: rgba(255, 255, 255, 0.75);
    transition: 0.22s ease;
}

.dm-footer a:hover {
    color: #fff;
}

.dm-footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.dm-footer-contact i {
    color: var(--dm-blue);
    font-size: 18px;
    margin-top: 2px;
}

.dm-footer-bottom {
    margin-top: 52px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 14px;
}

/* New sections responsive */


/* =========================================================
   FIGMA-ACCURATE LAYOUT OVERRIDES
   Added for the supplied desktop and responsive references.
   ========================================================= */
:root {
    --dm-blue: #1154e0;
    --dm-blue-dark: #1154e0;
    --dm-hero-height: 760px;
}

.dm-container {
    width: calc(100% - 32px);
    max-width: 1616px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.dm-pattern-bg {
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='220' viewBox='0 0 250 220'%3E%3Cg fill='none' stroke='%23d9efff' stroke-width='2' opacity='.55'%3E%3Cpath d='M18 20l12-7 12 7v14l-12 7-12-7zM42 34l12-7 12 7v14l-12 7-12-7zM18 48l12-7 12 7v14l-12 7-12-7z'/%3E%3Cpath d='M190 152l12-7 12 7v14l-12 7-12-7zM214 166l12-7 12 7v14l-12 7-12-7zM190 180l12-7 12 7v14l-12 7-12-7z'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 360px 316px;
}

/* Hero: exact Figma positioning */
.dm-hero {
    min-height: var(--dm-hero-height);
    height: var(--dm-hero-height);
    padding: 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(105deg, #fff 0%, #fff 48%, #f0f6ff 100%);
}

.dm-hero-shell {
    position: relative;
    height: 100%;
}

.dm-hero-content {
    position: relative;
    z-index: 5;
    width: 930px;
    max-width: 58%;
    padding: 41px 0 0;
    text-align: left;
}

.dm-hero-content h1 {
    width: 806px;
    max-width: 100%;
    margin: 0 0 27px;
    font-family: "Poppins", sans-serif;
    font-size: 50px;
    font-weight: 600;
    font-style: normal;
    line-height: 82px;
    letter-spacing: 0;
    color: #000;
}

.dm-hero-content h1 .dm-title-line {
    display: block;
    color: #000 !important;
    white-space: nowrap;
}

.dm-hero-content h1 .dm-title-blue {
    color: #1154e0 !important;
}

.dm-hero-text {
    margin: 0 0 22px;
    font-size: 21px;
    line-height: 1.55;
    color: #111;
}

.dm-hero-content h5 {
    margin: 0 0 29px;
    font-size: 24px;
    line-height: 1.45;
    font-weight: 600;
    color: #070707;
}

.dm-feature-pill {
    display: grid;
    grid-template-columns: 258px 313px 1fr;
    width: 928px;
    max-width: 100%;
    height: 72px;
    margin: 0 0 67px;
    border: 1px solid #bcc2ca;
    border-radius: 40px;
    overflow: hidden;
    background: rgba(255, 255, 255, .95);
}

.dm-feature-pill span {
    min-width: 0;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #c7ccd3;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500;
    color: #1154e0;
    white-space: nowrap;
}

.dm-feature-pill span:last-child {
    border-right: 0;
}

.dm-hero-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 32px;
}

.dm-btn-primary,
.dm-btn-outline {
    width: 336px;
    min-width: 336px;
    height: 72px;
    min-height: 72px;
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 24px;
    line-height: 1;
    font-weight: 500;
    gap: 10px;
    box-shadow: none;
}

.dm-btn-primary {
    background: #1154e0;
    border: 1.5px solid #1154e0;
}

.dm-btn-outline {
    background: #fff;
    border: 1.5px solid #1154e0;
    color: #1154e0;
}

.dm-hero-visual {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    width: 900px;
    min-height: 0;
    height: 100%;
    display: block;
    padding: 0;
}

.dm-hero-circle {
    width: 680px;
    height: 680px;
    top: 10px;
    right: 70px;
    border: 2px dashed rgba(36, 99, 246, .17);
    animation: none;
}

.dm-hero-img {
    position: absolute;
    z-index: 1;
    right: 45px;
    bottom: -2px;
    width: 760px;
    max-width: none;
    height: auto;
    margin: 0;
    filter: drop-shadow(0 18px 34px rgba(18, 60, 100, .11));
}

.dm-float-card {
    position: absolute;
    z-index: 4;
    margin: 0;
    background: rgba(255, 255, 255, .97);
    border-radius: 20px;
    box-shadow: 0 14px 38px rgba(30, 55, 85, .10);
    backdrop-filter: blur(10px);
}

.dm-career-card {
    top: 40px;
    right: -80px;
    width: 386px;
    height: 239px;
    min-height: 239px;
    padding: 27px 25px;
    display: flex;
    gap: 23px;
    border: 1.5px solid rgba(19, 86, 224, .55);
}

.dm-float-icon {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    font-size: 29px;
    background: #1356e0;
}

.dm-career-card h4 {
    margin: 7px 0 12px;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 600;
}

.dm-career-card li {
    margin-bottom: 11px;
    gap: 10px;
    font-size: 15px;
    line-height: 1.25;
    white-space: nowrap;
}

.dm-career-card li i {
    font-size: 15px;
    color: #2870ef;
}

.dm-demand-card {
    top: 365px;
    right: -105px;
    bottom: auto;
    width: 248px;
    height: 218px;
    min-height: 218px;
    padding: 30px 31px;
}

.dm-black-icon {
    margin: 0 0 20px;
    font-size: 55px;
}

.dm-demand-card h5 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 700;
}

.dm-demand-card p {
    font-size: 15px;
    line-height: 1.55;
}

/* Trust strip immediately below the hero */
.dm-trust-strip {
    min-height: 136px;
    padding: 24px 0;
    background: #eef5ff;
}

.dm-trust-strip .row {
    min-height: 88px;
}

.dm-review-box {
    gap: 22px;
}

.dm-shield,
.dm-count-badge {
    width: 58px;
    height: 58px;
    font-size: 19px;
}

.dm-stars {
    margin-bottom: 4px;
    font-size: 18px;
}

.dm-review-box strong {
    font-size: 14px;
}

.dm-trusted-text {
    gap: 28px;
}

.dm-trusted-text i {
    font-size: 39px;
}

.dm-trusted-text p {
    font-size: 17px;
    line-height: 1.55;
    font-weight: 500;
}

.dm-avatar-list img {
    width: 58px;
    height: 58px;
}

/* Real supplied logos instead of text placeholders */
.dm-brand-section {
    padding: 38px 0 62px;
}

.dm-brand-card {
    max-width: 1520px;
    margin: 0 auto 82px;
    padding: 26px 40px 30px;
    border-radius: 16px;
}

.dm-brand-card h3 {
    margin-bottom: 24px;
    font-size: 24px;
    line-height: 1.3;
}

.dm-logo-track {
    gap: 58px;
}

.dm-logo-track img {
    width: auto;
    height: 62px;
    max-width: 235px;
    flex: 0 0 auto;
    object-fit: contain;
}

.dm-logo-track img:nth-child(4n) {
    width: 96px;
    max-width: 96px;
}

/* Figma section sizing */
.dm-center-heading h2 {
    font-size: clamp(38px, 2.4vw, 46px);
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: 0;
}

.dm-problem-pills {
    padding: 26px 0 92px;
}

.dm-pill-grid {
    max-width: 1520px;
    margin: 0 auto;
}

.dm-small-card {
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .14);
}

.dm-small-card h4 {
    font-weight: 500;
}

.dm-outcomes {
    padding-top: 82px;
}

.dm-outcome-icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.dm-outcome-card h4 {
    font-weight: 700;
}

.dm-note-box {
    max-width: 1520px;
}

/* Helping students section */
.dm-help-section {
    padding: 82px 0 42px;
    background: #f2f6fd;
    border-top: 3px solid #1591ff;
    border-bottom: 3px solid #1591ff;
}

.dm-help-section .row {
    max-width: 1520px;
    margin-left: auto;
    margin-right: auto;
}

.dm-help-section .dm-section-title h2 {
    max-width: 650px;
    margin-bottom: 26px;
    font-size: 48px;
    line-height: 1.34;
    font-weight: 700;
}

.dm-help-section .dm-section-title p {
    margin-bottom: 27px;
    font-size: 24px;
}

.dm-help-section .dm-icon-list {
    max-width: 610px;
}

.dm-help-section .dm-icon-list li {
    gap: 26px;
    padding: 10px 0;
    font-size: 22px;
}

.dm-help-section .dm-icon-list span {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
    font-size: 25px;
}

.dm-help-promise {
    margin: 32px 0 0;
    font-size: 21px;
    line-height: 1.45;
}

.dm-help-promise strong {
    color: #1154e0;
    font-weight: 600;
}

.dm-help-photo {
    width: 620px;
    max-width: 100%;
    height: 752px;
    margin-left: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 7px;
    box-shadow: none;
}

/* Specialization cards */
.dm-specialization {
    padding: 88px 0 96px;
}

.dm-special-grid {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    row-gap: 56px;
}

.dm-special-card {
    width: 366px;
    max-width: 100%;
    min-height: 382px;
    padding: 31px 28px 32px;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 7px 18px rgba(0, 0, 0, .14);
}

.dm-special-card:hover,
.dm-special-card.active {
    border-left: 0;
}

.dm-special-icon {
    width: 78px;
    height: 78px;
    margin-bottom: 25px;
    background: #e2efff;
}

.dm-special-icon img {
    width: 39px;
    height: 39px;
    object-fit: contain;
}

.dm-special-card h4 {
    margin-bottom: 17px;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 500;
}

.dm-special-card p {
    min-height: 83px;
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.55;
}

.dm-special-card .dm-card-btn {
    width: 230px;
    min-width: 0;
    height: 50px;
    min-height: 50px;
    margin-top: 0;
    padding: 10px 20px;
    border-radius: 7px;
    font-size: 16px;
    font-weight: 500;
}

/* Large tablet / small laptop */


/* Tablet layout */


/* Mobile layout */


/* Very small phones */


/* Final desktop hero image crop/scale to match the Figma frame. */


/* Softer, more widely spaced Figma background motif. */
.dm-pattern-bg {
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='340' height='300' viewBox='0 0 340 300'%3E%3Cg fill='none' stroke='%23dcefff' stroke-width='2' opacity='.34'%3E%3Cpath d='M18 20l12-7 12 7v14l-12 7-12-7zM42 34l12-7 12 7v14l-12 7-12-7zM18 48l12-7 12 7v14l-12 7-12-7z'/%3E%3Cpath d='M280 232l12-7 12 7v14l-12 7-12-7zM304 246l12-7 12 7v14l-12 7-12-7zM280 260l12-7 12 7v14l-12 7-12-7z'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 520px 458px;
}

/* =====================================================
   FLUID DESKTOP/TABLET BASE — NO EXTRA MEDIA QUERIES
   All widths above 767px use flexible CSS values.
===================================================== */
.dm-container {
    width: min(calc(100% - clamp(28px, 5vw, 80px)), 1616px);
}

.dm-hero-content {
    width: min(930px, 59vw);
    max-width: none;
}

.dm-hero-content h1 {
    /* font-size: clamp(50px, 4.05vw, 64px); */
    line-height: 1.27;
}

.dm-hero-text {
    font-size: clamp(18px, 1.1vw, 21px);
}

.dm-hero-content h5 {
    font-size: clamp(20px, 1.25vw, 24px);
}

.dm-feature-pill {
    width: min(928px, 100%);
    grid-template-columns: 28% 34% 1fr;
}

.dm-feature-pill span {
    font-size: clamp(17px, 1.05vw, 20px);
}

.dm-hero-visual {
    width: min(900px, max(620px, 58vw));
    right: clamp(-35px, calc(6.944vw - 118.33px), 0px);
}

.dm-hero-img {
    width: min(820px, max(520px, 51.25vw));
    right: clamp(-25px, calc(-7.76vw + 124px), 18px);
    bottom: clamp(-100px, calc(-26.49vw + 408.6px), -2px);
}

.dm-hero-circle {
    width: clamp(560px, calc(9.93vw + 489.4px), 680px);
    height: clamp(560px, calc(9.93vw + 489.4px), 680px);
    right: clamp(28px, calc(5.05vw - 27px), 70px);
}

.dm-career-card {
    right: clamp(-80px, calc(-18.9vw + 283px), -10px);
}

.dm-demand-card {
    right: clamp(-105px, calc(-21.9vw + 315.5px), -24px);
}

.dm-help-photo {
    height: auto;
    aspect-ratio: 620 / 752;
}




/* =====================================================
   FINAL COMPONENT UPDATES
===================================================== */

/* Specialization hover: blue line appears only on hover/focus without moving content. */
.dm-special-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-left: 0 !important;
    transition: transform .25s ease, box-shadow .25s ease;
}

.dm-special-card::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 0;
    width: 3px;
    border-radius: 8px 0 0 8px;
    background: var(--dm-blue);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .25s ease;
}

.dm-special-card:hover,
.dm-special-card:focus-within {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(17, 84, 224, .17);
}

.dm-special-card:hover::before,
.dm-special-card:focus-within::before {
    transform: scaleY(1);
}

/* Local image icons prevent missing Bootstrap-icon glyphs in key sections. */
.dm-list-image,
.dm-trust-icon {
    overflow: hidden;
}

.dm-list-image img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.dm-trust-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: #dfeeff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dm-trust-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

/* Google reviews section */
.dm-google-reviews {
    padding: 78px 0 92px;
    background-color: #fff;
}

.dm-google-heading {
    margin-bottom: 54px;
}

.dm-google-heading h2 {
    color: var(--dm-blue);
    margin-bottom: 16px;
}

.dm-google-heading p {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    color: #111;
}

.dm-google-heading p span {
    margin: 0 6px;
    color: #f6a800;
}

.dm-google-review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.dm-google-card {
    min-width: 0;
    padding: 18px 20px 14px;
    border: 1px solid #c8c8c8;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.dm-google-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .10);
}

.dm-google-card-head,
.dm-google-brand,
.dm-google-summary,
.dm-rating-main,
.dm-google-review-item {
    display: flex;
}

.dm-google-card-head {
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ececec;
}

.dm-google-brand {
    min-width: 0;
    align-items: center;
    gap: 9px;
}

.dm-google-brand > div {
    min-width: 0;
}

.dm-google-brand strong,
.dm-google-brand small {
    display: block;
}

.dm-google-brand strong {
    overflow: hidden;
    font-size: 14px;
    line-height: 1.3;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.dm-google-brand small {
    margin-top: 2px;
    color: #777;
    font-size: 10px;
}

.dm-google-g {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0);
    color: #4285f4;
    font-size: 18px;
    font-weight: 800;
    box-shadow: inset 0 0 0 7px #fff;
}

.dm-write-review {
    flex: 0 0 auto;
    border-radius: 4px;
    padding: 6px 9px;
    background: #1a73e8;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    text-decoration: none;
}

.dm-write-review:hover {
    color: #fff;
    background: #155ec0;
}

.dm-google-summary {
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0 13px;
    border-bottom: 1px solid #ececec;
}

.dm-rating-main {
    flex: 0 0 auto;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px 7px;
    max-width: 125px;
}

.dm-rating-main strong {
    font-size: 28px;
    line-height: 1;
}

.dm-rating-main small {
    width: 100%;
    color: #666;
    font-size: 10px;
}

.dm-review-stars {
    color: #f6a800;
    font-size: 14px;
    letter-spacing: 1px;
    white-space: nowrap;
}

.dm-review-stars.small {
    display: block;
    margin: 3px 0 5px;
    font-size: 10px;
}

.dm-rating-bars {
    flex: 1 1 auto;
    max-width: 180px;
}

.dm-rating-bars span {
    display: grid;
    grid-template-columns: 10px 1fr 26px;
    gap: 6px;
    align-items: center;
    margin: 3px 0;
    color: #666;
    font-size: 8px;
}

.dm-rating-bars b,
.dm-rating-bars small {
    font-weight: 500;
}

.dm-rating-bars i {
    height: 4px;
    overflow: hidden;
    border-radius: 10px;
    background: #eceff3;
}

.dm-rating-bars em {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #f6a800;
}

.dm-review-tags {
    display: flex;
    gap: 6px;
    padding: 12px 0;
    overflow: hidden;
    border-bottom: 1px solid #ececec;
}

.dm-review-tags span {
    flex: 0 0 auto;
    padding: 4px 8px;
    border: 1px solid #d9dee7;
    border-radius: 999px;
    color: #4f5967;
    background: #fff;
    font-size: 8px;
    white-space: nowrap;
}

.dm-review-tags span:first-child {
    border-color: #8ab4f8;
    background: #f1f6ff;
    color: #1a73e8;
}

.dm-google-review-item {
    align-items: flex-start;
    gap: 9px;
    padding: 12px 0;
    border-bottom: 1px solid #ececec;
}

.dm-google-review-item:last-child {
    padding-bottom: 2px;
    border-bottom: 0;
}

.dm-google-review-item > div {
    min-width: 0;
}

.dm-google-review-item strong,
.dm-google-review-item small {
    display: block;
}

.dm-google-review-item strong {
    font-size: 11px;
}

.dm-google-review-item small {
    color: #777;
    font-size: 8px;
}

.dm-google-review-item p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: #333;
    font-size: 9px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.dm-review-avatar {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #6a1b9a;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.dm-review-avatar.teal { background: #00897b; }
.dm-review-avatar.blue { background: #1a73e8; }
.dm-review-avatar.orange { background: #ef6c00; }
.dm-review-avatar.pink { background: #d81b60; }
.dm-review-avatar.green { background: #2e7d32; }


/* =====================================================
   ALL MOBILE RESPONSIVE CSS IN ONE MEDIA QUERY
===================================================== */
@media (max-width: 767px) {


    /* ---- Consolidated mobile rules: original block 1 ---- */
body {
        font-size: 16px;
    }

    .dm-container {
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .dm-hero {
        min-height: auto;
        padding: 24px 0 36px;
        background: linear-gradient(180deg, #ffffff 0%, #f0f6ff 100%);
    }

    .dm-hero-content {
        padding: 0;
        text-align: center;
    }

    .dm-hero-content h1 {
        font-size: 36px;
        line-height: 1.16;
        letter-spacing: -0.8px;
        margin-bottom: 18px;
    }

    .dm-hero-text {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .dm-hero-content h5 {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 18px;
    }

    .dm-feature-pill {
        width: 100%;
        border-radius: 16px;
        display: grid;
        grid-template-columns: 1fr;
        margin-bottom: 26px;
    }

    .dm-feature-pill span {
        font-size: 15px;
        padding: 12px 14px;
        border-right: 0;
        border-bottom: 1px solid #d4d8df;
        white-space: normal;
    }

    .dm-feature-pill span:last-child {
        border-bottom: 0;
    }

    .dm-hero-actions {
        gap: 12px;
    }

    .dm-btn-primary,
    .dm-btn-outline,
    .dm-card-btn {
        width: 100%;
        min-height: 52px;
        font-size: 17px;
        padding: 12px 18px;
    }

    .dm-hero-visual {
        min-height: auto;
        padding: 22px 0 0;
        align-items: center;
        flex-direction: column;
    }

    .dm-hero-circle {
        width: 280px;
        height: 280px;
        right: auto;
        top: 10px;
    }

    .dm-hero-img {
        width: 86%;
        margin: 0 auto;
    }

    .dm-float-card {
        position: static;
        width: 100%;
        margin-top: 14px;
        border-radius: 14px;
    }

    .dm-career-card {
        min-height: auto;
        padding: 18px;
        gap: 15px;
        text-align: left;
    }

    .dm-float-icon {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .dm-career-card h4 {
        font-size: 20px;
        margin: 4px 0 10px;
    }

    .dm-career-card li {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .dm-demand-card {
        min-height: auto;
        padding: 18px;
        text-align: center;
    }

    .dm-black-icon {
        font-size: 40px;
        margin-bottom: 12px;
    }

    .dm-trust-strip {
        padding: 20px 0;
        text-align: center;
    }

    .dm-review-box,
    .dm-trusted-text,
    .dm-avatar-list {
        justify-content: center;
        flex-direction: column;
        gap: 14px;
    }

    .dm-trusted-text p {
        font-size: 15px;
        line-height: 1.5;
    }

    .dm-trusted-text i {
        font-size: 34px;
    }

    .dm-avatar-list {
        flex-direction: row;
    }

    .dm-avatar-list img {
        width: 52px;
        height: 52px;
    }

    .dm-brand-section,
    .dm-problem-pills,
    .dm-outcomes,
    .dm-help-section,
    .dm-specialization,
    .dm-certificate,
    .dm-demand-section,
    .dm-confusion,
    .dm-understand,
    .dm-how-it-works,
    .dm-platform {
        padding: 42px 0;
    }

    .dm-brand-card {
        padding: 20px 16px 24px;
        margin-bottom: 50px;
        border-radius: 14px;
    }

    .dm-brand-card h3 {
        font-size: 19px;
        line-height: 1.4;
        margin-bottom: 24px;
    }

    .dm-logo-track {
        gap: 28px;
    }

    .dm-logo-track span {
        min-width: 115px;
        font-size: 20px;
    }

    .dm-center-heading h2,
    .dm-section-title h2 {
        font-size: 30px;
        line-height: 1.25;
    }

    .dm-center-heading p,
    .dm-section-title p {
        font-size: 16px;
        margin-top: 10px;
    }

    .dm-pill-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .dm-small-card:nth-child(n) {
        grid-column: auto;
    }

    .dm-small-card {
        min-height: 96px;
        justify-content: flex-start;
        gap: 20px;
        padding: 18px;
    }

    .dm-small-card i {
        width: 58px;
        height: 58px;
        flex: 0 0 58px;
        font-size: 25px;
    }

    .dm-small-card h4 {
        font-size: 20px;
        line-height: 1.35;
    }

    .dm-outcome-card {
        min-height: auto;
        padding: 26px 24px 58px;
        border-right: 0;
        border-bottom: 1px solid #ddd;
    }

    .dm-xmark {
        right: 22px;
        top: 12px;
        width: 34px;
        height: 34px;
        font-size: 24px;
    }

    .dm-outcome-icon {
        width: 82px;
        height: 82px;
        font-size: 34px;
        margin-bottom: 22px;
    }

    .dm-outcome-card h4 {
        font-size: 21px;
        min-height: auto;
    }

    .dm-outcome-card p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .dm-note-box {
        padding: 22px 18px;
        gap: 16px;
        align-items: flex-start;
    }

    .dm-note-box i {
        width: 52px;
        height: 52px;
        flex: 0 0 52px;
        font-size: 25px;
    }

    .dm-note-box p {
        font-size: 16px;
    }

    .dm-icon-list li {
        gap: 16px;
        font-size: 17px;
        padding: 12px 0;
    }

    .dm-icon-list span {
        width: 54px;
        height: 54px;
        flex: 0 0 54px;
        font-size: 22px;
    }

    .dm-photo {
        margin-top: 8px;
        border-radius: 12px;
    }

    .dm-special-card {
        max-width: 100%;
        min-height: auto;
        padding: 24px 20px;
    }

    .dm-special-card p {
        min-height: auto;
        font-size: 16px;
    }

    .dm-special-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 20px;
    }

    .dm-certificate-img {
        margin: 0 auto;
    }

    .dm-check-list {
        margin-bottom: 28px;
    }

    .dm-check-list li {
        font-size: 16px;
        gap: 14px;
        margin-bottom: 18px;
        align-items: flex-start;
    }

    .dm-demand-box {
        padding: 24px 16px;
        border-radius: 14px;
    }

    .dm-demand-box h3 {
        font-size: 21px;
        margin-bottom: 24px;
    }

    .dm-tags {
        gap: 12px;
        margin-bottom: 28px;
    }

    .dm-tags span {
        width: 100%;
        font-size: 15px;
        padding: 12px 16px;
    }

    .dm-demand-box h4 {
        font-size: 19px;
        line-height: 1.45;
    }

    .dm-confusion h2 {
        font-size: 23px;
        line-height: 1.4;
        text-align: center;
    }

    .dm-question-list li {
        gap: 18px;
        font-size: 17px;
        margin-bottom: 16px;
    }

    .dm-question-list span {
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
    }

    .dm-goal-box {
        padding: 18px;
        font-size: 18px;
        justify-content: center;
        text-align: center;
    }

    .dm-goal-box i {
        font-size: 28px;
    }

    .dm-understand h5 {
        font-size: 17px;
        line-height: 1.5;
    }

    .dm-how-box {
        padding: 32px 16px;
        border-radius: 14px;
    }

    .dm-how-box h4 {
        font-size: 24px;
    }

    .dm-step-wrap {
        flex-direction: column;
        gap: 20px;
    }

    .dm-step-wrap::before,
    .dm-step-card::after {
        display: none;
    }

    .dm-step-card {
        width: 100%;
        min-height: auto;
        padding: 24px 18px;
    }

    .dm-step-card img {
        width: 128px;
        height: 100px;
    }

    .dm-step-card h4 {
        min-height: auto;
        font-size: 22px;
    }

    .dm-step-card p {
        font-size: 16px;
    }

    .dm-trust-card {
        min-height: auto;
        padding: 24px 18px;
    }

    .dm-trust-card h4 {
        font-size: 20px;
    }

    .dm-trust-card p {
        font-size: 16px;
    }

    /* ---- Consolidated mobile rules: original block 2 ---- */
.dm-site-header {
        position: sticky;
    }

    .dm-navbar {
        min-height: 68px;
        padding: 8px 0;
    }

    .dm-brand > span {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .dm-brand strong {
        font-size: 20px;
    }

    .dm-brand small {
        font-size: 10px;
    }

    .dm-nav-links {
        padding: 16px 0 8px;
        align-items: stretch !important;
    }

    .dm-nav-links .nav-link {
        padding: 12px 14px !important;
        border-radius: 10px;
    }

    .dm-nav-btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 8px;
    }

    .dm-guidance-section,
    .dm-video-section,
    .dm-topic-section,
    .dm-faq-section,
    .dm-final-cta,
    .dm-footer {
        padding: 42px 0;
    }

    .dm-guidance-copy {
        text-align: left;
    }

    .dm-guidance-copy h2 {
        font-size: 31px;
        line-height: 1.25;
    }

    .dm-guidance-copy h3 {
        font-size: 21px;
    }

    .dm-guidance-copy ul {
        margin-bottom: 30px;
    }

    .dm-guidance-copy li {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .dm-guidance-proof {
        grid-template-columns: 1fr;
        padding: 18px;
        gap: 16px;
    }

    .dm-proof-item {
        padding: 0 0 16px !important;
        border-right: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.16);
    }

    .dm-proof-item:last-child {
        padding-bottom: 0 !important;
        border-bottom: 0;
    }

    .dm-proof-item strong {
        font-size: 16px;
    }

    .dm-proof-item span {
        font-size: 14px;
    }

    .dm-form-card {
        padding: 24px 16px;
        border-radius: 14px;
    }

    .dm-form-card h3 {
        font-size: 22px;
    }

    .dm-captcha-box {
        width: 100%;
        margin-bottom: 24px;
    }

    .dm-privacy {
        align-items: flex-start;
        text-align: left;
        font-size: 12px;
    }

    .dm-video-card img {
        height: 340px;
    }

    .dm-play-btn {
        width: 56px;
        height: 56px;
        font-size: 36px;
    }

    .dm-topic-card img {
        height: 190px;
    }

    .dm-topic-body h3 {
        font-size: 18px;
    }

    .dm-view-more {
        min-width: 100%;
    }

    .dm-faq-accordion .accordion-item {
        border-radius: 12px;
        margin-bottom: 12px;
    }

    .dm-faq-accordion .accordion-button {
        min-height: 68px;
        font-size: 17px;
        padding: 18px 44px 18px 18px;
        line-height: 1.35;
    }

    .dm-faq-accordion .accordion-body {
        padding: 18px;
        font-size: 15px;
    }

    .dm-final-cta h2 {
        font-size: 28px;
        line-height: 1.35;
    }

    .dm-final-cta p {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .dm-final-actions {
        gap: 14px;
    }

    .dm-cta-light,
    .dm-cta-outline {
        width: 100%;
        min-width: unset;
        min-height: 56px;
        font-size: 18px;
    }

    .dm-footer {
        text-align: left;
    }

    .dm-footer-bottom {
        margin-top: 28px;
        display: block;
    }

    .dm-footer-bottom span {
        display: block;
        margin-bottom: 10px;
    }

    /* ---- Consolidated mobile rules: original block 3 ---- */
.dm-container {
        width: calc(100% - 28px);
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .dm-hero {
        padding: 28px 0 0;
        background: linear-gradient(180deg, #fff 0%, #f0f6ff 100%);
    }

    .dm-hero-content {
        text-align: left;
    }

    .dm-hero-content h1 {
        margin-bottom: 18px;
        font-size: clamp(34px, 10vw, 43px);
        line-height: 1.17;
        letter-spacing: -.7px;
    }

    .dm-hero-content h1 .dm-title-line {
        white-space: normal;
    }

    .dm-hero-text {
        margin-bottom: 12px;
        font-size: 16px;
        line-height: 1.5;
    }

    .dm-hero-content h5 {
        margin-bottom: 20px;
        font-size: 17px;
        line-height: 1.45;
    }

    .dm-feature-pill {
        width: 100%;
        height: auto;
        margin-bottom: 22px;
        grid-template-columns: 1fr;
        border-radius: 16px;
    }

    .dm-feature-pill span {
        min-height: 48px;
        padding: 10px 14px;
        border-right: 0;
        border-bottom: 1px solid #d2d6dc;
        font-size: 15px;
        white-space: normal;
        text-align: center;
    }

    .dm-feature-pill span:last-child {
        border-bottom: 0;
    }

    .dm-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .dm-btn-primary,
    .dm-btn-outline {
        width: 100%;
        min-width: 0;
        height: 56px;
        min-height: 56px;
        font-size: 18px;
    }

    .dm-hero-visual {
        width: 100%;
        height: 500px;
        margin-top: 16px;
    }

    .dm-hero-circle {
        top: 18px;
        width: 360px;
        height: 360px;
    }

    .dm-hero-img {
        width: 440px;
        right: 50%;
        bottom: -4px;
        transform: translateX(50%);
    }

    .dm-float-card {
        position: absolute;
        margin: 0;
    }

    .dm-career-card {
        top: 10px;
        right: 0;
        width: 250px;
        height: 158px;
        min-height: 158px;
        padding: 15px 14px;
        gap: 12px;
        border-radius: 14px;
    }

    .dm-float-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        font-size: 19px;
    }

    .dm-career-card h4 {
        margin: 2px 0 8px;
        font-size: 17px;
    }

    .dm-career-card li {
        margin-bottom: 5px;
        gap: 6px;
        font-size: 10px;
    }

    .dm-career-card li i {
        font-size: 10px;
    }

    .dm-demand-card {
        top: auto;
        right: 0;
        bottom: 18px;
        width: 154px;
        height: 135px;
        min-height: 135px;
        padding: 16px;
        text-align: left;
        border-radius: 14px;
    }

    .dm-black-icon {
        margin-bottom: 8px;
        font-size: 34px;
    }

    .dm-demand-card h5 {
        margin-bottom: 4px;
        font-size: 13px;
    }

    .dm-demand-card p {
        font-size: 10px;
        line-height: 1.4;
    }

    .dm-trust-strip {
        min-height: 0;
        padding: 24px 0;
    }

    .dm-brand-section {
        padding-top: 28px;
    }

    .dm-brand-card {
        margin-bottom: 48px;
        padding: 20px 16px 22px;
    }

    .dm-logo-track img {
        height: 48px;
        max-width: 170px;
    }

    .dm-center-heading h2 {
        font-size: 29px;
        line-height: 1.28;
    }

    .dm-help-section {
        padding: 44px 0;
    }

    .dm-help-section .dm-section-title h2 {
        font-size: 31px;
        line-height: 1.3;
    }

    .dm-help-section .dm-section-title p {
        font-size: 17px;
    }

    .dm-help-section .dm-icon-list li {
        gap: 15px;
        font-size: 16px;
    }

    .dm-help-section .dm-icon-list span {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
        font-size: 21px;
    }

    .dm-help-promise {
        margin-top: 24px;
        font-size: 16px;
    }

    .dm-help-photo {
        width: 100%;
        height: auto;
        margin-top: 12px;
    }

    .dm-specialization {
        padding: 48px 0 58px;
    }

    .dm-special-grid {
        row-gap: 18px;
    }

    .dm-special-card {
        width: 100%;
        min-height: 0;
        padding: 25px 20px;
    }

    .dm-special-card p {
        min-height: 0;
    }

    /* Final mobile structure. These rules also replace the removed tablet breakpoint. */
    :root {
        --dm-hero-height: auto;
    }

    .dm-hero {
        height: auto;
        min-height: 0;
        overflow: hidden;
    }

    .dm-hero-shell {
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .dm-hero-content {
        position: relative;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
    }

    /* Small-phone scaling is handled here too; no second breakpoint is required. */
    .dm-hero-content h1 {
        font-size: clamp(33px, 10vw, 43px);
    }

    .dm-hero-visual {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        height: clamp(460px, 130vw, 500px);
        margin-top: 16px;
        display: block;
        padding: 0;
    }

    .dm-hero-img {
        width: clamp(405px, 115vw, 440px);
    }

    .dm-career-card {
        width: clamp(232px, 64vw, 250px);
    }



    /* ---- Final mobile additions ---- */
    .dm-hero-visual {
        order: 1;
    }

    .dm-hero-content {
        order: 2;
        padding-top: 24px;
    }

    /* In every split image/content section, show the image first on mobile. */
    .dm-help-section .row > div:first-child,
    .dm-demand-box .row > div:first-child,
    .dm-understand .row > div:first-child {
        order: 2;
    }

    .dm-help-section .row > div:last-child,
    .dm-demand-box .row > div:last-child,
    .dm-understand .row > div:last-child {
        order: 1;
    }

    .dm-help-photo,
    .dm-growth-img,
    .dm-understand .dm-photo {
        margin-top: 0;
        margin-bottom: 22px;
    }

    .dm-special-card:hover,
    .dm-special-card:focus-within {
        transform: none;
    }

    .dm-special-card::before {
        width: 3px;
    }

    .dm-list-image {
        width: 58px;
        height: 58px;
        flex: 0 0 58px;
    }

    .dm-list-image img {
        width: 32px;
        height: 32px;
    }

    .dm-understand-list li {
        align-items: center;
    }

    .dm-trust-icon {
        width: 76px;
        height: 76px;
        margin-bottom: 18px;
    }

    .dm-trust-icon img {
        width: 40px;
        height: 40px;
    }

    .dm-google-reviews {
        padding: 46px 0 54px;
    }

    .dm-google-heading {
        margin-bottom: 30px;
    }

    .dm-google-heading p {
        font-size: 17px;
        line-height: 1.5;
    }

    .dm-google-review-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .dm-google-card {
        padding: 16px 14px 12px;
    }

    .dm-google-card:hover {
        transform: none;
    }

    .dm-google-brand strong {
        font-size: 12px;
    }

    .dm-google-brand small {
        font-size: 9px;
    }

    .dm-write-review {
        padding: 6px 8px;
        font-size: 9px;
    }

    .dm-google-summary {
        gap: 14px;
    }

    .dm-rating-bars {
        max-width: 150px;
    }

    .dm-google-review-item p {
        font-size: 10px;
        -webkit-line-clamp: 4;
    }

}

/* =====================================================
   SCROLL-TO-TOP BUTTON
===================================================== */
.dm-scroll-top {
    --scroll-progress: 0deg;
    position: fixed;
    right: clamp(16px, 2vw, 30px);
    bottom: clamp(16px, 2vw, 30px);
    z-index: 1055;
    width: clamp(52px, 4vw, 62px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    padding: 5px;
    border: 0;
    border-radius: 50%;
    background: conic-gradient(
        #2cad68 var(--scroll-progress),
        #dff3e7 var(--scroll-progress)
    );
    box-shadow: 0 12px 32px rgba(17, 65, 38, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.9);
    transition: opacity 0.25s ease, visibility 0.25s ease,
        transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.dm-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dm-scroll-top:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 36px rgba(17, 65, 38, 0.28);
}

.dm-scroll-top:active {
    transform: translateY(-1px) scale(0.97);
}

.dm-scroll-top:focus-visible {
    outline: 3px solid rgba(30, 89, 232, 0.32);
    outline-offset: 4px;
}

.dm-scroll-top-inner {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(18, 39, 27, 0.04);
}

.dm-scroll-top svg {
    width: clamp(24px, 2vw, 29px);
    height: clamp(24px, 2vw, 29px);
    fill: none;
    stroke: #07152e;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
}

