/* ═══════════════════════════════════════════
   Digital Marketing — Dynamic UI
   ═══════════════════════════════════════════ */

.dm-page {
    position: relative;
    overflow-x: hidden;
    background: var(--dark);
}

/* Floating elements */
.dm-shapes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.dm-shape {
    position: absolute;
    opacity: 0.1;
    background: var(--gradient-primary);
    filter: blur(40px);
}

.dm-shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.dm-shape-2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: -50px;
    background: var(--secondary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* ── Hero ── */
.dm-hero {
    padding-top: 140px;
    padding-bottom: 60px;
    position: relative;
}

.dm-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.dm-hero-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text);
}

.dm-badge {
    background: rgba(6, 182, 212, 0.1);
    color: var(--secondary);
    padding: 6px 14px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.dm-hero-visual {
    max-width: 500px;
    margin-left: auto;
}

.dm-img-box {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-glow);
    background: var(--dark-light);
}

.dm-img-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.dm-hero-title .highlight {
    color: var(--secondary);
    position: relative;
}

.dm-hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--secondary);
    opacity: 0.15;
    z-index: -1;
}

/* ── Why Us ── */
.dm-why-section {
    padding: 80px 0;
    background: rgba(30, 41, 59, 0.3);
}

.dm-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.dm-why-card {
    background: var(--dark-light);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.dm-why-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
}

.dm-why-icon {
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 16px;
}

/* ── Services ── */
.dm-services-section {
    padding: 80px 0;
}

.dm-services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.dm-service-tag {
    background: var(--dark-light);
    padding: 16px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    border-left: 4px solid var(--primary);
    color: var(--text);
}

/* ── Process ── */
.dm-process-section {
    padding: 80px 0;
    background: var(--dark-light);
}

.dm-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 48px;
    position: relative;
}

.dm-process-step {
    text-align: center;
    position: relative;
    color: var(--text);
}

.dm-step-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-weight: 800;
    font-size: 18px;
    color: var(--white);
}

/* ── Text Utils ── */
.dm-prose p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.dm-prose h3 {
    color: var(--text);
    margin-bottom: 20px;
    font-family: var(--font-display);
}

/* ── Content Grid ── */
.dm-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.dm-content-visual {
    max-width: 450px;
}

@media (max-width: 992px) {
    .dm-hero-grid, .dm-content-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .dm-hero-visual, .dm-content-visual {
        margin: 0 auto;
    }
    .dm-hero-visual {
        order: -1;
    }
}
