/* Digital Experience, CRM & Commerce Page */

/* ========== Hero (Figma 767-2677) ========== */
.dx-hero {
    position: relative;
    width: 100%;
    min-height: 440px;
    background-color: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 6%;
}

.dx-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.dx-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.dx-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.dx-hero-container {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.dx-hero-title {
    font-family: var(--font-family);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #fff;
    margin: 0 0 20px;
}

.dx-hero-subtitle {
    font-size: 18px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 28px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.dx-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #1f2937;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s, transform 0.2s;
}

.dx-hero-cta:hover {
    background: #f5f5f5;
    transform: translateY(-1px);
}

.dx-hero-cta-icon {
    width: 18px;
    height: 18px;
}

/* ========== Section shared ========== */
.dx-section {
    padding: 72px 6% 80px;
    width: 100%;
}

/* 6% left/right same as footer for all sections except Omnichannel; container adds no extra horizontal padding */
.dx-hero .container,
.dx-section:not(.dx-omnichannel-section) .container,
.dx-cta-banner .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}


.dx-section-light {
    background: #fff;
}

.dx-section-dark {
    background: #0f172b;
    color: #fff;
}

.dx-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.dx-section-title {
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 16px;
    color: #fff;
}

.dx-section-title.dx-title-dark {
    color: #111;
}

.dx-section-desc {
    font-size: 16px;
    line-height: 26px;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.dx-section-desc.dx-desc-dark {
    color: #4b5563;
}

/* ========== Architecting Growth Through Data (Figma 767-2684) ========== */
.dx-architecting-section {
    background: #f8f9fa;
}

.dx-architecting-cards {
    max-width: 1200px;
    margin: 0 auto;
}

.dx-architecting-card {
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #f0f2f5 !important;
}

.dx-architecting-card .dx-card-icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 92, 41, 0.12);
    border-radius: 10px;
    margin-bottom: 20px;
}

.dx-architecting-card .dx-card-icon-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* ========== CRM Implementation & Customization (Figma 767-2720) ========== */
.dx-crm-container {
    max-width: 1200px;
    margin: 0 auto;
}

.dx-crm-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 48px;
    align-items: stretch;
}

.dx-crm-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 0;
}

.dx-crm-pain-points {
    flex: 1;
    min-height: 0;
}

.dx-crm-pain-points,
.dx-crm-certified {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 24px;
}

.dx-crm-pain-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--primary-color);
    margin: 0 0 16px;
    text-transform: uppercase;
}

.dx-crm-pain-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dx-crm-pain-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
}

.dx-crm-pain-list li:last-child {
    margin-bottom: 0;
}

.dx-crm-pain-list li::before {
    content: '!';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(232, 92, 41, 0.2);
    border-radius: 50%;
}

.dx-crm-certified-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 16px;
}

.dx-crm-certified-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dx-crm-tag {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.dx-crm-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* CRM card icon background (same as Btract AI Banking Framework) */
.dx-crm-section .card-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.dx-crm-section .card-icon-box .card-icon {
    flex-shrink: 0;
}

.dx-crm-section .bg-orange-dark {
    background-color: rgba(232, 92, 41, 0.1);
}

.dx-crm-section .card-icon {
    width: 24px;
    height: 24px;
    display: block;
    margin: auto;
    object-fit: contain;
    object-position: center;
}

.dx-crm-card {
    border-color: rgba(255, 255, 255, 0.12);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.dx-crm-card:hover {
    transform: translateY(-5px);
    border-color: #e85c29;
}

/* ========== Ecommerce Solutions (Figma 767-2796) ========== */
.dx-ecommerce-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(232, 92, 41, 0.12);
    border: 1px solid rgba(232, 92, 41, 0.4);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--primary-color);
    margin: 0 auto 16px;
    text-align: center;
}

.dx-ecommerce-pill-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}

