        /* ========================================
           HERO SECTION - Delivery Modes
           ======================================== */
        .dm-hero {
            position: relative;
            min-height: 400px;
            display: flex;
            align-items: center;
            padding: 140px 60px 100px;
            overflow: hidden;
            background: linear-gradient(135deg, #1e3a5f 0%, #152a45 50%, #1e3a5f 100%);
        }
        .dm-hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -15%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(201, 162, 39, 0.12) 0%, transparent 60%);
            pointer-events: none;
        }
        .dm-hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(44, 82, 130, 0.3) 0%, transparent 60%);
            pointer-events: none;
        }
        .dm-hero-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 80px 80px;
            pointer-events: none;
        }
        /* Floating blocks decoration */
        .dm-hero-blocks {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }
        .dm-block {
            position: absolute;
            border: 1px solid rgba(201, 162, 39, 0.15);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(2px);
        }
        .dm-block-1 {
            width: 180px;
            height: 120px;
            top: 15%;
            right: 10%;
            transform: rotate(-8deg);
            animation: dmFloatBlock 6s ease-in-out infinite;
        }
        .dm-block-2 {
            width: 140px;
            height: 100px;
            top: 45%;
            right: 25%;
            transform: rotate(5deg);
            animation: dmFloatBlock 8s ease-in-out infinite 1s;
            border-color: rgba(255, 255, 255, 0.08);
        }
        .dm-block-3 {
            width: 100px;
            height: 80px;
            top: 70%;
            right: 8%;
            transform: rotate(-3deg);
            animation: dmFloatBlock 7s ease-in-out infinite 0.5s;
        }
        .dm-block-4 {
            width: 60px;
            height: 60px;
            top: 25%;
            right: 35%;
            transform: rotate(12deg);
            animation: dmFloatBlock 5s ease-in-out infinite 2s;
            background: rgba(201, 162, 39, 0.08);
            border-color: rgba(201, 162, 39, 0.25);
        }
        @keyframes dmFloatBlock {
            0%, 100% { transform: translateY(0) rotate(var(--rotation, 0deg)); }
            50% { transform: translateY(-15px) rotate(var(--rotation, 0deg)); }
        }
        /* Hero container */
        .dm-hero-container {
            position: relative;
            z-index: 10;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        /* Left content */
        .dm-hero-content {
            color: #ffffff;
        }
        .dm-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(201, 162, 39, 0.1);
            border: 1px solid rgba(201, 162, 39, 0.25);
            padding: 10px 20px;
            border-radius: 30px;
            margin-bottom: 28px;
        }
        .dm-hero-badge-icon {
            width: 28px;
            height: 28px;
            background: var(--pd-gradient-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .dm-hero-badge-icon svg {
            width: 14px;
            height: 14px;
            stroke: #1e3a5f;
        }
        .dm-hero-badge span {
            font-family: var(--font-body);
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--pd-accent);
        }
        .dm-hero-title {
            font-family: var(--font-heading);
            font-size: clamp(40px, 5vw, 64px);
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 24px;
            color: #ffffff;
        }
        .dm-hero-title span {
            background: var(--pd-gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .dm-hero-subtitle {
            font-family: var(--font-body);
            font-size: 18px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 36px;
            max-width: 520px;
        }
        .dm-hero-features {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 40px;
        }
        .dm-hero-feature {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 10px 18px;
            border-radius: 8px;
            font-family: var(--font-body);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
        }
        .dm-hero-feature svg {
            width: 18px;
            height: 18px;
            stroke: var(--pd-accent);
        }
        .dm-hero-cta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .dm-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--pd-gradient-gold);
            color: #1e3a5f;
            font-family: var(--font-body);
            font-size: 15px;
            font-weight: 600;
            padding: 16px 32px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
        }
        .dm-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(201, 162, 39, 0.4);
            color: #1e3a5f;
        }
        .dm-btn-primary svg {
            width: 18px;
            height: 18px;
            transition: transform 0.3s ease;
        }
        .dm-btn-primary:hover svg {
            transform: translateX(4px);
        }
        .dm-btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: #ffffff;
            font-family: var(--font-body);
            font-size: 15px;
            font-weight: 500;
            padding: 16px 32px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .dm-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.4);
            color: #ffffff;
        }
        /* Right side: Mode Preview Card */
        .dm-hero-preview {
            position: relative;
        }
        .dm-modes-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 28px;
            position: relative;
            overflow: hidden;
        }
        .dm-modes-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--pd-gradient-gold);
        }
        .dm-modes-card-title {
            font-family: var(--font-heading);
            font-size: 16px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
            text-align: center;
            margin-bottom: 20px;
        }
        .dm-modes-card-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }
        .dm-mode-item {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 14px 10px;
            text-align: center;
            transition: all 0.3s ease;
        }
        .dm-mode-item:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-3px);
            border-color: rgba(201, 162, 39, 0.3);
        }
        .dm-mode-item.featured {
            grid-column: span 3;
            background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.05) 100%);
            border-color: rgba(201, 162, 39, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            padding: 16px 20px;
        }
        .dm-mode-item.featured .dm-mode-item-icon {
            margin: 0;
        }
        .dm-mode-item.featured .dm-mode-item-text {
            text-align: left;
        }
        .dm-mode-item-icon {
            width: 40px;
            height: 40px;
            margin: 0 auto 8px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.08);
        }
        .dm-mode-item.featured .dm-mode-item-icon {
            background: rgba(201, 162, 39, 0.2);
            width: 44px;
            height: 44px;
        }
        .dm-mode-item-icon svg {
            width: 20px;
            height: 20px;
            stroke: var(--pd-accent);
        }
        .dm-mode-item.featured .dm-mode-item-icon svg {
            width: 22px;
            height: 22px;
        }
        .dm-mode-item-name {
            font-family: var(--font-body);
            font-size: 13px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 2px;
        }
        .dm-mode-item-tag {
            font-family: var(--font-body);
            font-size: 10px;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .dm-modes-card-note {
            margin-top: 16px;
            padding: 12px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .dm-modes-card-note svg {
            width: 18px;
            height: 18px;
            stroke: var(--pd-accent);
            flex-shrink: 0;
        }
        .dm-modes-card-note span {
            font-family: var(--font-body);
            font-size: 12px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.4;
        }
        /* Responsive */
        @media (max-width: 1024px) {
            .dm-hero {
                padding: 120px 40px 80px;
            }
            .dm-hero-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            .dm-modes-card {
                max-width: 500px;
                margin: 0 auto;
            }
            .dm-hero-blocks {
                display: none;
            }
            .dm-hero-preview {
                max-width: 500px;
            }
        }
        @media (max-width: 768px) {
            .dm-hero {
                padding: 120px 24px 60px;
                min-height: auto;
            }
            .dm-hero-title {
                font-size: 32px;
            }
            .dm-hero-subtitle {
                font-size: 16px;
            }
            .dm-hero-features {
                flex-direction: column;
            }
            .dm-hero-cta {
                flex-direction: column;
            }
            .dm-btn-primary, .dm-btn-secondary {
                justify-content: center;
            }
            .dm-modes-card-grid {
                grid-template-columns: 1fr;
            }
            .dm-mode-item.featured {
                grid-column: span 1;
            }
        }

        /* ========================================
           DELIVERY MODES - PAGE SPECIFIC STYLES
           ======================================== */

        :root {
            --pd-primary: #1e3a5f;
            --pd-primary-light: #2c5282;
            --pd-accent: #c9a227;
            --pd-accent-light: #d4b545;
            --pd-gradient: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
            --pd-gradient-gold: linear-gradient(135deg, #c9a227 0%, #d4b545 100%);
        }

        /* ========================================
           SECTION 1 - INTRODUCTION
           ======================================== */
        .dm-intro-section {
            /* background: #ffffff; */
            padding: 80px 100px 40px;
            position: relative;
            background: var(--er-warm-white);
        }
        .dm-intro-container {
            max-width: 1100px;
            margin: 0 auto;
        }
        .dm-intro-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .dm-section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, rgba(30,58,95,0.08) 0%, rgba(30,58,95,0.03) 100%);
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--pd-primary);
            margin-bottom: 24px;
        }
        .dm-tag-dot {
            width: 8px;
            height: 8px;
            background: var(--pd-accent);
            border-radius: 50%;
            animation: pulse-dot 2s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.8); }
        }
        .dm-intro-title {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 700;
            color: #1a1a2e;
            margin: 0 0 20px;
            line-height: 1.2;
        }
        .dm-intro-title span {
            background: linear-gradient(135deg, var(--pd-accent) 0%, #d4b545 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .dm-title-underline {
            display: flex;
            justify-content: center;
            gap: 6px;
        }
        .dm-underline-segment {
            width: 40px;
            height: 4px;
            background: var(--pd-accent);
            border-radius: 2px;
        }
        .dm-underline-segment:nth-child(2) { width: 20px; opacity: 0.6; }
        .dm-underline-segment:nth-child(3) { width: 10px; opacity: 0.3; }
        .dm-intro-content {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 50px;
            align-items: start;
            margin-bottom: 60px;
        }
        .dm-intro-text-block p {
            font-size: 17px;
            line-height: 1.8;
            color: #4a4a5a;
            margin: 0 0 20px;
        }
        .dm-intro-lead { font-size: 19px !important; color: #2a2a3a !important; }
        .dm-intro-text-block strong { color: var(--pd-primary); font-weight: 600; }
        .dm-intro-text-block em {
            font-style: normal;
            background: linear-gradient(180deg, transparent 60%, rgba(201,162,39,0.25) 60%);
            padding: 0 4px;
        }
        .dm-promise-card {
            background: linear-gradient(160deg, #1e3a5f 0%, #2c5282 100%);
            border-radius: 20px;
            padding: 40px;
            position: relative;
            overflow: hidden;
        }
        .dm-promise-card::before {
            content: '';
            position: absolute;
            top: -50%; right: -50%;
            width: 200%; height: 200%;
            background: radial-gradient(circle, rgba(201,162,39,0.1) 0%, transparent 50%);
            pointer-events: none;
        }
        .dm-promise-icon {
            width: 64px; height: 64px;
            background: rgba(201,162,39,0.15);
            border: 1px solid rgba(201,162,39,0.3);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }
        .dm-promise-icon svg { color: var(--pd-accent); }
        .dm-promise-title { font-size: 22px; font-weight: 600; color: #ffffff; margin: 0 0 12px; }
        .dm-promise-text { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.8); margin: 0; }
        .dm-promise-text strong { color: var(--pd-accent); }
        .dm-quality-pillars {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .dm-pillar {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 24px 28px;
            background: #f8f9fc;
            border: 1px solid #e8eaef;
            border-radius: 16px;
            transition: all 0.3s ease;
        }
        .dm-pillar:hover {
            background: #ffffff;
            border-color: var(--pd-accent);
            box-shadow: 0 10px 40px rgba(30,58,95,0.1);
            transform: translateY(-4px);
        }
        .dm-pillar-icon {
            width: 52px; height: 52px; min-width: 52px;
            background: linear-gradient(135deg, var(--pd-primary) 0%, var(--pd-primary-light) 100%);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .dm-pillar-icon svg { color: #ffffff; }
        .dm-pillar-content { display: flex; flex-direction: column; gap: 2px; }
        .dm-pillar-label { font-size: 12px; font-weight: 500; color: #8a8a9a; text-transform: uppercase; letter-spacing: 1px; }
        .dm-pillar-value { font-size: 18px; font-weight: 700; color: var(--pd-primary); }
        @media (max-width: 992px) {
            .dm-intro-content { grid-template-columns: 1fr; }
            .dm-quality-pillars { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .dm-intro-section { padding: 70px 20px; }
            .dm-promise-card { padding: 30px; }
            .dm-pillar { padding: 20px; }
        }

        /* ========================================
           SECTION 2 - DELIVERY MODES SHOWCASE
           ======================================== */
        .dm-modes-section {
            background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
            padding: 80px 100px 40px 120px;
            position: relative;
            overflow: hidden;
        }
        .dm-modes-section::before {
            content: '';
            position: absolute;
            top: 0; left: 50%;
            transform: translateX(-50%);
            width: 1px; height: 80px;
            background: linear-gradient(180deg, var(--pd-accent), transparent);
        }
        .dm-modes-container { max-width: 1300px; margin: 0 auto; }
        .dm-modes-header { text-align: center; margin-bottom: 70px; }
        .dm-modes-title {
            font-size: clamp(36px, 5vw, 52px);
            font-weight: 700;
            color: #1a1a2e;
            margin: 0 0 16px;
            line-height: 1.2;
        }
        .dm-modes-subtitle { font-size: 18px; color: #5a5a6a; max-width: 500px; margin: 0 auto; }
        .dm-modes-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 50px;
        }
        .dm-mode-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 36px;
            position: relative;
            border: 1px solid #e8eaef;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }
        .dm-mode-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: var(--pd-gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .dm-mode-card:hover {
            border-color: rgba(30, 58, 95, 0.2);
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(30, 58, 95, 0.12);
        }
        .dm-mode-card:hover::before { opacity: 1; }
        .dm-mode-number {
            position: absolute;
            top: 20px; right: 24px;
            font-size: 64px;
            font-weight: 800;
            color: rgba(30, 58, 95, 0.04);
            line-height: 1;
        }
        .dm-mode-category {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }
        .dm-mode-category.in-person { background: rgba(16, 185, 129, 0.1); color: #059669; }
        .dm-mode-category.hybrid { background: rgba(139, 92, 246, 0.1); color: #7c3aed; }
        .dm-mode-category.remote { background: rgba(59, 130, 246, 0.1); color: #2563eb; }
        .dm-mode-category.flexible { background: rgba(245, 158, 11, 0.1); color: #d97706; }
        .dm-mode-icon {
            width: 60px; height: 60px;
            background: var(--pd-gradient);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }
        .dm-mode-icon svg { width: 28px; height: 28px; color: #ffffff; }
        .dm-mode-name { font-size: 22px; font-weight: 700; color: #1a1a2e; margin: 0 0 12px; }
        .dm-mode-desc { font-size: 15px; line-height: 1.7; color: #5a5a6a; margin: 0 0 20px; }
        .dm-mode-ideal {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 14px 16px;
            background: linear-gradient(135deg, rgba(30,58,95,0.04) 0%, rgba(30,58,95,0.02) 100%);
            border-radius: 12px;
            border-left: 3px solid var(--pd-accent);
        }
        .dm-mode-ideal svg { width: 18px; height: 18px; min-width: 18px; color: var(--pd-accent); margin-top: 2px; }
        .dm-mode-ideal span { font-size: 13px; color: #4a4a5a; line-height: 1.5; }
        .dm-mode-ideal strong { color: var(--pd-primary); font-weight: 600; }
        .dm-mode-card.featured {
            grid-column: span 2;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 40px;
            align-items: center;
            padding: 48px;
        }
        .dm-mode-card.featured .dm-mode-visual {
            background: linear-gradient(135deg, var(--pd-primary) 0%, var(--pd-primary-light) 100%);
            border-radius: 20px;
            height: 280px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .dm-mode-card.featured .dm-mode-visual svg { width: 80px; height: 80px; color: rgba(255,255,255,0.9); }
        .dm-mode-card.featured .dm-mode-number { font-size: 100px; top: 30px; right: 40px; }
        .dm-modes-note {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 20px 30px;
            background: rgba(30, 58, 95, 0.03);
            border: 1px dashed rgba(30, 58, 95, 0.15);
            border-radius: 12px;
            max-width: 800px;
            margin: 0 auto;
        }
        .dm-modes-note svg { width: 20px; height: 20px; min-width: 20px; color: var(--pd-primary); }
        .dm-modes-note p { font-size: 14px; color: #5a5a6a; margin: 0; line-height: 1.6; }
        @media (max-width: 1100px) {
            .dm-modes-grid { grid-template-columns: repeat(2, 1fr); }
            .dm-mode-card.featured { grid-column: span 2; grid-template-columns: 1fr; }
            .dm-mode-card.featured .dm-mode-visual { height: 200px; }
        }
        @media (max-width: 768px) {
            .dm-modes-section { padding: 70px 20px 90px; }
            .dm-modes-grid { grid-template-columns: 1fr; }
            .dm-mode-card.featured { grid-column: span 1; padding: 36px; }
            .dm-mode-card { padding: 28px; }
            .dm-mode-number { font-size: 48px; }
        }

        /* ========================================
           SECTION 3 - SAME STANDARDS (PARITY)
           ======================================== */
        .dm-parity-section {
            background: linear-gradient(160deg, #0f1c2e 0%, #1a2d47 50%, #162538 100%);
            padding: 80px 120px 40px;
            position: relative;
            overflow: hidden;
        }
        .dm-parity-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background:
                radial-gradient(ellipse 80% 50% at 20% 20%, rgba(201,162,39,0.08) 0%, transparent 50%),
                radial-gradient(ellipse 60% 40% at 80% 80%, rgba(44,82,130,0.15) 0%, transparent 50%);
            pointer-events: none;
        }
        .dm-parity-container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
        .dm-parity-header { text-align: center; margin-bottom: 70px; }
        .dm-parity-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 20px;
            background: rgba(201,162,39,0.15);
            border: 1px solid rgba(201,162,39,0.3);
            border-radius: 50px;
            margin-bottom: 24px;
        }
        .dm-parity-badge svg { width: 18px; height: 18px; color: var(--pd-accent); }
        .dm-parity-badge span { font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--pd-accent); }
        .dm-parity-title { font-size: clamp(36px, 5vw, 52px); font-weight: 700; color: #ffffff; margin: 0 0 16px; line-height: 1.2; }
        .dm-parity-subtitle { font-size: 18px; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; }
        .dm-parity-equation {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 80px;
            padding: 30px;
            background: rgba(255,255,255,0.03);
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.06);
        }
        .dm-equation-mode {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            background: rgba(255,255,255,0.05);
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .dm-equation-mode svg { width: 20px; height: 20px; color: rgba(255,255,255,0.8); }
        .dm-equation-mode span { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.9); }
        .dm-equation-equals { font-size: 28px; font-weight: 700; color: var(--pd-accent); padding: 0 8px; }
        .dm-equation-result {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            background: var(--pd-gradient-gold);
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(201,162,39,0.25);
        }
        .dm-equation-result svg { width: 22px; height: 22px; color: #1a2d47; }
        .dm-equation-result span { font-size: 15px; font-weight: 700; color: #1a2d47; letter-spacing: 0.5px; }
        .dm-standards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-bottom: 60px;
        }
        .dm-standard-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 20px;
            padding: 32px 28px;
            position: relative;
            transition: all 0.4s ease;
            overflow: hidden;
        }
        .dm-standard-card:hover {
            background: rgba(255,255,255,0.07);
            border-color: rgba(201,162,39,0.2);
            transform: translateY(-6px);
        }
        .dm-standard-icon {
            width: 56px; height: 56px;
            background: linear-gradient(135deg, rgba(201,162,39,0.2) 0%, rgba(201,162,39,0.05) 100%);
            border: 1px solid rgba(201,162,39,0.25);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }
        .dm-standard-icon svg { width: 26px; height: 26px; color: var(--pd-accent); }
        .dm-standard-title { font-size: 18px; font-weight: 700; color: #ffffff; margin: 0 0 12px; line-height: 1.3; }
        .dm-standard-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.65); margin: 0; }
        .dm-parity-quote {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            padding: 40px;
            background: linear-gradient(135deg, rgba(201,162,39,0.08) 0%, rgba(201,162,39,0.02) 100%);
            border: 1px solid rgba(201,162,39,0.15);
            border-radius: 20px;
            position: relative;
        }
        .dm-parity-quote::before {
            content: '"';
            position: absolute;
            top: 20px; left: 30px;
            font-size: 80px;
            font-family: Georgia, serif;
            color: rgba(201,162,39,0.15);
            line-height: 1;
        }
        .dm-parity-quote p { font-size: 20px; font-weight: 500; color: rgba(255,255,255,0.95); line-height: 1.6; margin: 0; font-style: italic; }
        .dm-parity-quote p strong { color: var(--pd-accent); font-weight: 600; }
        @media (max-width: 1100px) { .dm-standards-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 768px) {
            .dm-parity-section { padding: 80px 20px; }
            .dm-standards-grid { grid-template-columns: 1fr; }
            .dm-parity-equation { padding: 20px; gap: 12px; }
            .dm-equation-mode { padding: 10px 14px; }
            .dm-equation-mode span { font-size: 12px; }
            .dm-equation-equals { font-size: 20px; }
            .dm-parity-quote { padding: 30px 20px; }
        }

        /* ========================================
           SECTION 4 - ECOSYSTEM INFRASTRUCTURE
           ======================================== */
        .dm-ecosystem-section {
            /* background: #ffffff; */
            padding: 80px 120px 40px;
            position: relative;
            overflow: hidden;
            background: var(--er-warm-white);
        }
        .dm-ecosystem-container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
        .dm-ecosystem-header { text-align: center; margin-bottom: 70px; }
        .dm-ecosystem-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 18px;
            background: linear-gradient(135deg, rgba(30,58,95,0.08) 0%, rgba(30,58,95,0.03) 100%);
            border: 1px solid rgba(30,58,95,0.12);
            border-radius: 8px;
            margin-bottom: 24px;
        }
        .dm-ecosystem-tag svg { width: 18px; height: 18px; color: var(--pd-primary); }
        .dm-ecosystem-tag span { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--pd-primary); }
        .dm-ecosystem-title { font-size: clamp(36px, 5vw, 50px); font-weight: 700; color: #1a1a2e; margin: 0 0 16px; line-height: 1.2; }
        .dm-ecosystem-subtitle { font-size: 18px; color: #5a5a6a; max-width: 550px; margin: 0 auto; }
        .dm-ecosystem-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            position: relative;
        }
        .dm-ecosystem-grid::before {
            content: '';
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 80px; height: 80px;
            background: var(--pd-gradient);
            border-radius: 50%;
            z-index: 10;
            box-shadow: 0 8px 32px rgba(30,58,95,0.2);
        }
        .dm-ecosystem-grid::after {
            content: '⚙';
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            font-size: 32px;
            z-index: 11;
            filter: grayscale(1) brightness(10);
        }
        .dm-eco-card {
            background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
            border: 1px solid #e8eaef;
            border-radius: 24px;
            padding: 40px 36px;
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .dm-eco-card:hover {
            border-color: rgba(30,58,95,0.2);
            transform: translateY(-8px);
            box-shadow: 0 24px 64px rgba(30,58,95,0.1);
        }
        .dm-eco-number {
            position: absolute;
            top: -12px; left: 36px;
            width: 40px; height: 40px;
            background: var(--pd-gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            box-shadow: 0 4px 12px rgba(30,58,95,0.25);
        }
        .dm-eco-icon {
            width: 64px; height: 64px;
            background: linear-gradient(135deg, rgba(201,162,39,0.12) 0%, rgba(201,162,39,0.04) 100%);
            border: 1px solid rgba(201,162,39,0.2);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            transition: all 0.3s ease;
        }
        .dm-eco-card:hover .dm-eco-icon { background: var(--pd-gradient-gold); border-color: transparent; }
        .dm-eco-icon svg { width: 30px; height: 30px; color: var(--pd-accent); transition: color 0.3s ease; }
        .dm-eco-card:hover .dm-eco-icon svg { color: #1a2d47; }
        .dm-eco-title { font-size: 22px; font-weight: 700; color: #1a1a2e; margin: 0 0 14px; line-height: 1.3; }
        .dm-eco-desc { font-size: 15px; line-height: 1.7; color: #5a5a6a; margin: 0 0 20px; }
        .dm-eco-features { display: flex; flex-wrap: wrap; gap: 8px; }
        .dm-eco-feature {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 6px 12px;
            background: rgba(30,58,95,0.05);
            border-radius: 6px;
            font-size: 12px;
            font-weight: 500;
            color: #4a5568;
        }
        .dm-eco-feature svg { width: 12px; height: 12px; color: var(--pd-accent); }
        .dm-ecosystem-trust {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            margin-top: 70px;
            padding-top: 40px;
            border-top: 1px solid #e8eaef;
        }
        .dm-trust-item { display: flex; align-items: center; gap: 12px; }
        .dm-trust-icon {
            width: 44px; height: 44px;
            background: linear-gradient(135deg, rgba(30,58,95,0.08) 0%, rgba(30,58,95,0.03) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .dm-trust-icon svg { width: 22px; height: 22px; color: var(--pd-primary); }
        .dm-trust-text { font-size: 14px; font-weight: 600; color: #3a3a4a; }
        @media (max-width: 900px) {
            .dm-ecosystem-grid { grid-template-columns: 1fr; gap: 50px; }
            .dm-ecosystem-grid::before, .dm-ecosystem-grid::after { display: none; }
        }
        @media (max-width: 768px) {
            .dm-ecosystem-section { padding: 80px 20px; }
            .dm-eco-card { padding: 32px 24px; }
            .dm-ecosystem-trust { flex-direction: column; gap: 20px; }
        }

        /* ========================================
           SECTION 5 - CHOOSE & CHANGE MODE
           ======================================== */
        .dm-flexibility-section {
            background: linear-gradient(180deg, #f0f4f8 0%, #e8eef4 50%, #f5f7fa 100%);
            padding: 80px 120px 40px;
            position: relative;
            overflow: hidden;
        }
        .dm-flexibility-container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
        .dm-flexibility-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 80px;
        }
        .dm-flex-content { max-width: 520px; }
        .dm-flex-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(201,162,39,0.12);
            border-radius: 6px;
            margin-bottom: 24px;
        }
        .dm-flex-tag svg { width: 16px; height: 16px; color: var(--pd-accent); }
        .dm-flex-tag span { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #8b6914; }
        .dm-flex-title { font-size: clamp(32px, 4.5vw, 46px); font-weight: 700; color: #1a1a2e; margin: 0 0 16px; line-height: 1.2; }
        .dm-flex-subtitle { font-size: 18px; color: #5a5a6a; margin: 0 0 36px; line-height: 1.6; }
        .dm-flex-points { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
        .dm-flex-point {
            display: flex;
            gap: 16px;
            padding: 20px;
            background: #ffffff;
            border-radius: 16px;
            border: 1px solid #e0e4ea;
            transition: all 0.3s ease;
        }
        .dm-flex-point:hover {
            border-color: rgba(201,162,39,0.3);
            box-shadow: 0 8px 24px rgba(30,58,95,0.08);
            transform: translateX(6px);
        }
        .dm-flex-point-icon {
            width: 48px; height: 48px; min-width: 48px;
            background: var(--pd-gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .dm-flex-point-icon svg { width: 24px; height: 24px; color: #ffffff; }
        .dm-flex-point-text h4 { font-size: 16px; font-weight: 700; color: #1a1a2e; margin: 0 0 6px; }
        .dm-flex-point-text p { font-size: 14px; color: #5a5a6a; margin: 0; line-height: 1.6; }
        .dm-flex-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
        .dm-flex-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 28px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .dm-flex-btn.primary {
            background: var(--pd-gradient);
            color: #ffffff;
            box-shadow: 0 4px 16px rgba(30,58,95,0.25);
        }
        .dm-flex-btn.primary:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(30,58,95,0.35); }
        .dm-flex-btn.secondary { background: #ffffff; color: var(--pd-primary); border: 2px solid #e0e4ea; }
        .dm-flex-btn.secondary:hover { border-color: var(--pd-primary); background: rgba(30,58,95,0.03); }
        .dm-flex-btn svg { width: 18px; height: 18px; transition: transform 0.3s ease; }
        .dm-flex-btn:hover svg { transform: translateX(4px); }
        .dm-flex-visual { position: relative; }
        .dm-mode-transition {
            background: #ffffff;
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(30,58,95,0.1);
            border: 1px solid #e0e4ea;
        }
        .dm-transition-header { text-align: center; margin-bottom: 30px; }
        .dm-transition-header span {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--pd-primary);
            background: rgba(30,58,95,0.06);
            padding: 6px 14px;
            border-radius: 6px;
        }
        .dm-transition-flow { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .dm-transition-mode {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            padding: 20px;
            background: linear-gradient(135deg, rgba(30,58,95,0.04) 0%, rgba(30,58,95,0.01) 100%);
            border-radius: 16px;
            border: 1px solid #e8eaef;
            min-width: 100px;
            transition: all 0.3s ease;
        }
        .dm-transition-mode:hover { border-color: rgba(201,162,39,0.4); background: rgba(201,162,39,0.05); }
        .dm-transition-mode svg { width: 32px; height: 32px; color: var(--pd-primary); }
        .dm-transition-mode span { font-size: 13px; font-weight: 600; color: #3a3a4a; }
        .dm-transition-arrow { display: flex; flex-direction: column; align-items: center; gap: 4px; }
        .dm-transition-arrow svg { width: 28px; height: 28px; color: var(--pd-accent); }
        .dm-transition-arrow span { font-size: 10px; font-weight: 600; color: #8b6914; text-transform: uppercase; letter-spacing: 0.5px; }
        .dm-transition-examples { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .dm-transition-example {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 14px;
            background: rgba(16,185,129,0.06);
            border-radius: 10px;
            border-left: 3px solid #10b981;
        }
        .dm-transition-example svg { width: 16px; height: 16px; color: #10b981; min-width: 16px; }
        .dm-transition-example span { font-size: 12px; color: #4a5a5a; line-height: 1.4; }
        .dm-flex-closing {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
            padding: 40px;
            background: linear-gradient(135deg, var(--pd-primary) 0%, var(--pd-primary-light) 100%);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }
        .dm-flex-closing p { font-size: 20px; font-weight: 500; color: rgba(255,255,255,0.95); line-height: 1.6; margin: 0; position: relative; z-index: 2; }
        .dm-flex-closing strong { color: var(--pd-accent); font-weight: 600; }
        @media (max-width: 1000px) {
            .dm-flexibility-grid { grid-template-columns: 1fr; gap: 50px; }
            .dm-flex-content { max-width: 100%; text-align: center; }
            .dm-flex-points { max-width: 500px; margin: 0 auto 40px; }
            .dm-flex-ctas { justify-content: center; }
        }
        @media (max-width: 768px) {
            .dm-flexibility-section { padding: 80px 20px; }
            .dm-transition-flow { flex-direction: column; gap: 16px; }
            .dm-transition-arrow { transform: rotate(90deg); }
            .dm-transition-examples { grid-template-columns: 1fr; }
            .dm-flex-closing { padding: 30px 20px; }
            .dm-flex-closing p { font-size: 17px; }
            .dm-flex-btn { width: 100%; justify-content: center; }
        }
        /* page level colour */
        .bu-connect-section{
            background: var(--er-warm-white);
        }
        
