.dti-section {
    position: relative;
    overflow: hidden;
    background: #fff;
    padding: 70px 5% 50px;
}

.dti-connectors {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.dti-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.dti-blob-orange-tr {
    width: 250px;
    height: 250px;
    top: -150px;
    right: -100px;
    background: radial-gradient(circle at 30% 30%, #ff8a3d, #f2600c 70%);
    opacity: 0.9;
}

.dti-blob-blue-bl {
    width: 280px;
    height: 280px;
    bottom: -140px;
    left: -110px;
    background: radial-gradient(circle at 30% 30%, #4c86ff, #1a56db 70%);
    opacity: 0.9;
}

.dti-container {
    position: relative;
    z-index: 2;
    max-width: 1520px;
    margin: 0 auto;
}

.dti-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 1.75rem;
}

.dti-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--c-orange);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.dti-eyebrow::before,
.dti-eyebrow::after {
    content: "";
    width: 38px;
    height: 2px;
    background: var(--c-orange);
}

.dti-header h2 {
    font-family: var(--fh);
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    font-weight: 800;
    margin: 0 0 1rem;
    letter-spacing: -0.01em;
    color: var(--c-navy);
}

.dti-header h2 span {
    color: var(--c-orange);
}

.dti-header p {
    color: var(--c-text2);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.dti-checks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.2rem;
    flex-wrap: wrap;
    background: #f7f9fe;
    border-radius: 999px;
    padding: 0.8rem 2rem;
    max-width: 680px;
    margin: 0rem auto 0rem;
    box-shadow: 2px 2px 5px rgb(20 40 90 / 0.08);
}

.dti-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--c-navy);
}

.dti-check-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dti-check-dot svg {
    width: 11px;
    height: 11px;
    stroke: #fff;
    stroke-width: 3.5;
}

.dti-check .dti-check-dot {
    background: var(--c-blue);
}

.dti-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.95fr 1fr;
    gap: 0 20px;
    align-items: center;
}

.dti-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 3;
}

.dti-connectors {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    width: 100%;
    height: 100%;
}

.dti-card {
    background: #f7f9fe;
    border-radius: 14px;
    padding: 0.7rem 0.7rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 2px 2px 5px rgb(20 40 90 / 0.08);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.dti-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgb(20 40 90 / 0.1);
}

.dti-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dti-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: #fff;
    fill: none;
}

.icon-blue {
    background: linear-gradient(135deg, #2563eb, var(--c-blue-dark));
}

.icon-orange {
    background: #ee5735;
}

.dti-card-body {
    flex: 1;
    min-width: 0;
}

.dti-card-body h4 {
    font-family: var(--fh);
    font-size: 0.98rem;
    font-weight: 800;
    margin: 0 0 0;
    color: var(--c-navy);
    padding-bottom: 6;
}

.dti-card-body p {
    font-size: 0.8rem;
    color: var(--c-text2);
    margin: 0;
    line-height: 1.4;
}

.dti-card-arrow {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.dti-card-arrow svg {
    width: 100%;
    height: 100%;
    stroke-width: 2.5;
}

.dti-col.left .dti-card:nth-child(odd) .dti-card-arrow svg {
    stroke: var(--c-blue);
}

.dti-col.left .dti-card:nth-child(even) .dti-card-arrow svg {
    stroke: var(--c-orange);
}

.dti-col.right .dti-card:nth-child(odd) .dti-card-arrow svg {
    stroke: var(--c-blue);
}

.dti-col.right .dti-card:nth-child(even) .dti-card-arrow svg {
    stroke: var(--c-orange);
}

.dti-center {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.dti-globe-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.dti-globe-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    mix-blend-mode: screen;
    opacity: 1;
}

.dti-globe-glow {
    position: absolute;
    inset: 0;
}

.dti-globe-text {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 82%;
}

.dti-globe-text .line1 {
    color: #fff;
    font-family: var(--fh);
    font-weight: 800;
    font-size: 1.35rem;
    line-height: 1.3;
}

.dti-globe-text .line2 {
    color: var(--c-orange);
    font-family: var(--fh);
    font-weight: 800;
    font-size: 1.35rem;
    line-height: 1.3;
}

.dti-globe-underline {
    width: 46px;
    height: 3px;
    background: var(--c-orange);
    margin: 0 auto 12px;
    border-radius: 2px;
}

.dti-features {
    display: flex;
    justify-content: center;
    gap: 0;
    position: absolute;
    bottom: 55px;
}

.dti-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.75rem;
    position: relative;
    width: 150px;
}

.dti-feature:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 14px;
    bottom: 14px;
    width: 1px;
    background: var(--c-border);
}

.dti-feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #f7f9fe;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.6rem;
    box-shadow: 0 8px 20px rgb(20 40 90 / 0.08);
}