.dx-ecommerce-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.dx-ecommerce-card {
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.dx-ecommerce-card:hover {
    transform: translateY(-5px);
    border-color: rgba(232, 92, 41, 0.35);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.dx-ecommerce-section .dx-ecommerce-card .card-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px;
}

.dx-ecommerce-section .card-icon-box .card-icon {
    width: 24px;
    height: 24px;
    display: block;
    margin: auto;
    object-fit: contain;
    object-position: center;
    flex-shrink: 0;
}

.dx-ecommerce-section .bg-orange-dark {
    background-color: rgba(232, 92, 41, 0.1);
}

.dx-ecommerce-cta-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e85c29 0%, #c94a1f 100%);
    border: none;
    border-radius: 12px;
    min-height: 160px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dx-ecommerce-cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(232, 92, 41, 0.35);
}

.dx-ecommerce-cta-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    transition: opacity 0.3s;
    text-align: center;
}

.dx-ecommerce-cta-link:hover {
    opacity: 0.95;
}

.dx-ecommerce-cta-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* ========== Cards ========== */
.dx-cards-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.dx-cards-six {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.dx-cards-four {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.dx-card {
    padding: 28px 24px;
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.dx-card:hover {
    transform: translateY(-2px);
}

.dx-card-light {
    background: #fff;
    border: 1px solid #eef0f2;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.dx-card-dark {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dx-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
}

.dx-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dx-card-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0 0 10px;
    color: #fff;
}

.dx-card-title.dx-title-dark {
    color: #111;
}

.dx-card-desc {
    font-size: 14px;
    line-height: 22px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.dx-card-desc.dx-desc-dark {
    color: #6b7280;
}

/* CTA card (View All Solutions) */
.dx-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border: none;
    min-height: 160px;
}

.dx-cta-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    transition: opacity 0.3s;
}

.dx-cta-card-link:hover {
    opacity: 0.9;
}

.dx-cta-icon {
    width: 18px;
    height: 18px;
}

/* ========== Tags (CRM section) ========== */
.dx-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 32px;
}

.dx-tag {
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

/* ========== Channel icons row ========== */
.dx-channel-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

.dx-channel-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.dx-channel-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* ========== Omnichannel Experience Engineering (Figma 767-2874) ========== */
.dx-omnichannel-channels {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 48px;
}

.dx-omnichannel-channel-card {
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.dx-omnichannel-channel-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 92, 41, 0.5);
}

/* Same icon style as CRM section: card-icon-box + bg-orange-dark */
.dx-omnichannel-section .dx-omnichannel-channel-card .card-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.dx-omnichannel-section .dx-omnichannel-channel-card .bg-orange-dark {
    background-color: rgba(232, 92, 41, 0.1);
}

.dx-omnichannel-section .dx-omnichannel-channel-card .card-icon {
    width: 24px;
    height: 24px;
    display: block;
    margin: auto;
    object-fit: contain;
    object-position: center;
    flex-shrink: 0;
}

.dx-omnichannel-channel-label {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.dx-omnichannel-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.dx-omnichannel-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.dx-omnichannel-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 92, 41, 0.4);
}

.dx-omnichannel-check-wrap {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dx-omnichannel-check-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.dx-omnichannel-feature-content {
    flex: 1;
    min-width: 0;
}

.dx-omnichannel-feature-card .dx-card-title {
    margin: 0 0 8px;
}

.dx-omnichannel-feature-card .dx-card-desc {
    margin: 0;
}

.dx-omnichannel-cta-wrap {
    text-align: center;
}

/* btn-orange not in style.css; define for this page so Design My Omnichannel Strategy & DXP CTA render correctly */
.btn-orange {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    text-decoration: none;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-orange:hover {
    background-color: #d64d1f;
    transform: translateY(-1px);
}

.dx-omnichannel-cta {
    min-width: 280px;
}

.dx-section-cta {
    text-align: center;
    margin-top: 40px;
}

.dx-cta-wide {
    min-width: 220px;
}

/* ========== Before/After (UI/UX section) ========== */
.dx-before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 48px;
}

.dx-ba-block {
    text-align: center;
}

.dx-ba-label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin: 0 0 12px;
}

