/* ============================================
   EDVANCE MEDIA — Dev Page Specific Styles
   ============================================ */

/* --- Dev Hero layout --- */
.dev-hero { overflow: hidden; }
.dev-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.dev-hero .srv-hero__content {
    padding: 80px 0;
    max-width: 100%;
}
.dev-hero__visual {
    position: relative;
    width: 100%;
    height: 500px;
}
.dev-hero__canvas {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

@media (max-width: 1024px) {
    .dev-hero__grid {
        grid-template-columns: 1fr;
    }
    .dev-hero__visual {
        height: 360px;
    }
    .dev-hero .srv-hero__content {
        text-align: center;
        padding: 40px 0 0;
    }
    .dev-hero .srv-hero__actions { justify-content: center; }
    .dev-hero .srv-hero__subtitle { margin-left: auto; margin-right: auto; }
}
@media (max-width: 768px) {
    .dev-hero__visual { height: 300px; }
}

/* --- Icon colors (dev page specific) --- */
.what-card__icon--web { background: rgba(79,70,229,0.1); color: var(--primary); }
.what-card__icon--shop { background: rgba(16,185,129,0.1); color: var(--mkt-green); }
.what-card__icon--app { background: rgba(124,58,237,0.1); color: var(--accent); }
.what-card__icon--micro { background: rgba(236,72,153,0.1); color: #EC4899; }
.what-card__icon--support { background: rgba(245,158,11,0.1); color: var(--mkt-orange); }

/* --- Tech Stack Section --- */
.stack-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stack-group {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
}
.stack-group:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.stack-group h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 16px;
}
.stack-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.stack-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: rgba(79,70,229,0.06);
    border: 1px solid rgba(79,70,229,0.12);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition);
}
.stack-group:hover .stack-tag {
    border-color: rgba(79,70,229,0.25);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .stack-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .stack-grid { grid-template-columns: 1fr; }
}
