 
        /* ===== HERO SECTION ===== */
        .dt-hero-section {
            background: #000;
            padding: 30px 0;
            position: relative;
            overflow: hidden;
        }
        .dt-hero-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(ellipse at 70% 50%, rgba(0, 80, 200, 0.18) 0%, transparent 70%);
            pointer-events: none;
        }
        .dt-hero-dashboard{
    margin-top: -220px;
}
        .dt-hero-badge-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 28px;
        }
        .dt-hero-badge {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.15);
            color: #a0b8d8;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.06em;
            padding: 6px 14px;
            border-radius: 4px;
            text-transform: uppercase;
        }
        .dt-hero-h1 {
            font-size: clamp(26px, 4vw, 46px);
            font-weight: 800;
            color: #fff;
            line-height: 1.18;
            margin-bottom: 22px;
            letter-spacing: -0.02em;
        }
        .dt-hero-h1 span {
            color: #1a6fdb;
        }
        .dt-hero-subtext {
            color: #8aa4c0;
            font-size: 16px;
            line-height: 1.75;
            margin-bottom: 36px;
            max-width: 600px;
        }
        .dt-hero-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 36px;
        }
        .dt-hero-btn-primary {
            background: #1a6fdb;
            color: #fff;
            border: none;
            padding: 14px 28px;
            font-size: 15px;
            font-weight: 700;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.2s;
            text-decoration: none;
            display: inline-block;
        }
        .dt-hero-btn-primary:hover {
            background: #1459b3;
            color: #fff;
            text-decoration: none;
        }
        .dt-hero-btn-outline {
            background: transparent;
            color: #fff;
            border: 1px solid rgba(255,255,255,0.3);
            padding: 14px 28px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 6px;
            cursor: pointer;
            transition: border-color 0.2s, background 0.2s;
            text-decoration: none;
            display: inline-block;
        }
        .dt-hero-btn-outline:hover {
            border-color: #1a6fdb;
            background: rgba(26,111,219,0.08);
            color: #fff;
            text-decoration: none;
        }
        .dt-hero-dashboard {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.10);
            border-radius: 14px;
            padding: 28px 22px;
            position: relative;
        }
        .dt-hero-dashboard-title {
            color: #a0b8d8;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 20px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            padding-bottom: 12px;
        }
        .dt-hero-dashboard-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 12px;
        }
        .dt-hero-dash-item {
            background: rgba(26,111,219,0.10);
            border: 1px solid rgba(26,111,219,0.2);
            border-radius: 8px;
            padding: 14px 10px;
            text-align: center;
        }
        .dt-hero-dash-item-icon {
            width: 42px;
            height: 42px;
            margin: 0 auto 8px;
            background: #fff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .dt-hero-dash-item-icon img {
            width: 42px;
            height: auto;
        }
        .dt-hero-dash-item-label {
            color: #8aa4c0;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }
        .dt-hero-pulse {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #22c55e;
            display: inline-block;
            margin-right: 6px;
            animation: dt-pulse 1.8s ease-in-out infinite;
        }
        @keyframes dt-pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.8); }
        }
        .dt-hero-status {
            color: #22c55e;
            font-size: 11px;
            font-weight: 600;
            margin-top: 16px;
            display: flex;
            align-items: center;
        }