.dx-ba-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

/* ========== UI/UX Design & Audits (Figma 767-2969) ========== */
.dx-uiux-visual-wrap {
    max-width: 1200px;
    margin: 0 auto 48px;
    padding-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.dx-uiux-labels-row {
    position: relative;
    width: 100%;
    padding-bottom: 16px;
    min-height: 1.5em;
}

.dx-uiux-label-before {
    position: absolute;
    left: 25%;
    transform: translateX(-50%);
}

.dx-uiux-label-after {
    position: absolute;
    left: 75%;
    transform: translateX(-50%);
}

.dx-uiux-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.dx-uiux-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dx-uiux-dot-before {
    background: #dc2626;
}

.dx-uiux-dot-after {
    background: #16a34a;
}

.dx-uiux-img {
    width: 100%;
    height: auto;
    min-height: 420px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.dx-uiux-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.dx-uiux-card {
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.dx-uiux-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 92, 41, 0.35);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.dx-uiux-section .dx-uiux-card .card-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px;
}

.dx-uiux-section .dx-uiux-card .bg-orange-dark {
    background-color: rgba(232, 92, 41, 0.1);
}

.dx-uiux-section .dx-uiux-card .card-icon {
    width: 24px;
    height: 24px;
    display: block;
    margin: auto;
    object-fit: contain;
    object-position: center;
    flex-shrink: 0;
}

/* ========== DXP section with sidebar ========== */
.dx-dxp-pill {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(232, 92, 41, 0.2);
    border: 1px solid rgba(232, 92, 41, 0.5);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #fff;
    margin: 0 0 16px;
}

.dx-dxp-container {
    display: grid;
    grid-template-columns: 1fr 320px;
    grid-template-rows: auto 1fr;
    gap: 48px 24px;
    align-items: start;
    max-width: 1280px;
    margin: 0 auto;
}

.dx-dxp-header {
    grid-column: 1 / -1;
    margin-bottom: 0;
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

.dx-dxp-header.dx-section-header {
    margin-bottom: 0;
}

.dx-dxp-cards {
    grid-column: 1;
}

.dx-dxp-sidebar {
    grid-column: 2;
    grid-row: 2;
}

.dx-dxp-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.dx-dxp-card-wide {
    grid-column: 1 / -1;
}

.dx-dxp-card {
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.dx-dxp-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 92, 41, 0.4);
}

.dx-dxp-section .dx-dxp-card .card-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px;
}

.dx-dxp-section .dx-dxp-card .bg-orange-dark {
    background-color: rgba(232, 92, 41, 0.1);
}

.dx-dxp-section .dx-dxp-card .card-icon {
    width: 24px;
    height: 24px;
    display: block;
    margin: auto;
    object-fit: contain;
    object-position: center;
    flex-shrink: 0;
}

.dx-dxp-sidebar {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 28px;
    position: sticky;
    top: 120px;
}

.dx-dxp-trust-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dx-sidebar-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.dx-dxp-trust-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.dx-dxp-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.dx-dxp-section .dx-dxp-trust-item .card-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    flex-shrink: 0;
}

.dx-dxp-section .dx-dxp-trust-item .card-icon {
    width: 24px;
    height: 24px;
    display: block;
    margin: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.dx-dxp-trust-item-content {
    flex: 1;
    min-width: 0;
}

.dx-dxp-trust-item-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 6px;
}

.dx-dxp-trust-item-desc {
    font-size: 14px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.dx-sidebar-list {
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.dx-sidebar-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.dx-sidebar-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.dx-sidebar-cta {
    display: block;
    text-align: center;
    width: 100%;
    margin-top: auto;
}

/* ========== CTA Banner ========== */
.dx-cta-banner {
    background: var(--primary-color);
    padding: 64px 6%;
}

.dx-cta-banner-inner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.dx-cta-banner-title {
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.25;
}

.dx-cta-banner-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 28px;
}

.dx-cta-banner-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.dx-cta-btn-primary {
    background: #fff;
    color: var(--primary-color);
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s, color 0.3s;
}

.dx-cta-btn-primary:hover {
    background: #f0f0f0;
}

.dx-cta-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 26px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s, color 0.3s;
}

