/* ═══════════════════════════════════════════
   Web Application Development — Professional UI
   ═══════════════════════════════════════════ */

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

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

.wad-shape {
    position: absolute;
    opacity: 0.08;
    background: var(--gradient-primary);
}

.wad-shape-1 {
    width: 350px;
    height: 350px;
    top: 5%;
    right: -50px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: wadFloat 12s ease-in-out infinite;
}

.wad-shape-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: 5%;
    background: var(--secondary);
    border-radius: var(--radius-lg);
    animation: wadFloat 15s ease-in-out infinite reverse;
}

@keyframes wadFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* ── Hero ── */
.wad-hero {
    padding-top: 140px;
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
}

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

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

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

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

.wad-badge {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-light);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    border-left: 3px solid var(--primary);
}

.wad-img-box {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-glow);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

/* ── Content Sections ── */
.wad-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.wad-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.wad-prose h3 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 36px);
    margin-bottom: 24px;
    color: var(--text);
}

.wad-prose p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ── Philosophy Card ── */
.wad-philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.wad-philosophy-card {
    background: var(--dark-light);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.wad-philosophy-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    background: rgba(30, 41, 59, 0.8);
}

.wad-philosophy-icon {
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 20px;
}

/* ── Tools ── */
.wad-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.wad-tool-item {
    background: var(--dark-light);
    padding: 16px 24px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--primary-light);
}

/* ── CTA Box ── */
.wad-cta-box {
    background: var(--dark-light);
    padding: 60px;
    border-radius: var(--radius-xl);
    text-align: center;
    margin-top: 60px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-soft);
}

@media (max-width: 992px) {
    .wad-hero-grid, .wad-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .wad-hero-visual {
        order: -1;
    }
}