/* Mobile Responsive */
@media (max-width: 767px) {

    .dt-hero-section{
        padding: 50px 0;
    }

    .dt-hero-h1{
        font-size: 32px !important;
        line-height: 1.25;
        text-align: center;
    }

    .dt-hero-subtext{
        text-align: center;
        font-size: 15px;
    }

    .dt-hero-badge-row{
        justify-content: center;
        gap: 8px;
    }

    .dt-hero-badge{
        font-size: 11px;
        padding: 6px 10px;
    }

    .dt-hero-cta-group{
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .dt-hero-btn-primary,
    .dt-hero-btn-outline{
        width: 100%;
        text-align: center;
    }

    .dt-hero-dashboard{
        margin-top: 20px;
    }

    .dt-hero-dashboard-title{
        text-align: center;
    }

    .dt-hero-dashboard-grid{
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }

    .dt-hero-dash-item{
        min-height: 90px;
    }

    .dt-hero-dash-item-label{
        font-size: 13px;
    }

    .dt-hero-status{
        text-align: center;
        font-size: 13px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px){

    .dt-hero-h1{
        font-size: 28px !important;
    }

    .dt-hero-dashboard-grid{
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .dt-hero-badge{
        font-size: 10px;
        padding: 5px 8px;
    }
}
        /* ===== STATS SECTION ===== */
        .dt-stats-section {
            background: #0a0f1a;
            padding: 60px 0;
            border-top: 1px solid rgba(255,255,255,0.06);
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
        .dt-stats-heading {
            font-size: clamp(22px, 3vw, 34px);
            font-weight: 800;
            color: #fff;
            text-align: center;
            margin-bottom: 48px;
            letter-spacing: -0.02em;
        }
        .dt-stats-heading span {
            color: #1a6fdb;
        }
        .dt-kpi-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.09);
            border-radius: 12px;
            padding: 36px 24px;
            text-align: center;
            transition: border-color 0.2s, transform 0.2s;
            margin-bottom: 24px;
        }
        .dt-kpi-card:hover {
            border-color: rgba(26,111,219,0.5);
            transform: translateY(-4px);
        }
        .dt-kpi-number {
            font-size: 52px;
            font-weight: 900;
            color: #1a6fdb;
            line-height: 1;
            margin-bottom: 10px;
            letter-spacing: -0.03em;
        }
        .dt-kpi-label {
            color: #8aa4c0;
            font-size: 14px;
            font-weight: 500;
            line-height: 1.4;
        }
        .dt-stats-note {
            text-align: center;
            color: #6080a0;
            font-size: 13px;
            margin-top: 24px;
        }

        /* ===== WHAT IS DT SECTION ===== */
        .dt-definition-section {
            background: #FAFAF8;
            padding: 60px 0;
        }
        .dt-definition-heading {
            font-size: clamp(22px, 3vw, 34px);
            font-weight: 800;
            color: #0a0f1a;
            margin-bottom: 28px;
            letter-spacing: -0.02em;
        }
        .dt-definition-heading span {
            color: #1a6fdb;
        }
        .dt-definition-body {
            color: #3a4a5a;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 0;
        }
        .dt-definition-illustration {
            width: 100%;
            min-height: 260px;
            background: linear-gradient(135deg, #0a0f1a 0%, #0d2044 100%);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        .dt-definition-illustration::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 60% 40%, rgba(26,111,219,0.3) 0%, transparent 60%);
        }
        .dt-def-illustration-inner {
            position: relative;
            z-index: 1;
            text-align: center;
            padding: 20px;
        }
        .dt-def-illustration-img {
            width: 80px;
            height: 80px;
            margin: 0 auto 16px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .dt-def-illustration-img img {
            width: 100px;
            height: auto;
          
        }
        .dt-def-illustration-text {
            color: rgba(255,255,255,0.6);
            font-size: 13px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-weight: 600;
        }
        .dt-def-tag-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 24px;
        }
        .dt-def-tag {
            background: rgba(26,111,219,0.08);
            border: 1px solid rgba(26,111,219,0.2);
            color: #1a6fdb;
            font-size: 12px;
            font-weight: 600;
            padding: 5px 12px;
            border-radius: 20px;
        }

        /* ===== CHALLENGES SECTION ===== */
        .dt-challenges-section {
            background: #0a0f1a;
            padding: 60px 0;
        }
        .dt-challenges-heading {
            font-size: clamp(22px, 3vw, 34px);
            font-weight: 800;
            color: #fff;
            text-align: center;
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }
        .dt-challenges-subtext {
            color: #6080a0;
            text-align: center;
            font-size: 16px;
            margin-bottom: 48px;
            max-width: 640px;
            margin-left: auto;
            margin-right: auto;
        }
        .dt-challenge-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-left: 3px solid #c0392b;
            border-radius: 10px;
            padding: 28px 24px;
            margin-bottom: 24px;
            transition: border-left-color 0.25s, background 0.25s, transform 0.25s;
            height: 100%;
        }
        .dt-challenge-card:hover {
            background: rgba(26,111,219,0.06);
            border-left-color: #1a6fdb;
            transform: translateX(4px);
        }
        .dt-challenge-card-icon {
            width: 40px;
            height: 40px;
            background: #fff;
            border-radius: 8px;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.25s;
        }
        .dt-challenge-card:hover .dt-challenge-card-icon {
            background: rgba(26,111,219,0.18);
        }
        .dt-challenge-card-icon img {
            width: 45px;
            height: auto;
        }
        .dt-challenge-card-title {
            color: #fff;
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .dt-challenge-card-body {
            color: #7090b0;
            font-size: 14px;
            line-height: 1.7;
        }
        .dt-challenge-pullquote {
            background: rgba(26,111,219,0.08);
            border: 1px solid rgba(26,111,219,0.2);
            border-radius: 10px;
            padding: 24px 28px;
            margin: 32px 0;
        }
        .dt-challenge-pullquote p {
            color: #a0c0e0;
            font-size: 17px;
            font-style: italic;
            font-weight: 500;
            margin: 0;
            line-height: 1.6;
        }
        .dt-challenge-cta {
            text-align: center;
            margin-top: 36px;
        }
        .dt-challenge-cta a {
            color: #1a6fdb;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s;
        }
        .dt-challenge-cta a:hover {
            border-bottom-color: #1a6fdb;
        }

        /* ===== CONSULTING FRAMEWORK SECTION ===== */
        .dt-consulting-section {
            background: #FAFAF8;
            padding: 60px 0;
        }
        .dt-consulting-heading {
            font-size: clamp(22px, 3vw, 34px);
            font-weight: 800;
            color: #0a0f1a;
            text-align: center;
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }
        .dt-consulting-heading span {
            color: #1a6fdb;
        }
        .dt-consulting-intro {
            text-align: center;
            color: #4a5a6a;
            font-size: 16px;
            margin-bottom: 48px;
            max-width: 680px;
            margin-left: auto;
            margin-right: auto;
        }
        .dt-consulting-stage-card {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-top: 4px solid #1a6fdb;
            border-radius: 10px;
            padding: 28px 22px;
            margin-bottom: 24px;
            transition: box-shadow 0.2s, transform 0.2s;
            height: 100%;
        }
        .dt-consulting-stage-card:hover {
            box-shadow: 0 8px 32px rgba(26,111,219,0.12);
            transform: translateY(-4px);
        }
        .dt-consulting-stage-num {
            font-size: 11px;
            font-weight: 800;
            color: #1a6fdb;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 6px;
        }
        .dt-consulting-stage-icon {
            width: 44px;
            height: 44px;
            background: rgba(26,111,219,0.08);
            border-radius: 10px;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .dt-consulting-stage-icon img {
            width: 65px;
            height: auto;
        }
        .dt-consulting-stage-title {
            font-size: 17px;
            font-weight: 700;
            color: #0a0f1a;
            margin-bottom: 10px;
        }
        .dt-consulting-stage-body {
            color: #4a5a6a;
            font-size: 14px;
            line-height: 1.7;
        }
        .dt-consulting-vendor-badge {
            display: inline-block;
            background: rgba(26,111,219,0.08);
            border: 1px solid rgba(26,111,219,0.25);
            color: #1a6fdb;
            font-size: 12px;
            font-weight: 700;
            padding: 5px 14px;
            border-radius: 4px;
            margin-top: 10px;
            letter-spacing: 0.04em;
        }
        .dt-consulting-cta {
            text-align: center;
            margin-top: 36px;
        }

        /* ===== CORE SERVICES SECTION ===== */
        .dt-services-section {
            background: #0a0f1a;
            padding: 30px 0;
        }
        .dt-services-heading {
            font-size: clamp(22px, 3vw, 34px);
            font-weight: 800;
            color: #fff;
            text-align: center;
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }
        .dt-services-intro {
            text-align: center;
            color: #6080a0;
            font-size: 16px;
            margin-bottom: 48px;
            max-width: 680px;
            margin-left: auto;
            margin-right: auto;
        }
        .dt-service-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px;
            padding: 28px 22px;
            margin-bottom: 24px;
            transition: border-color 0.2s, background 0.2s, transform 0.2s;
            height: 100%;
        }
        .dt-service-card:hover {
            border-color: rgba(26,111,219,0.5);
            background: rgba(26,111,219,0.05);
            transform: translateY(-4px);
        }
        .dt-service-card-icon {
            width: 48px;
            height: 48px;
            background: #fff;
            border-radius: 10px;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .dt-service-card-icon img {
            width: 56px;
            height: auto;
        }
        .dt-service-card-title {
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .dt-service-card-body {
            color: #7090b0;
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 16px;
        }
        .dt-service-outcome {
            border-top: 1px solid rgba(255,255,255,0.07);
            padding-top: 14px;
        }
        .dt-service-outcome-label {
            color: #22c55e;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 5px;
        }
        .dt-service-outcome-text {
            color: #8aa4c0;
            font-size: 13px;
            line-height: 1.5;
        }
        .dt-service-tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 10px;
        }
        .dt-service-tag {
            background: rgba(26,111,219,0.1);
            border: 1px solid rgba(26,111,219,0.2);
            color: #7aacee;
            font-size: 11px;
            font-weight: 600;
            padding: 3px 9px;
            border-radius: 3px;
        }
        .dt-services-closing {
            background: rgba(26,111,219,0.07);
            border: 1px solid rgba(26,111,219,0.15);
            border-radius: 10px;
            padding: 24px 28px;
            margin-top: 12px;
            color: #8aa4c0;
            font-size: 15px;
            line-height: 1.7;
            text-align: center;
        }

        /* ===== INDUSTRIES SECTION ===== */
        .dt-industries-section {
            background: #050a12;
            padding: 30px 0;
        }
        .dt-industries-heading {
            font-size: clamp(22px, 3vw, 34px);
            font-weight: 800;
            color: #fff;
            text-align: center;
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }
        .dt-industries-intro {
            text-align: center;
            color: #6080a0;
            font-size: 16px;
            margin-bottom: 48px;
            max-width: 680px;
            margin-left: auto;
            margin-right: auto;
        }
        .dt-industry-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px;
            padding: 26px 20px;
            margin-bottom: 24px;
            transition: border-color 0.25s, background 0.25s;
            height: 100%;
        }
        .dt-industry-card:hover {
            border-color: rgba(26,111,219,0.45);
            background: rgba(26,111,219,0.05);
        }
        .dt-industry-icon {
            width: 44px;
            height: 44px;
            background: #fff;
            border-radius: 10px;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .dt-industry-icon img {
            width: 50px;
            height: auto;
        }
        .dt-industry-card-title {
            color: #fff;
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .dt-industry-card-body {
            color: #7090b0;
            font-size: 14px;
            line-height: 1.7;
        }
        .dt-industry-closing {
            margin-top: 12px;
            color: #6080a0;
            font-size: 14px;
            text-align: center;
            line-height: 1.7;
        }
        .dt-industries-cta {
            text-align: center;
            margin-top: 32px;
        }

        /* ===== TECHNOLOGIES SECTION ===== */
        .dt-tech-section {
            background: #0a0f1a;
            padding: 30px 0;
            border-top: 1px solid rgba(255,255,255,0.06);
        }
        .dt-tech-heading {
            font-size: clamp(22px, 3vw, 34px);
            font-weight: 800;
            color: #fff;
            text-align: center;
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }
        .dt-tech-intro {
            text-align: center;
            color: #6080a0;
            font-size: 16px;
            margin-bottom: 48px;
            max-width: 680px;
            margin-left: auto;
            margin-right: auto;
        }
        .dt-tech-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 10px;
            padding: 22px 18px;
            margin-bottom: 20px;
            transition: border-color 0.2s, background 0.2s, transform 0.2s;
            position: relative;
            overflow: hidden;
        }
        .dt-tech-section .row {
    display: flex;
    flex-wrap: wrap;
}

.dt-tech-section .col-6,
.dt-tech-section .col-md-4,
.dt-tech-section .col-lg-3 {
    display: flex;
    margin-bottom: 24px;
}

.dt-tech-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 24px;
}
        .dt-tech-card:hover {
            border-color: rgba(26,111,219,0.5);
            background: rgba(26,111,219,0.06);
            transform: translateY(-3px);
        }
        .dt-tech-card-icon {
            width: 40px;
            height: 40px;
            background: #fff;
            border-radius: 8px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .dt-tech-card-icon img {
            width: 40px;
            height: auto;
        }
        .dt-tech-card-title {
            color: #fff;
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .dt-tech-card-body {
            color: #7090b0;
            font-size: 13px;
            line-height: 1.65;
        }
        .dt-tech-cta {
            text-align: center;
            margin-top: 36px;
        }

        /* ===== METRICS SECTION ===== */
        .dt-metrics-section {
            background: #FAFAF8;
            padding: 30px 0;
        }
        .dt-metrics-heading {
            font-size: clamp(22px, 3vw, 34px);
            font-weight: 800;
            color: #0a0f1a;
            text-align: center;
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }
        .dt-metrics-intro {
            text-align: center;
            color: #4a5a6a;
            font-size: 16px;
            margin-bottom: 48px;
            max-width: 680px;
            margin-left: auto;
            margin-right: auto;
        }
        .dt-metric-card {
            background: #f8faff;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 28px 18px;
            text-align: center;
            margin-bottom: 24px;
            transition: box-shadow 0.2s, transform 0.2s;
        }
        .dt-metrics-section .row{
    display:flex;
    flex-wrap:wrap;
}

.dt-metrics-section .col-md-6,
.dt-metrics-section .col-lg-3{
    display:flex;
    margin-bottom:24px;
}

.dt-metric-card{
    width:100%;
    height:100%;
    display:flex;
    flex-direction:column;
    padding:24px;
}

.dt-metric-card p{
    flex-grow:1;
}
        .dt-metric-card:hover {
            box-shadow: 0 8px 28px rgba(26,111,219,0.10);
            transform: translateY(-4px);
        }
        .dt-metric-number {
            font-size: 44px;
            font-weight: 900;
            color: #1a6fdb;
            line-height: 1;
            margin-bottom: 8px;
            letter-spacing: -0.03em;
        }
        .dt-metric-label {
            color: #3a4a5a;
            font-size: 14px;
            font-weight: 600;
            line-height: 1.4;
        }
        .dt-metric-card-icon {
            width: 36px;
            height: 36px;
            background: rgba(26,111,219,0.08);
            border-radius: 8px;
            margin: 0 auto 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .dt-metric-card-icon img {
            width: 40px;
            height: auto;
        }
        .dt-metrics-pullquote {
            background: #0a0f1a;
            border-radius: 10px;
            padding: 24px 28px;
            margin: 36px 0 0;
            text-align: center;
        }
        .dt-metrics-pullquote p {
            color: #a0c0e0;
            font-size: 17px;
            font-style: italic;
            margin: 0;
            line-height: 1.6;
        }
        .dt-metrics-cta {
            text-align: center;
            margin-top: 36px;
        }

        /* ===== WHY SISGAIN SECTION ===== */
        .dt-why-section {
            background: #0a0f1a;
            padding: 30px 0;
        }
        .dt-why-heading {
            font-size: clamp(22px, 3vw, 34px);
            font-weight: 800;
            color: #fff;
            text-align: center;
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }
        .dt-why-intro {
            text-align: center;
            color: #6080a0;
            font-size: 16px;
            margin-bottom: 48px;
            max-width: 680px;
            margin-left: auto;
            margin-right: auto;
        }
        .dt-why-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px;
            padding: 26px 22px;
            margin-bottom: 24px;
            transition: border-color 0.2s, background 0.2s, transform 0.2s;
            height: 100%;
        }
        .dt-why-card:hover {
            border-color: rgba(26,111,219,0.5);
            background: rgba(26,111,219,0.05);
            transform: translateY(-4px);
        }
        .dt-why-card-icon {
            width: 44px;
            height: 44px;
            background: #fff;
            border-radius: 10px;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .dt-why-card-icon img {
            width: 50px;
            height: auto;
        }
        .dt-why-card-title {
            color: #fff;
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .dt-why-card-body {
            color: #7090b0;
            font-size: 14px;
            line-height: 1.7;
        }
        .dt-why-pullquote {
            background: rgba(26,111,219,0.08);
            border: 1px solid rgba(26,111,219,0.2);
            border-radius: 10px;
            padding: 24px 28px;
            margin: 36px 0;
            text-align: center;
        }
        .dt-why-pullquote p {
            color: #a0c0e0;
            font-size: 18px;
            font-style: italic;
            font-weight: 600;
            margin: 0;
            line-height: 1.6;
        }
        .dt-why-cta {
            text-align: center;
            margin-top: 8px;
        }

        /* ===== CASE STUDIES SECTION ===== */
        .dt-cases-section {
            background: #FAFAF8;
            padding: 30px 0;
        }
        .dt-cases-heading {
            font-size: clamp(22px, 3vw, 34px);
            font-weight: 800;
            color: #0a0f1a;
            text-align: center;
            margin-bottom: 48px;
            letter-spacing: -0.02em;
        }
        .dt-case-card {
            background: #f8faff;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 28px 24px;
            margin-bottom: 24px;
            transition: box-shadow 0.2s, transform 0.2s;
            height: 100%;
        }
        .dt-case-card:hover {
            box-shadow: 0 8px 28px rgba(26,111,219,0.10);
            transform: translateY(-4px);
        }
        .dt-case-sector-tag {
            display: inline-block;
            background: rgba(26,111,219,0.1);
            border: 1px solid rgba(26,111,219,0.2);
            color: #1a6fdb;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 3px;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            margin-bottom: 14px;
        }
        .dt-case-card-title {
            color: #0a0f1a;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 16px;
        }
        .dt-case-before-after {
            display: flex;
            gap: 12px;
            margin-bottom: 18px;
        }
        .dt-case-before, .dt-case-after {
            flex: 1;
            border-radius: 8px;
            padding: 12px;
            font-size: 13px;
        }
        .dt-case-before {
            background: rgba(192,57,43,0.06);
            border: 1px solid rgba(192,57,43,0.15);
        }
        .dt-case-after {
            background: rgba(34,197,94,0.06);
            border: 1px solid rgba(34,197,94,0.15);
        }
        .dt-case-ba-label {
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 4px;
        }
        .dt-case-before .dt-case-ba-label { color: #c0392b; }
        .dt-case-after .dt-case-ba-label { color: #22c55e; }
        .dt-case-ba-text {
            color: #3a4a5a;
            font-weight: 600;
        }
        .dt-case-results-title {
            font-size: 11px;
            font-weight: 800;
            color: #1a6fdb;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        .dt-case-result-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #3a4a5a;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 5px;
        }
        .dt-case-result-dot {
            width: 6px;
            height: 6px;
            background: #22c55e;
            border-radius: 50%;
            flex-shrink: 0;
        }

        /* ===== PROCESS SECTION ===== */
        .dt-process-section {
            background: #0a0f1a;
            padding: 30px 0;
        }
        .dt-process-heading {
            font-size: clamp(22px, 3vw, 34px);
            font-weight: 800;
            color: #fff;
            text-align: center;
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }
        .dt-process-intro {
            text-align: center;
            color: #6080a0;
            font-size: 16px;
            margin-bottom: 48px;
            max-width: 680px;
            margin-left: auto;
            margin-right: auto;
        }
        .dt-process-step {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 10px;
            padding: 22px 18px;
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
            gap: 16px;
            transition: border-color 0.2s, background 0.2s;
        }
        .dt-process-step:hover {
            border-color: rgba(26,111,219,0.4);
            background: rgba(26,111,219,0.04);
        }
        .dt-process-step-num {
            width: 36px;
            height: 36px;
            background: #1a6fdb;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            font-weight: 800;
            color: #fff;
            flex-shrink: 0;
        }
        .dt-process-step-title {
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 5px;
        }
        .dt-process-step-body {
            color: #7090b0;
            font-size: 14px;
            line-height: 1.6;
        }
        .dt-process-closing {
            background: rgba(26,111,219,0.07);
            border: 1px solid rgba(26,111,219,0.15);
            border-radius: 10px;
            padding: 20px 24px;
            margin-top: 12px;
            color: #8aa4c0;
            font-size: 14px;
            line-height: 1.7;
            text-align: center;
        }

        /* ===== TESTIMONIALS SECTION ===== */
        .dt-testimonials-section {
            background: #FAFAF8;
            padding: 30px 0;
        }
        .dt-testimonials-heading {
            font-size: clamp(22px, 3vw, 34px);
            font-weight: 800;
            color: #0a0f1a;
            text-align: center;
            margin-bottom: 48px;
            letter-spacing: -0.02em;
        }
        .dt-testimonial-card {
            background: #f8faff;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 30px 26px;
            margin-bottom: 24px;
            transition: box-shadow 0.2s, transform 0.2s;
            height: 100%;
            position: relative;
        }
        .dt-testimonial-card:hover {
            box-shadow: 0 8px 28px rgba(26,111,219,0.10);
            transform: translateY(-4px);
        }
        /* .dt-testimonial-quote-mark {
            width: 36px;
            height: 36px;
            background: rgba(26,111,219,0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        } */
        .dt-testimonial-quote-mark img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
        }
        .dt-testimonial-text {
            color: #3a4a5a;
            font-size: 15px;
            line-height: 1.75;
            margin-bottom: 20px;
            font-style: italic;
        }
        .dt-testimonial-author {
            border-top: 1px solid #e2e8f0;
            padding-top: 16px;
        }
        .dt-testimonial-author-name {
            color: #0a0f1a;
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 2px;
        }
        .dt-testimonial-author-role {
            color: #6080a0;
            font-size: 13px;
        }

        /* ===== FAQS SECTION ===== */
        .dt-faqs-section {
            background: #0a0f1a;
            padding: 30px 0;
        }
        .dt-faqs-heading {
            font-size: clamp(22px, 3vw, 34px);
            font-weight: 800;
            color: #fff;
            text-align: center;
            margin-bottom: 48px;
            letter-spacing: -0.02em;
        }
        .dt-faq-item {
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 10px;
            margin-bottom: 12px;
            overflow: hidden;
        }
        .dt-faq-question {
            background: rgba(255,255,255,0.03);
            padding: 18px 22px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.2s;
        }
        .dt-faq-question:hover {
            background: rgba(26,111,219,0.07);
        }
        .dt-faq-question.active {
            background: rgba(26,111,219,0.09);
        }
        .dt-faq-question-text {
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            line-height: 1.4;
            flex: 1;
            padding-right: 16px;
        }
        .dt-faq-toggle {
            width: 24px;
            height: 24px;
            background: rgba(26,111,219,0.15);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: background 0.2s, transform 0.3s;
        }
        .dt-faq-toggle.open {
            background: #1a6fdb;
            transform: rotate(45deg);
        }
        .dt-faq-toggle-bar {
            position: relative;
            width: 12px;
            height: 12px;
        }
        .dt-faq-toggle-bar::before,
        .dt-faq-toggle-bar::after {
            content: '';
            position: absolute;
            background: #fff;
            border-radius: 2px;
        }
        .dt-faq-toggle-bar::before {
            top: 5px; left: 0; width: 12px; height: 2px;
        }
        .dt-faq-toggle-bar::after {
            top: 0; left: 5px; width: 2px; height: 12px;
        }
        .dt-faq-answer {
            display: none;
            padding: 0 22px 20px;
            background: rgba(26,111,219,0.04);
        }
        .dt-faq-answer.open {
            display: block;
        }
        .dt-faq-answer-text {
            color: #7090b0;
            font-size: 14px;
            line-height: 1.75;
            padding-top: 16px;
            border-top: 1px solid rgba(255,255,255,0.06);
        }

        /* ===== FINAL CTA SECTION ===== */
        .dt-final-cta-section {
            background: #000;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        .dt-final-cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 50%, rgba(26,111,219,0.2) 0%, transparent 70%);
            pointer-events: none;
        }
        .dt-final-cta-inner {
            position: relative;
            z-index: 1;
            text-align: center;
        }
        .dt-final-cta-label {
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #1a6fdb;
            margin-bottom: 16px;
        }
        .dt-final-cta-heading {
            font-size: clamp(26px, 4vw, 44px);
            font-weight: 800;
            color: #fff;
            margin-bottom: 18px;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }
        .dt-final-cta-subtext {
            color: #8aa4c0;
            font-size: 16px;
            line-height: 1.75;
            margin-bottom: 40px;
            max-width: 620px;
            margin-left: auto;
            margin-right: auto;
        }
        .dt-final-cta-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
        }
        .dt-final-cta-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            max-width: 480px;
            margin: 0 auto 48px;
        }
        .dt-final-cta-badge {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.10);
            border-radius: 8px;
            padding: 10px 14px;
            color: #8aa4c0;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.03em;
            text-align: center;
        }

        /* ===== SCROLL ANIMATION ===== */
        .dt-animate-in {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        .dt-animate-in.is-visible {
            opacity: 1;
            transform: translateY(0);
        }
        .dt-animate-delay-1 { transition-delay: 0.1s; }
        .dt-animate-delay-2 { transition-delay: 0.2s; }
        .dt-animate-delay-3 { transition-delay: 0.3s; }
        .dt-animate-delay-4 { transition-delay: 0.4s; }
  