:root {
            --primary: #f06223;
            --primary-dark: #d4551a;
            --primary-light: #fef3ed;
            --secondary: #8b7355;
            --secondary-light: #f8f3ee;
            --dark: #2c1810;
            --dark-light: #4a3628;
            --text: #2c1810;
            --text-muted: #7a6a5a;
            --border: #e8ddd0;
            --white: #ffffff;
            --bg-light: #f8f3ee;
            --shadow: 0 30px 70px rgba(44, 24, 16, 0.08);
            --shadow-lg: 0 40px 90px rgba(44, 24, 16, 0.12);
            --radius: 24px;
            --radius-sm: 12px;
            --gradient-primary: linear-gradient(135deg, #f06223, #d4551a);
            --gradient-secondary: linear-gradient(135deg, #8b7355, #6b5a42);
            --gradient-hero: linear-gradient(135deg, #2c1810 0%, #4a3628 50%, #2c1810 100%);
            --feature-lime: #a5d131;
            --feature-teal: #1abc9c;
            --feature-blue: #1a9ac9;
            --feature-orange: #f06223;
            --feature-purple: #8b5cf6;
            --feature-pink: #ec4899;
            --feature-cyan: #06b6d4;
            --feature-amber: #f59e0b;
        }

        body {
            background: var(--bg-light);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.2;
            color: var(--dark);
        }

        h1 {
            font-size: clamp(2.8rem, 5.5vw, 4.5rem);
            font-weight: 800;
        }

        h2 {
            font-size: clamp(2.2rem, 3.5vw, 3rem);
            margin-bottom: 0.5rem;
        }

        .dt-wrapper { position: relative; z-index: 2; }
        .dt-container { max-width: 1250px; margin: 0 auto; padding: 0 28px; }
        .dt-section { padding: 5rem 0; }
        .dt-section-white { background: var(--white); }
        .dt-section-alt { background: var(--secondary-light); }
        .dt-section-primary-light { background: var(--primary-light); }
        .dt-section-dark { background: var(--gradient-hero); color: var(--white); }
        
        .dt-badge { display: inline-block; background: var(--primary-light); color: var(--primary-dark); font-weight: 600; font-size: 0.7rem; padding: 0.35rem 1.2rem; border-radius: 40px; letter-spacing: 0.5px; margin-bottom: 1rem; border: 1px solid rgba(240, 98, 35, 0.15); text-transform: uppercase; }
        .dt-badge-dark { background: rgba(240, 98, 35, 0.2); color: var(--primary); border-color: rgba(240, 98, 35, 0.2); }
        
        .dt-title { text-align: center; max-width: 780px; margin: 0 auto 3rem auto; }
        .dt-title p { font-size: 1.15rem; color: var(--text-muted); margin-top: 0.75rem; }
        .dt-title h2 { font-size: clamp(2.2rem, 3.5vw, 3rem); margin-bottom: 0.5rem; }
        .dt-title .highlight { color: var(--primary); position: relative; }
        .dt-title .highlight::after { content: ''; position: absolute; bottom: 2px; left: 0; width: 100%; height: 6px; background: var(--primary-light); border-radius: 4px; z-index: -1; }
        
        .dt-btn-primary { display: inline-block; background: var(--gradient-primary); color: var(--white); font-weight: 600; padding: 0.95rem 2.8rem; border-radius: 60px; border: none; font-size: 1rem; transition: all 0.3s ease; box-shadow: 0 8px 28px rgba(240, 98, 35, 0.25); text-decoration: none; cursor: pointer; }
        .dt-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(240, 98, 35, 0.35); }
        .dt-btn-outline { display: inline-block; background: transparent; color: var(--dark); font-weight: 600; padding: 0.95rem 2.8rem; border-radius: 60px; border: 1.5px solid var(--dark); font-size: 1rem; transition: all 0.3s ease; text-decoration: none; cursor: pointer; }
        .dt-btn-outline:hover { background: var(--dark); color: var(--white); transform: translateY(-3px); box-shadow: var(--shadow); }
        .dt-btn-outline-light { border-color: rgba(255,255,255,0.3); color: var(--white); }
        .dt-btn-outline-light:hover { background: var(--white); color: var(--dark); }
        
        .dt-card { background: var(--white); border-radius: var(--radius); padding: 2rem 1.8rem; transition: all 0.35s ease; box-shadow: var(--shadow); border: 1px solid var(--border); position: relative; overflow: hidden; }
        .dt-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
        .dt-card .card-icon { font-size: 2.2rem; color: var(--primary); margin-bottom: 1rem; display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; background: var(--primary-light); border-radius: 16px; }
        .dt-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
        .dt-card p { color: var(--text-muted); font-size: 0.95rem; }
        
        .dt-grid { display: grid; gap: 2rem; }
        .dt-grid-3 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
        .dt-grid-4 { grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); }
        
        .dt-reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
        .dt-reveal.visible { opacity: 1; transform: translateY(0); }

        #particles-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            background: var(--bg-light);
        }

        /* ================================================================
                   HERO SECTION - UPDATED WITH YOUR CODE
                   ================================================================ */
        .hero-wrapper {
            position: relative;
            min-height: 600px;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: var(--gradient-hero);
            padding: 50px 0;
        }

        /* Ambient Glow */
        .ambient-glow-1 {
            position: absolute;
            top: -20%; right: -10%;
            width: 80vw; height: 80vw;
            background: radial-gradient(circle, rgba(240, 98, 35, 0.08) 0%, transparent 70%);
            filter: blur(80px);
            pointer-events: none;
            animation: floatGlow 20s infinite alternate ease-in-out;
        }
        .ambient-glow-2 {
            position: absolute;
            bottom: -20%; left: -10%;
            width: 70vw; height: 70vw;
            background: radial-gradient(circle, rgba(212, 85, 26, 0.08) 0%, transparent 60%);
            filter: blur(100px);
            pointer-events: none;
            animation: floatGlow 25s infinite alternate-reverse ease-in-out;
        }

        @keyframes floatGlow {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(10%, 10%) scale(1.2); }
        }

        /* Light Trails */
        .light-trails {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            pointer-events: none;
            z-index: 0;
            opacity: 0.4;
        }

        /* Floating Particles */
        .particle {
            position: absolute;
            background: rgba(240, 98, 35, 0.12);
            border-radius: 50%;
            filter: blur(4px);
            pointer-events: none;
            animation: floatParticle 15s infinite alternate ease-in-out;
        }
        @keyframes floatParticle {
            0% { transform: translate(0, 0) scale(1); opacity: 0.3; }
            100% { transform: translate(20px, -30px) scale(1.3); opacity: 0.7; }
        }

        /* Content */
        .content-col {
            position: relative;
            z-index: 2;
        }

        .badge-pill-custom {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(240, 98, 35, 0.08);
            border: 1px solid rgba(240, 98, 35, 0.15);
            padding: 6px 14px 6px 8px;
            border-radius: 100px;
            font-size: 13px;
            color: var(--white);
        }
        .badge-pill-custom span {
            font-weight: 600;
            color: var(--white);
            background: var(--gradient-primary);
            padding: 2px 12px;
            border-radius: 40px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        h1.hero-title {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -2px;
            color: var(--white);
        }
        h1.hero-title .highlight {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        p.subtitle {
            font-size: 1.2rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.7);
        }

        .btn-primary-custom {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 16px 32px;
            border-radius: 60px;
            font-weight: 600;
            border: none;
            box-shadow: 0 4px 20px rgba(240, 98, 35, 0.3);
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(240, 98, 35, 0.4);
            color: var(--white);
        }

        .btn-secondary-custom {
            background: rgba(0,0,0,0.04);
            color: var(--white);
            padding: 16px 32px;
            border-radius: 60px;
            font-weight: 600;
            border: 1px solid var(--white);
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-secondary-custom:hover {
            background: var(--secondary-light);
            border-color: var(--border);
            transform: translateY(-2px);
            color: var(--dark);
        }

        .trust-row small { color: var(--text-muted); }
        .trust-logos span {
            color: var(--text-muted);
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 1px;
        }

        /* Laptop 3D */
        .laptop-wrapper {
            perspective: 2000px;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
        }

        .macbook-pro {
            position: relative;
            width: 100%;
            max-width: 750px;
            transform: rotateY(-35deg) rotateX(5deg) translateZ(0);
            transform-style: preserve-3d;
            transition: transform 0.1s ease-out;
            filter: drop-shadow(0 60px 80px rgba(0,0,0,0.25)) drop-shadow(0 20px 40px rgba(0,0,0,0.1));
        }

        .lid {
            position: relative;
            width: 100%;
            padding-bottom: 62.5%;
            background: #ffffff;
            border-radius: 20px;
            border: 2px solid #4a4a4e;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255,255,255,0.7), 0 0 15px rgba(59, 130, 246, 0.1);
            transform-style: preserve-3d;
        }

        .screen-ui {
            position: absolute;
            top: 2%; left: 2%;
            width: 96%; height: 96%;
            background: #3d2418;
            border-radius: 12px;
            padding: 16px;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-rows: 80px 1fr 1fr;
            gap: 10px;
            box-shadow: inset 0 0 60px rgba(240, 98, 35, 0.08), 0 0 30px rgba(240, 98, 35, 0.05);
            overflow: hidden;
        }

        /* Dashboard Widgets */
        .widget {
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 12px;
            padding: 14px;
            display: flex;
            flex-direction: column;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }
        .widget:hover { transform: translateY(-2px); border-color: rgba(240, 98, 35, 0.3); }

        .widget-header {
            display: flex;
            justify-content: space-between;
            font-size: 10px;
            color: #94a3b8;
            letter-spacing: 0.5px;
            font-weight: 600;
        }
        .widget-value {
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
        }
        .positive { background: rgba(52, 211, 153, 0.2); color: #34d399; padding: 0 6px; border-radius: 4px; }
        .negative { background: rgba(251, 113, 133, 0.2); color: #fb7185; padding: 0 6px; border-radius: 4px; }

        .chart-svg { width: 100%; height: 30px; }
        .chart-svg path {
            stroke: url(#gradient-line);
            stroke-width: 2; fill: none; stroke-linecap: round;
            stroke-dasharray: 200; stroke-dashoffset: 200;
            animation: drawChart 2s ease-out forwards;
        }
        @keyframes drawChart { to { stroke-dashoffset: 0; } }

        .bar-chart { display: flex; align-items: flex-end; justify-content: space-between; height: 40px; gap: 4px; }
        .bar { width: 8px; background: linear-gradient(to top, #d4551a, #f06223); border-radius: 4px; animation: growBar 1.5s ease-out forwards; height: 0; }
        @keyframes growBar { to { height: var(--h); } }

        .donut-chart {
            width: 45px; height: 45px; margin: 0 auto;
            border-radius: 50%;
            background: conic-gradient(#f06223 0% 65%, rgba(255,255,255,0.1) 65% 100%);
            position: relative; display: flex; align-items: center; justify-content: center;
        }
        .donut-chart::after {
            content: ''; position: absolute; width: 28px; height: 28px; background: #0b1120; border-radius: 50%;
        }

        .heatmap { display: grid; grid-template-columns: repeat(6, 1fr); gap: 3px; }
        .heat-cell { aspect-ratio: 1; background: rgba(255,255,255,0.05); border-radius: 2px; }
        .heat-cell.active { background: #f06223; box-shadow: 0 0 8px rgba(240, 98, 35, 0.4); }

        .map-widget { height: 50px; background: radial-gradient(circle at 30% 50%, rgba(240, 98, 35, 0.1), transparent 70%); border-radius: 8px; position: relative; overflow: hidden; }
        .map-dot { position: absolute; width: 4px; height: 4px; background: #f06223; border-radius: 50%; box-shadow: 0 0 10px rgba(240, 98, 35, 0.5); animation: pulse-dot 2s infinite alternate; }
        @keyframes pulse-dot { 0% { opacity: 0.3; transform: scale(0.8); } 100% { opacity: 1; transform: scale(1.2); } }

        /* Grid Positions */
        .w-kpi-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
        .w-kpi-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
        .w-kpi-3 { grid-column: 3 / 4; grid-row: 1 / 2; }
        .w-chart-1 { grid-column: 1 / 3; grid-row: 2 / 3; }
        .w-chart-2 { grid-column: 3 / 4; grid-row: 2 / 3; }
        .w-bottom-left { grid-column: 1 / 2; grid-row: 3 / 4; }
        .w-bottom-mid { grid-column: 2 / 3; grid-row: 3 / 4; }
        .w-bottom-right { grid-column: 3 / 4; grid-row: 3 / 4; }

        /* Laptop Shadow Base */
        .laptop-base-shadow {
            position: absolute;
            width: 105%;
            height: 8%;
            left: -2.5%;
            bottom: -6%;
            border-radius: 0 0 16px 16px;
            transform: rotateX(5deg);
            filter: blur(10px);
            z-index: -1;
        }

        /* Cursor Glow */
        .cursor-glow {
            position: fixed;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(240, 98, 35, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            transition: left 0.1s ease-out, top 0.1s ease-out;
            mix-blend-mode: screen;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            h1.hero-title { font-size: 3.5rem; }
        }
        @media (max-width: 992px) {
            .hero-wrapper { padding: 40px 0; }
            h1.hero-title { font-size: 3rem; }
            .macbook-pro { max-width: 600px; transform: rotateY(-15deg) rotateX(5deg); }
        }
        @media (max-width: 768px) {
            .macbook-pro { max-width: 100%; transform: none; }
            .screen-ui { padding: 8px; gap: 6px; }
            .widget { padding: 8px; }
            .widget-value { font-size: 14px; }
            .w-chart-1 { grid-column: 1 / 4; grid-row: 2 / 3; }
            .w-chart-2 { grid-column: 1 / 4; grid-row: 3 / 4; }
            .w-bottom-left, .w-bottom-mid, .w-bottom-right { display: none; }
            .content-col { text-align: center; }
            .badge-pill-custom { margin: 0 auto; }
            .trust-row { flex-direction: column; align-items: center; gap: 10px; }
            .hero-wrapper { border-radius: 0 0 40px 40px; }
        }

        /* ================================================================
                   OTHER SECTIONS
                   ================================================================ */
        .dt-about-section {
            padding: 5rem 0;
            background: var(--white);
            position: relative;
            overflow: hidden;
        }
        .dt-about-section::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 50%;
            height: 80%;
            background: radial-gradient(circle, rgba(240, 98, 35, 0.03), transparent 70%);
            pointer-events: none;
        }
        .dt-about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
        .dt-about-highlight-item { display: flex; align-items: center; gap: 0.8rem; padding: 0.8rem 1rem; background: var(--primary-light); border-radius: var(--radius-sm); border: 1px solid rgba(240, 98, 35, 0.08); transition: all 0.3s ease; }
        .dt-about-highlight-item:hover { transform: translateX(4px); background: var(--white); box-shadow: var(--shadow); }
        .dt-about-highlight-item i { color: var(--primary); font-size: 1.2rem; width: 24px; }
        .dt-about-highlight-item span { font-weight: 500; font-size: 0.9rem; }

        .dt-graph-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
            min-height: 400px;
            border-radius: 0;
            padding: 0px;
            position: relative;
            overflow: hidden;
        }
        .dt-radial-container {
            position: relative;
            width: 100%;
            height: 100%;
            max-width: 100%;
            max-height: 100%;
            aspect-ratio: 1 / 1;
        }
        .dt-svg-lines {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            z-index: 1;
            pointer-events: none;
        }
        .dt-connection-line {
            stroke: url(#dtLineGradient);
            stroke-width: 3;
            fill: none;
            stroke-linecap: round;
            opacity: 0.3;
            transition: stroke-width 0.3s ease, opacity 0.3s ease;
            stroke-dasharray: 1000;
            stroke-dashoffset: 1000;
            transition: stroke-dashoffset 1.5s ease-in-out, stroke-width 0.3s ease, opacity 0.3s ease;
        }
        .dt-connection-line.visible { stroke-dashoffset: 0; }
        .dt-node-wrapper {
            position: absolute;
            top: 0; left: 0;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            transform: translate(-50%, -50%);
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            opacity: 0;
            transform: translate(-50%, -50%) scale(0.8);
            transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .dt-node-wrapper:hover { transform: translate(-50%, -50%) scale(1.05); }
        .dt-node-wrapper.visible { opacity: 1; transform: translate(-50%, -50%) scale(1); }
        .dt-node-wrapper:not(.dt-center-node) { animation: dtFloat 6s ease-in-out infinite; animation-delay: calc(var(--i) * -0.5s); }
        @keyframes dtFloat {
            0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
            50% { transform: translate(-50%, -50%) translateY(-10px); }
        }
        .dt-node-circle {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255,255,255,0.7), 0 0 15px rgba(59, 130, 246, 0.1);
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
            position: relative;
            transform: translateZ(0);
            will-change: transform;
        }
        .dt-center-node .dt-node-circle {
            width: 160px;
            height: 160px;
            background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
            box-shadow: 0 20px 40px rgba(244, 129, 66, 0.15), inset 0 0 0 1px rgba(244, 129, 66,0.9);
            animation: dtPulse 4s ease-in-out infinite;
        }
        @keyframes dtPulse {
            0% { transform: scale(1); box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15); }
            50% { transform: scale(1.02); box-shadow: 0 25px 50px rgba(59, 130, 246, 0.25); }
            100% { transform: scale(1); box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15); }
        }
        .dt-node-icon {
            font-size: 32px;
            color: #1e293b;
            transition: transform 0.3s ease, color 0.3s ease;
        }
        .dt-center-node .dt-node-icon {
            font-size: 48px;
            color: var(--primary);
        }
        .dt-node-label {
            margin-top: 5px;
            font-size: 14px;
            font-weight: 500;
            color: #334155;
            text-align: center;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 4px rgba(255,255,255,0.8);
            transition: color 0.3s ease;
        }
        .dt-center-node .dt-node-label {
            font-size: 16px;
            margin-top: 10px;
            color: #1e293b;
        }
        .dt-node-wrapper:hover .dt-node-circle {
            box-shadow: 0 15px 40px rgba(244, 129, 66, 0.2), inset 0 0 0 2px rgba(244, 129, 66, 0.3);
        }
        .dt-node-wrapper:hover .dt-node-icon {
            transform: scale(1.1);
            color: #f48142;
        }

        .dt-services-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            position: relative;
            z-index: 1;
        }
        .dt-service-card {
            background: var(--white);
            border-radius: 0;
            padding: 1.8rem 0.5rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        .dt-service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        .dt-service-card:hover::before { transform: scaleX(1); }
        .dt-service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
        .dt-service-card .card-icon-wrap {
            width: 50px;
            height: 50px;
            background: var(--primary-light);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--primary);
            margin: 0 auto 0.8rem;
            transition: all 0.3s ease;
        }
        .dt-service-card:hover .card-icon-wrap {
            background: var(--gradient-primary);
            color: var(--white);
            transform: scale(1.05);
        }
        .dt-service-card .card-number-badge {
            font-size: 2rem;
            font-weight: 800;
            color: rgba(240, 98, 35, 0.06);
            line-height: 1;
            position: absolute;
            top: 0.5rem;
            right: 0.8rem;
            transition: all 0.3s ease;
        }
        .dt-service-card:hover .card-number-badge {
            color: rgba(240, 98, 35, 0.12);
            transform: scale(1.1);
        }
        .dt-service-card h3 { font-size: 0.95rem; margin-bottom: 0.3rem; }
        .dt-service-card p { color: var(--text-muted); font-size: 0.8rem; line-height: 1.5; }

        .dt-features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem 1.5rem;
            position: relative;
            z-index: 1;
        }

        .dt-feature-wrapper {
            position: relative;
            z-index: 1;
            height: 100%;
            --frame-color: var(--primary);
            padding: 15px;
        }

        .dt-feature-wrapper .top-left-frame {
            position: absolute;
            top: 0px;
            left: 0px;
            width: 70%;
            height: 70%;
            border: 30px solid var(--frame-color);
            border-right: none;
            border-bottom: none;
            z-index: -1;
            transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
            border-radius: 4px 0 0 0;
        }

        .dt-feature-wrapper .bottom-right-frame {
            position: absolute;
            bottom: 0px;
            right: 0px;
            width: 70%;
            height: 70%;
            border: 6px solid var(--frame-color);
            border-top: none;
            border-left: none;
            z-index: -1;
            transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
            border-radius: 0 0 4px 0;
        }

        .dt-feature-card {
            background: var(--white);
            padding: 1rem 2rem;
            box-shadow: 0 15px 40px -12px rgba(0, 0, 0, 0.12);
            position: relative;
            z-index: 2;
            transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            border-radius: 0;
            border: 0px solid var(--border);
        }

        .dt-feature-wrapper:hover .top-left-frame {
            transform: translate(30px, -30px) scale(0.95);
            opacity: 0;
        }
        
        .dt-feature-wrapper:hover .bottom-right-frame {
            transform: translate(30px, -30px) scale(0.95);
            opacity: 0;
        }

        .dt-feature-wrapper:hover .dt-feature-card {
            transform: translateY(-12px);
            box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.2);
            border-color: var(--frame-color);
        }

        .dt-feature-wrapper:hover .dt-feature-icon-wrapper {
            transform: translateY(-3px) scale(1.08);
        }

        .dt-feature-icon-wrapper {
            margin-bottom: 1.2rem;
            transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .dt-feature-icon-wrapper .dt-feature-icon {
            font-size: 2.8rem;
            color: var(--frame-color);
            display: block;
            line-height: 1;
        }

        .dt-feature-card .dt-feature-title {
            font-weight: 700;
            font-size: 1.1rem;
            letter-spacing: -0.3px;
            margin-bottom: 0.6rem;
            color: var(--dark);
        }

        .dt-feature-card .dt-feature-text {
            color: var(--text-muted);
            line-height: 1.6;
            font-size: 0.9rem;
            margin-bottom: 0;
            max-width: 280px;
        }

        .dt-process-flow {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem 4rem;
            position: relative;
            padding: 2rem 0;
        }
        .dt-process-flow::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 3px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary), var(--secondary), var(--primary));
            opacity: 0.15;
            border-radius: 4px;
        }
        .dt-process-item {
            position: relative;
            padding: 1.8rem 2rem;
            background: var(--white);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
        }
        .dt-process-item:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }
        .dt-process-item:nth-child(odd) { margin-right: 2rem; }
        .dt-process-item:nth-child(even) { margin-left: 2rem; }
        .dt-process-item .step-connector {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 34px;
            height: 34px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 0.8rem;
            box-shadow: 0 4px 16px rgba(240, 98, 35, 0.25);
            z-index: 2;
        }
        .dt-process-item:nth-child(odd) .step-connector { right: -2.7rem; }
        .dt-process-item:nth-child(even) .step-connector { left: -2.7rem; }
        .dt-process-item .step-icon-wrap {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: var(--primary-light);
            border-radius: 12px;
            margin-bottom: 0.6rem;
            font-size: 1.4rem;
            color: var(--primary);
            transition: all 0.3s ease;
        }
        .dt-process-item:hover .step-icon-wrap {
            background: var(--gradient-primary);
            color: var(--white);
            transform: scale(1.05);
        }
        .dt-process-item h4 { font-size: 1.05rem; margin-bottom: 0.2rem; }
        .dt-process-item p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }
        .dt-process-item .step-line {
            position: absolute;
            top: 50%;
            width: 2rem;
            height: 2px;
            background: var(--border);
        }
        .dt-process-item:nth-child(odd) .step-line { right: -2rem; }
        .dt-process-item:nth-child(even) .step-line { left: -2rem; }

        .dt-why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            margin: 0;
            padding: 0;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .dt-why-card {
            background: var(--white);
            padding: 2.2rem 2rem;
            border-right: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            transition: all 0.3s ease;
            position: relative;
        }
        .dt-why-card:nth-child(3n) { border-right: none; }
        .dt-why-card:nth-child(n+4) { border-bottom: none; }
        .dt-why-card:hover {
            background: var(--primary-light);
            z-index: 1;
        }
        .dt-why-card .why-icon {
            font-size: 2rem;
            color: var(--primary);
            display: block;
            margin-bottom: 0.8rem;
        }
        .dt-why-card h3 {
            font-size: 1.1rem;
            margin-bottom: 0.4rem;
            color: var(--dark);
        }
        .dt-why-card p {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.7;
        }

        .dt-tech-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: var(--white);
            padding: 0.7rem 1.6rem;
            border-radius: 60px;
            font-weight: 500;
            font-size: 0.9rem;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
            color: var(--text);
        }
        .dt-tech-pill i { color: var(--primary); font-size: 1.1rem; }
        .dt-tech-pill:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-lg); background: var(--primary-light); }
        .dt-tech-grid { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

        .dt-industry-card {
            text-align: center;
            background: var(--white);
            border-radius: var(--radius);
            padding: 1.8rem 1rem;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
            height: 100%;
        }
        .dt-industry-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
        .dt-industry-card .card-icon { font-size: 2.2rem; color: var(--primary); display: block; margin-bottom: 0.5rem; }
        .dt-industry-card h4 { font-size: 1rem; font-weight: 600; }
        .dt-industry-card p { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.3rem; }

        .dt-faq-item {
            background: var(--white);
            border-radius: var(--radius-sm);
            padding: 1.2rem 1.8rem;
            margin-bottom: 0.8rem;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: var(--shadow);
        }
        .dt-faq-item:hover { border-color: var(--primary); }
        .dt-faq-item.active { border-color: var(--primary); background: var(--primary-light); }
        .dt-faq-question { font-weight: 600; display: flex; justify-content: space-between; align-items: center; color: var(--dark); gap: 1rem; }
        .dt-faq-question i { color: var(--primary); font-size: 1.2rem; transition: transform 0.3s ease; }
        .dt-faq-item.active .dt-faq-question i { transform: rotate(45deg); }
        .dt-faq-answer { margin-top: 0.75rem; color: var(--text-muted); display: none; line-height: 1.8; }
        .dt-faq-item.active .dt-faq-answer { display: block; }

        .dt-cta-section {
            border-radius: 60px;
            padding: 4rem 3rem;
            text-align: center;
        }
        .dt-cta-section * { color: var(--white); }
        .dt-cta-section p { color: rgba(255, 255, 255, 0.7); font-size: 1.15rem; max-width: 600px; margin: 1rem auto 2rem; }
        .dt-cta-section .dt-btn-primary { box-shadow: 0 8px 28px rgba(240, 98, 35, 0.4); }

        .dt-footer {
            background: var(--dark);
            padding: 3rem 0;
            color: rgba(255,255,255,0.6);
        }
        .dt-footer a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.3s ease; }
        .dt-footer a:hover { color: var(--primary); }
        .dt-footer-brand { font-size: 1.2rem; font-weight: 700; color: var(--white); }
        .dt-footer-brand span { color: var(--primary); }

        /* ================================================================
                   RESPONSIVE
                   ================================================================ */
        @media (max-width: 1200px) {
            .dt-features-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 992px) {
            .dt-graph-wrapper { max-width: 400px; }
            .dt-services-grid { grid-template-columns: repeat(3, 1fr); }
            .dt-process-flow { grid-template-columns: 1fr; gap: 1.5rem; }
            .dt-process-flow::before { display: none; }
            .dt-process-item:nth-child(odd) { margin-right: 0; }
            .dt-process-item:nth-child(even) { margin-left: 0; }
            .dt-process-item .step-connector { display: none; }
            .dt-process-item .step-line { display: none; }
            .dt-why-grid { grid-template-columns: repeat(2, 1fr); }
            .dt-why-card:nth-child(3n) { border-right: 1px solid var(--border); }
            .dt-why-card:nth-child(2n) { border-right: none; }
            .dt-why-card:nth-child(n+3) { border-bottom: none; }
            .dt-why-card:nth-child(3) { border-bottom: 1px solid var(--border); }
            .dt-why-card:nth-child(4) { border-bottom: 1px solid var(--border); }
            .dt-cta-section { padding: 2.5rem 1.5rem; border-radius: 32px; }
            .dt-features-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
        }

        @media (max-width: 768px) {
            .dt-services-grid { grid-template-columns: repeat(2, 1fr); }
            .dt-why-grid { grid-template-columns: 1fr; }
            .dt-why-card { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
            .dt-why-card:last-child { border-bottom: none !important; }
            .dt-graph-wrapper { max-width: 320px; min-height: 300px; }
            .dt-radial-container { min-height: 300px; }
            .dt-node-circle { width: 80px; height: 80px; }
            .dt-center-node .dt-node-circle { width: 130px; height: 130px; }
            .dt-node-icon { font-size: 24px; }
            .dt-center-node .dt-node-icon { font-size: 40px; }
            .dt-node-label { font-size: 12px; margin-top: 12px; }
            .dt-center-node .dt-node-label { font-size: 16px; }
            .dt-features-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
            .dt-feature-wrapper .top-left-frame {
                width: 70%;
                height: 70%;
                top: -15px;
                left: -15px;
                border-width: 5px;
            }
            .dt-feature-wrapper .bottom-right-frame {
                width: 50%;
                height: 50%;
                bottom: -10px;
                right: -10px;
            }
            .dt-feature-card { padding: 1.8rem 1.5rem; }
            .dt-feature-card .dt-feature-title { font-size: 1rem; }
        }

        @media (max-width: 640px) {
            .dt-container { padding: 0 18px; }
            .dt-grid-4 { grid-template-columns: 1fr; }
            .dt-grid-3 { grid-template-columns: 1fr; }
            .dt-services-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
            .dt-service-card { padding: 1.2rem 0.8rem; }
            .dt-service-card h3 { font-size: 0.8rem; }
            .dt-service-card p { font-size: 0.7rem; }
            .dt-service-card .card-icon-wrap { width: 40px; height: 40px; font-size: 1.1rem; }
            .dt-process-flow { gap: 1rem; }
            .dt-process-item { padding: 1.2rem 1.2rem; }
            .dt-about-highlights { grid-template-columns: 1fr; }
            .dt-graph-wrapper { max-width: 280px; min-height: 280px; }
            .dt-radial-container { min-height: 280px; }
            .dt-why-card { padding: 1.5rem; }
            .dt-section { padding: 3rem 0; }
            .dt-cta-section h2 { font-size: 1.8rem !important; }
            .dt-tech-grid { gap: 0.7rem; }
            .dt-tech-pill { padding: 0.5rem 1.2rem; font-size: 0.8rem; }
            .dt-node-circle { width: 60px; height: 60px; }
            .dt-center-node .dt-node-circle { width: 80px; height: 80px; }
            .dt-node-icon { font-size: 18px; }
            .dt-center-node .dt-node-icon { font-size: 30px; }
            .dt-node-label { font-size: 10px; margin-top: 8px; }
            .dt-center-node .dt-node-label { font-size: 12px; margin-top: 6px; }
            .dt-features-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
            .dt-feature-wrapper .top-left-frame {
                width: 60%;
                height: 60%;
                top: -12px;
                left: -12px;
                border-width: 4px;
            }
            .dt-feature-wrapper .bottom-right-frame {
                width: 40%;
                height: 40%;
                bottom: -8px;
                right: -8px;
                border-width: 2px;
            }
            .dt-feature-card { padding: 1.5rem 1.2rem; }
            .dt-feature-icon-wrapper .dt-feature-icon { font-size: 2.2rem; }
        }

        .dt-reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
        .dt-reveal.visible { opacity: 1; transform: translateY(0); }