.dm-page {
            --navy: #053878;
            --navy-deep: #02224a;
            --orange: #f77707;
            --orange-light: #ff9a3d;
            --ink: #0d1b2e;
            --slate: #5b6b82;
            --paper: #ffffff;
            --mist: #f3f6fb;
            --line: #e3e9f2;
            --font-display: 'Sora', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        @media (prefers-reduced-motion: reduce) {
            .dm-page * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        .dm-page, .dm-page * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        .dm-page {
            scroll-behavior: smooth;
        }

        .dm-page {
            font-family: var(--font-body);
            color: var(--ink);
            background: var(--paper);
            line-height: 1.65;
        }

        .dm-page a {
            color: inherit;
        }

        .dm-page img {
            display: block;
            max-width: 100%;
        }

        .dm-wrap {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .dm-page section {
            padding: 90px 0;
        }

        .dm-eyebrow {
            color: var(--orange);
            font-weight: 700;
            font-size: 13px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .dm-section-head {
            max-width: 640px;
            margin-bottom: 50px;
        }

        .dm-section-head.dm-center {
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }

        .dm-section-head h2 {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: clamp(26px, 3vw, 36px);
            color: var(--navy);
            letter-spacing: -0.01em;
        }

        .dm-section-head p {
            color: var(--slate);
            margin-top: 14px;
            font-size: 16px;
        }

        /* ---- hero ---- */
        .dm-hero {
            background: linear-gradient(180deg, #053473 0%, #043372 100%);
            padding: 80px 0 60px;
        }

        .dm-hero .dm-wrap {
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            gap: 56px;
            align-items: center;
        }

        .dm-page h1 {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: clamp(32px, 4.4vw, 48px);
            line-height: 1.14;
            letter-spacing: -0.01em;
            color: white;
        }

        .dm-page h1 span {
            color: var(--orange);
        }

        .dm-hero p.dm-sub {
            color: #ffffff;
            font-size: 16.5px;
            margin-top: 20px;
            max-width: 52ch;
        }

        .dm-hero-ctas {
            display: flex;
            gap: 14px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .dm-btn-primary {
            background: var(--orange);
            color: #fff;
            font-weight: 600;
            font-size: 15px;
            padding: 15px 26px;
            border-radius: 8px;
            text-decoration: none;
            transition: transform .15s, background .2s;
        }

        .dm-btn-primary:hover {
            background: var(--orange-light);
            transform: translateY(-2px);
        }

        .dm-btn-outline {
            color: #ffffff;
            font-weight: 600;
            font-size: 15px;
            padding: 15px 26px;
            border-radius: 8px;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.5);
            transition: background .2s, color .2s;
        }

        .dm-btn-outline:hover {
            background: #ffffff;
            color: var(--navy);
        }

        .dm-hero-photo {
            position: relative;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 26px 60px rgba(5, 56, 120, 0.16);
        }

        .dm-hero-photo img {
            width: 100%;
            height: 440px;
            object-fit: cover;
        }

        .dm-hero-photo .dm-float-card {
            position: absolute;
            bottom: 18px;
            left: 18px;
            background: #fff;
            border-radius: 12px;
            padding: 14px 18px;
            display: flex;
            gap: 12px;
            align-items: center;
            box-shadow: 0 10px 30px rgba(5, 56, 120, 0.18);
        }

        .dm-hero-photo .dm-float-card b {
            font-family: var(--font-display);
            font-size: 20px;
            color: var(--navy);
            display: block;
        }

        .dm-hero-photo .dm-float-card span {
            font-size: 12px;
            color: var(--slate);
        }

        /* ---- about (zig-zag) ---- */
        .dm-zig {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 56px;
            align-items: center;
        }

        .dm-zig img {
            border-radius: 16px;
            width: 100%;
            height: 380px;
            object-fit: cover;
            box-shadow: 0 20px 50px rgba(5, 56, 120, 0.12);
        }

        .dm-zig h2 {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: clamp(24px, 2.6vw, 32px);
            color: var(--navy);
            margin-bottom: 16px;
        }

        .dm-zig p {
            color: var(--slate);
            font-size: 15.5px;
            margin-bottom: 14px;
        }

        .dm-zig .dm-check-list {
            list-style: none;
            margin-top: 18px;
        }

        .dm-zig .dm-check-list li {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            font-size: 14.5px;
            color: var(--ink);
            padding: 6px 0;
        }

        .dm-zig .dm-check-list li::before {
            content: '✓';
            color: var(--orange);
            font-weight: 700;
        }

        /* ---- process timeline ---- */
        .dm-process-band {
            background: var(--navy);
            position: relative;
        }

        .dm-process-band .dm-section-head h2,
        .dm-process-band .dm-eyebrow {
            color: #fff;
        }

        .dm-process-band .dm-eyebrow {
            color: var(--orange-light);
        }

        .dm-process-band .dm-section-head p {
            color: #b9c8e2;
        }

        .dm-timeline {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 0;
            position: relative;
        }

        .dm-timeline::before {
            content: '';
            position: absolute;
            top: 22px;
            left: 5%;
            right: 5%;
            height: 1px;
            background: rgba(255, 255, 255, 0.2);
        }

        .dm-tl-step {
            position: relative;
            padding: 0 16px;
            text-align: left;
        }

        .dm-tl-step .dm-circle {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: var(--orange);
            color: #fff;
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 22px;
            position: relative;
            z-index: 2;
        }

        .dm-tl-step h4 {
            color: #fff;
            font-size: 16px;
            margin-bottom: 8px;
        }

        .dm-tl-step p {
            color: #a9bcda;
            font-size: 13.5px;
        }

        /* ---- funnel thinking grid ---- */
        .dm-thinking-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        .dm-think-card {
            border: 1px solid var(--line);
            border-radius: 14px;
            padding: 26px 22px;
            transition: transform .2s, box-shadow .2s;
        }

        .dm-think-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 14px 34px rgba(5, 56, 120, 0.1);
        }

        .dm-think-card .dm-ic {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: var(--mist);
            color: var(--navy);
            font-family: var(--font-display);
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .dm-think-card h4 {
            font-size: 16px;
            color: var(--navy);
            margin-bottom: 8px;
        }

        .dm-think-card p {
            font-size: 13.5px;
            color: var(--slate);
        }

        /* ---- services ---- */
        .dm-services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 22px;
        }

        .dm-svc-card {
            border: 1px solid var(--line);
            border-radius: 14px;
            padding: 28px 22px;
            text-align: left;
            transition: transform .2s, box-shadow .2s, border-color .2s;
        }

        .dm-svc-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 14px 34px rgba(5, 56, 120, 0.1);
            border-color: var(--orange);
        }

        .dm-svc-card .dm-hex {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: var(--navy);
            color: #fff;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .dm-svc-card h4 {
            font-size: 16px;
            color: var(--navy);
            margin-bottom: 8px;
        }

        .dm-svc-card p {
            font-size: 13.5px;
            color: var(--slate);
            margin-bottom: 14px;
        }

        .dm-svc-card a {
            font-size: 13px;
            font-weight: 600;
            color: var(--orange);
            text-decoration: none;
        }

        /* ---- stats band ---- */
        .dm-stats-band {
            background: var(--navy-deep);
        }

        .dm-stats-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            text-align: center;
        }

        .dm-stat b {
            display: block;
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 30px;
            color: #fff;
        }

        .dm-stat span {
            font-size: 12.5px;
            color: #9fb0c9;
        }

        /* ---- portfolio / campaigns ---- */
        .dm-portfolio-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .dm-port-card {
            position: relative;
            border-radius: 14px;
            overflow: hidden;
            height: 260px;
        }

        .dm-port-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .4s;
        }

        .dm-port-card:hover img {
            transform: scale(1.06);
        }

        .dm-port-card .dm-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(2, 34, 74, 0.9) 0%, rgba(2, 34, 74, 0.1) 60%);
            display: flex;
            align-items: flex-end;
            padding: 18px;
        }

        .dm-port-card .dm-overlay div span {
            display: block;
            color: var(--orange-light);
            font-size: 11.5px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .dm-port-card .dm-overlay div b {
            color: #fff;
            font-size: 15px;
            font-family: var(--font-display);
        }

        /* ====== RESPONSIVE BREAKPOINTS ====== */

        @media (max-width: 1200px) {
            .dm-stats-grid {
                grid-template-columns: repeat(3, 1fr);
                row-gap: 24px;
            }

            .dm-portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 991px) {
            .dm-hero .dm-wrap {
                grid-template-columns: 1fr;
            }

            .dm-zig {
                grid-template-columns: 1fr;
            }

            .dm-timeline {
                grid-template-columns: 1fr 1fr;
                row-gap: 30px;
            }

            .dm-timeline::before {
                display: none;
            }

            .dm-thinking-grid {
                grid-template-columns: 1fr 1fr;
            }

            .dm-services-grid {
                grid-template-columns: 1fr 1fr;
            }

         
        }

        @media (max-width: 768px) {
            .dm-wrap {
                padding: 0 16px;
            }

            .dm-page section {
                padding: 50px 0;
            }

            .dm-thinking-grid {
                grid-template-columns: 1fr;
            }

            .dm-services-grid {
                grid-template-columns: 1fr;
            }

            .dm-stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .dm-portfolio-grid {
                grid-template-columns: 1fr;
            }

            .dm-timeline {
                grid-template-columns: 1fr;
            }

            .dm-hero-photo img {
                height: 240px;
            }

            .dm-hero-photo .dm-float-card {
                bottom: 10px;
                left: 10px;
                padding: 10px 14px;
            }

            .dm-hero-photo .dm-float-card b {
                font-size: 16px;
            }

            .dm-zig img {
                height: 240px;
            }
        }

        @media (max-width: 480px) {
            .dm-hero {
                padding: 50px 0 40px;
            }

            .dm-page h1 {
                font-size: 28px;
            }

            .dm-hero-ctas {
                flex-direction: column;
            }

            .dm-hero-ctas a {
                text-align: center;
            }

            .dm-stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }

            .dm-stat b {
                font-size: 24px;
            }

            .dm-stat span {
                font-size: 11px;
            }

            .dm-section-head h2 {
                font-size: 22px;
            }

            .dm-tl-step .dm-circle {
                width: 38px;
                height: 38px;
                font-size: 14px;
            }
        }