.dx-cta-btn-secondary:hover {
    background: #fff;
    color: var(--primary-color);
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .dx-crm-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .dx-omnichannel-channels {
        grid-template-columns: repeat(2, 1fr);
    }

    .dx-uiux-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .dx-ecommerce-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dx-cards-three,
    .dx-cards-six {
        grid-template-columns: repeat(2, 1fr);
    }

    .dx-dxp-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 40px 0;
    }

    .dx-dxp-cards {
        grid-template-columns: repeat(2, 1fr);
        grid-column: 1;
        grid-row: 2;
    }

    .dx-dxp-sidebar {
        grid-column: 1;
        grid-row: 3;
        position: static;
    }
}

@media (max-width: 768px) {
    .dx-hero {
        min-height: 320px;
        padding: 36px 5%;
    }

    .dx-hero-title {
        font-size: clamp(26px, 6vw, 36px);
    }

    .dx-hero-subtitle {
        font-size: 16px;
        line-height: 1.5;
    }

    .dx-hero-cta {
        padding: 14px 24px;
        font-size: 14px;
    }

    .dx-section {
        padding: 48px 5% 56px;
    }

    .dx-uiux-section {
        padding-left: 6%;
        padding-right: 6%;
    }

    .dx-section-header {
        margin-bottom: 36px;
    }

    .dx-crm-layout {
        gap: 24px;
    }

    .dx-crm-pain-points {
        flex: none;
    }

    .dx-crm-cards {
        grid-template-columns: 1fr;
    }

    .dx-ecommerce-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dx-ecommerce-pill {
        font-size: 11px;
        padding: 5px 12px;
    }

    .dx-cards-three,
    .dx-cards-six {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dx-architecting-cards {
        gap: 20px;
    }

    .dx-cards-four {
        grid-template-columns: 1fr;
    }

    .dx-before-after {
        grid-template-columns: 1fr;
    }

    .dx-uiux-cards {
        grid-template-columns: 1fr;
    }

    .dx-uiux-visual-wrap {
        margin-bottom: 36px;
        border-radius: 12px;
        overflow: hidden;
    }

    .dx-uiux-img {
        min-height: 200px;
        max-height: 50vh;
        object-fit: cover;
        border-radius: 12px;
    }

    .dx-uiux-labels-row {
        padding-bottom: 12px;
    }

    .dx-omnichannel-channels {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .dx-omnichannel-channel-card {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    .dx-dxp-container {
        gap: 32px 0;
    }

    .dx-dxp-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dx-dxp-sidebar {
        padding: 24px 20px;
    }

    .dx-omnichannel-features {
        grid-template-columns: 1fr;
    }

    .dx-channel-icons {
        gap: 16px;
    }

    .dx-cta-banner {
        padding: 48px 5%;
    }

    .dx-cta-banner-btns {
        flex-direction: column;
    }

    .dx-cta-btn-primary,
    .dx-cta-btn-secondary {
        width: 100%;
    }

    .dx-omnichannel-cta {
        min-width: 0;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .dx-hero {
        min-height: 280px;
        padding: 28px 4%;
    }

    .dx-hero-title {
        font-size: 24px;
    }

    .dx-section {
        padding: 40px 4% 48px;
    }

    .dx-uiux-section {
        padding-left: 6%;
        padding-right: 6%;
    }

    .dx-section-title {
        font-size: 26px;
    }

    .dx-dxp-container {
        grid-template-columns: 1fr;
        gap: 28px 0;
    }

    .dx-dxp-sidebar {
        padding: 20px 16px;
    }

    .dx-dxp-trust-item {
        gap: 12px;
    }
}