.dti-feature-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--c-blue);
    fill: none;
    stroke-width: 1.8;
}

.dti-feature span {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--c-navy);
    line-height: 1.4;
}

.dti-tagline {
    text-align: center;
    font-family: var(--fh);
    font-style: italic;
    font-weight: 700;
    color: var(--c-orange);
    font-size: 1.05rem;
    margin: 2rem 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.dti-tagline::before,
.dti-tagline::after {
    content: "";
    width: 40px;
    height: 1.5px;
    background: var(--c-orange);
    opacity: 0.5;
}

.dti-stats {
    margin-top: 2.75rem;
    background: #f5f9fe;
    border-radius: 20px;
    box-shadow:
        0 6px 20px rgb(40 116 252 / 0.18),
        inset 0 0 22px rgb(30 96 230 / 0.42);
    display: grid;
    grid-template-columns: repeat(4, 1fr) 1.3fr;
    align-items: center;
    padding: 1.5rem 1rem;
    gap: 0.5rem;
}

.dti-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 1rem;
    border-right: 1px solid var(--c-border);
}

.dti-stat-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}

.dti-stat-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--c-blue);
    fill: none;
    stroke-width: 1.8;
}

.dti-stat-num {
    font-family: var(--fh);
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--c-orange);
    line-height: 1;
}

.dti-stat-label {
    font-size: 0.78rem;
    color: var(--c-text2);
    margin-top: 2px;
    font-weight: 600;
}

.dti-cta-wrap {
    text-align: end;
    padding-right: 1rem;
}

.dti-cta-btn {
    background: #ff5900;
    color: #fff;
    box-shadow: 0 4px 16px var(--iphtech-orange-glow);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.62rem 1.6rem;
    border-radius: 10px;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    white-space: nowrap;
    cursor: pointer;
    transition: all var(--iphtech-duration) var(--iphtech-ease);
}

.dti-cta-btn:hover {
    transform: translateY(-2px);
    color: #fff;
}

.dti-cta-btn svg {
    width: 15px;
    height: 15px;
    stroke: #fff;
    stroke-width: 2.5;
}

@media (max-width: 1200px) {
    .dti-connectors {
        display: none;
    }

    .dti-grid {
        grid-template-columns: 1fr;
    }

    .dti-col {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .dti-card {
        flex: 1 1 280px;
    }

    .dti-center {
        order: -1;
        margin-bottom: 2rem;
    }

    .dti-globe-wrap {
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .dti-section {
        padding: 50px 5% 40px;
    }

    .dti-checks {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 16px;
        gap: 0.9rem;
        margin-bottom: 15px;
    }

    .dti-col {
        flex-direction: column;
    }

    .dti-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .dti-stat {
        border-right: none;
        padding: 0;
    }

    .dti-cta-wrap {
        grid-column: 1 / -1;
        padding-left: 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .dti-features {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .dti-feature:not(:last-child)::after {
        display: none;
    }

    .texp-cta-left {
        flex: 1 1 0px !important;
    }

    .dti-col {
        display: block !important;
    }

    .dti-card {
        margin-bottom: 15px !important;
    }
}

.dti-card {
    cursor: pointer;
    position: relative;
    text-decoration: none;
}

.dti-tooltip {
    position: absolute;
    z-index: 60;
    width: 270px;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 14px;
    padding: 1.1rem 1.25rem;
    box-shadow: 0 24px 54px rgb(20 40 90 / 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
    pointer-events: none;
}

.dti-tooltip.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dti-tooltip::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    background: #fff;
    border-left: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    top: 20px;
    transform: rotate(45deg);
}

.dti-tooltip.side-right::before {
    left: -8px;
}

.dti-tooltip.side-left::before {
    right: -8px;
    transform: rotate(225deg);
}

.dti-tooltip h5 {
    font-family: var(--fh);
    font-size: 1rem;
    font-weight: 800;
    color: var(--c-navy);
    margin: 0 0 0.4rem;
}

.dti-tooltip p {
    font-size: 0.83rem;
    color: var(--c-text2);
    line-height: 1.55;
    margin: 0 0 0.75rem;
}

.dti-tooltip ul {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dti-tooltip ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--c-navy);
    font-weight: 600;
    line-height: 1.4;
}

.dti-tooltip ul li::before {
    content: "✓";
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--c-orange);
    color: #fff;
    font-size: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.dti-tooltip-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    background: var(--c-orange);
    padding: 0.55rem 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.dti-tooltip-link:hover {
    background: var(--c-orange-dark);
    color: #fff;
    transform: translateY(-1px);
}

.dti-tooltip-link svg {
    width: 13px;
    height: 13px;
    stroke: #fff;
    stroke-width: 2.5;
}

@media (max-width: 1200px) {
    .dti-tooltip {
        display: none;
    }
}