/* =====================================================================
   YAZILIM & WEB GELİŞTİRME — page-yazilim-gelistirme.php
   Site palette: --primary #ff6a3d, --accent #4f8cff
   ===================================================================== */

/* ============ HERO ============ */
.yz-hero {
    position: relative;
    padding: 130px 0 80px;
    overflow: hidden;
}
.yz-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.yz-hero-text .eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 106, 61, 0.12);
    border: 1px solid rgba(255, 106, 61, 0.32);
    border-radius: 999px;
    font-family: 'JetBrains Mono', monospace;
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--primary, #ff6a3d);
    margin-bottom: 18px;
}
.yz-hero-text h1 {
    font-size: clamp(2rem, 4.4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.08;
    color: #fff;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}
.yz-hero-text h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--primary, #ff6a3d), #ff8a5b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.yz-hero-lead {
    color: rgba(255,255,255,0.74);
    font-size: 1.04rem;
    line-height: 1.7;
    margin: 0 0 28px;
    max-width: 620px;
}
.yz-hero-lead strong { color: #fff; }
.yz-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}
.yz-hero-stats > div {
    padding: 14px 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    text-align: center;
}
.yz-hero-stats strong {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary, #ff6a3d);
    line-height: 1.1;
}
.yz-hero-stats span {
    display: block;
    margin-top: 4px;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255,255,255,0.55);
}
.yz-hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Matrix arka plan */
.yz-matrix {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    opacity: .12;
    pointer-events: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    line-height: 1.4;
    color: var(--primary, #ff6a3d);
}
.yz-mx-col {
    position: absolute;
    top: -100%;
    left: var(--x, 0);
    width: 18px;
    text-align: center;
    animation: yz-mx-fall 14s linear infinite;
    animation-delay: var(--d, 0s);
    white-space: nowrap;
}
@keyframes yz-mx-fall {
    0%   { transform: translateY(0); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translateY(220vh); opacity: 0; }
}

/* Animasyonlu Terminal */
.yz-hero-terminal {
    background: linear-gradient(180deg, #1a1f2e, #0f1320);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 70px -20px rgba(0,0,0,0.7),
                0 0 0 1px rgba(255, 106, 61, 0.1);
    transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
    font-family: 'JetBrains Mono', monospace;
}
.yzt-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 11px 16px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.yzt-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #555;
}
.yzt-dot.r { background: #ff5f57; }
.yzt-dot.y { background: #febc2e; }
.yzt-dot.g { background: #28c840; }
.yzt-title {
    margin-left: auto;
    font-size: .72rem;
    color: rgba(255,255,255,0.45);
}
.yzt-body {
    padding: 18px 20px;
    font-size: .82rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.78);
    min-height: 280px;
}
.yzt-line { display: block; }
.yzt-p { color: var(--primary, #ff6a3d); font-weight: 700; margin-right: 8px; }
.yzt-cmd { color: #fff; }
.yzt-out { color: rgba(255,255,255,0.6); padding-left: 18px; }
.yzt-ok { color: #3fb950; font-weight: 700; }
.yzt-cursor {
    display: inline-block;
    width: 8px;
    background: var(--primary, #ff6a3d);
    color: var(--primary, #ff6a3d);
    animation: yz-blink 1s step-end infinite;
}
@keyframes yz-blink { 50% { opacity: 0; } }

/* ============ PLATFORMS ============ */
.yz-platforms { padding: 80px 0; position: relative; }
.yz-plat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 36px;
}
.yz-plat-card {
    --accent: var(--primary, #ff6a3d);
    position: relative;
    padding: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    overflow: hidden;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.yz-plat-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent);
    opacity: .85;
}
.yz-plat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.18);
    box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6), 0 0 0 1px var(--accent);
}
.yz-plat-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
.yz-plat-logo {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -.04em;
    box-shadow: 0 6px 16px -6px rgba(0,0,0,0.5);
}
.yz-plat-head h3 {
    margin: 0 0 3px;
    font-size: 1.18rem;
    color: #fff;
    font-weight: 800;
}
.yz-plat-tag {
    font-size: .72rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: .02em;
}
.yz-plat-card > p {
    color: rgba(255,255,255,0.74);
    font-size: .92rem;
    line-height: 1.65;
    margin: 0 0 14px;
}
.yz-plat-card > p strong { color: #fff; }
.yz-plat-feats {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: grid;
    gap: 7px;
}
.yz-plat-feats li {
    position: relative;
    padding-left: 22px;
    font-size: .85rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.5;
}
.yz-plat-feats li::before {
    content: "✓";
    position: absolute;
    left: 0; top: 0;
    color: var(--accent);
    font-weight: 800;
}
.yz-plat-feats li strong { color: #fff; }
.yz-plat-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 14px;
    border-top: 1px dashed rgba(255,255,255,0.1);
}
.yz-plat-stack span {
    padding: 4px 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    font-family: 'JetBrains Mono', monospace;
    font-size: .68rem;
    color: rgba(255,255,255,0.78);
    font-weight: 600;
}

/* ============ ÖZEL WEB / STACK SPLIT ============ */
.yz-custom { padding: 80px 0; position: relative; }
.yz-stack-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 36px;
}
.yz-stack-col {
    padding: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
}
.yz-stack-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.yz-stack-badge.frontend {
    background: rgba(79, 140, 255, 0.12);
    border: 1px solid rgba(79, 140, 255, 0.4);
    color: #7eaaff;
}
.yz-stack-badge.backend {
    background: rgba(255, 106, 61, 0.12);
    border: 1px solid rgba(255, 106, 61, 0.4);
    color: #ffb795;
}
.yz-stack-col h3 {
    color: #fff;
    font-size: 1.28rem;
    font-weight: 800;
    margin: 0 0 8px;
}
.yz-stack-intro {
    color: rgba(255,255,255,0.72);
    font-size: .9rem;
    line-height: 1.6;
    margin: 0 0 18px;
}
.yz-stack-tech {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}
.yzst-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
}
.yzst-lbl {
    flex: 0 0 88px;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: rgba(255,255,255,0.5);
    font-weight: 700;
}
.yzst-tag {
    padding: 3px 9px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: .7rem;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
}
.yz-stack-checks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}
.yz-stack-checks li {
    position: relative;
    padding-left: 22px;
    font-size: .86rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.55;
}
.yz-stack-checks li::before {
    content: "▸";
    position: absolute;
    left: 4px; top: 0;
    color: var(--primary, #ff6a3d);
    font-weight: 800;
}
.yz-stack-checks li strong { color: #fff; }

/* ============ MOBİL ============ */
.yz-mobile { padding: 80px 0; position: relative; }
.yz-mobile-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}
.yz-mobile-text .eyebrow,
.yz-cloud .eyebrow,
.yz-factory .eyebrow,
.yz-process .eyebrow,
.yz-support .eyebrow,
.yz-cta .eyebrow,
.yz-custom .eyebrow,
.yz-platforms .eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 106, 61, 0.12);
    border: 1px solid rgba(255, 106, 61, 0.32);
    border-radius: 999px;
    font-family: 'JetBrains Mono', monospace;
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--primary, #ff6a3d);
}
.yz-mobile-text h2,
.yz-cloud .section-header h2,
.yz-factory .section-header h2,
.yz-process .section-header h2,
.yz-support-text h2,
.yz-cta-inner h2,
.yz-custom .section-header h2,
.yz-platforms .section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 800;
    color: #fff;
    margin: 12px 0 16px;
    letter-spacing: -.01em;
    line-height: 1.18;
}
.yz-mobile-text h2 em,
.yz-cloud .section-header h2 em,
.yz-factory .section-header h2 em,
.yz-process .section-header h2 em,
.yz-support-text h2 em,
.yz-cta-inner h2 em,
.yz-custom .section-header h2 em,
.yz-platforms .section-header h2 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--primary, #ff6a3d), #ff8a5b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.yz-mobile-intro,
.yz-cloud .section-header p,
.yz-factory .section-header p,
.yz-process .section-header p,
.yz-support-text p,
.yz-cta-inner p,
.yz-custom .section-header p,
.yz-platforms .section-header p {
    color: rgba(255,255,255,0.72);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 720px;
}
.yz-mobile-intro strong { color: #fff; }
.yz-mobile-approach {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 20px 0 22px;
}
.yz-map-card {
    padding: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
}
.yz-map-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.yz-map-badge.native {
    background: rgba(255, 106, 61, 0.15);
    color: #ffb795;
    border: 1px solid rgba(255, 106, 61, 0.4);
}
.yz-map-badge.cross {
    background: rgba(79, 140, 255, 0.15);
    color: #8eb6ff;
    border: 1px solid rgba(79, 140, 255, 0.4);
}
.yz-map-card h4 {
    color: #fff;
    font-size: 1rem;
    margin: 0 0 6px;
    font-weight: 800;
}
.yz-map-card p {
    color: rgba(255,255,255,0.68);
    font-size: .82rem;
    line-height: 1.55;
    margin: 0 0 10px;
}
.yz-map-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 4px;
}
.yz-map-card ul li {
    font-family: 'JetBrains Mono', monospace;
    font-size: .72rem;
    color: rgba(255,255,255,0.65);
}

/* iPhone mockup */
.yz-phone {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9 / 19.5;
}
.yz-phone-body {
    position: relative;
    width: 100%;
    height: 100%;
    background: #0a0e1a;
    border: 12px solid #1a1f2e;
    border-radius: 44px;
    box-shadow: 0 40px 80px -25px rgba(0,0,0,0.8),
                0 0 0 2px rgba(255, 106, 61, 0.18),
                inset 0 0 0 1px rgba(255,255,255,0.04);
    overflow: hidden;
}
.yz-phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 26px;
    background: #000;
    border-radius: 0 0 18px 18px;
    z-index: 3;
}
.yz-phone-screen {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #1a1f2e, #0a0e1a);
    color: #fff;
    padding: 38px 14px 14px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.yz-phone-statusbar {
    display: flex;
    justify-content: space-between;
    font-family: 'JetBrains Mono', monospace;
    font-size: .6rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 14px;
}
.yz-phone-app { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.yz-pa-header { display: flex; align-items: center; gap: 10px; }
.yz-pa-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary, #ff6a3d), #ff8a5b);
}
.yz-pa-welcome { flex: 1; }
.yz-pa-welcome small {
    display: block;
    font-size: .58rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: .04em;
}
.yz-pa-welcome strong { font-size: .88rem; color: #fff; }
.yz-pa-bell {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: grid;
    place-items: center;
    font-size: .8rem;
}
.yz-pa-card {
    padding: 14px;
    background: linear-gradient(135deg, rgba(255,106,61,0.18), rgba(255,138,91,0.06));
    border: 1px solid rgba(255,106,61,0.3);
    border-radius: 14px;
}
.yz-pa-card > span {
    display: block;
    font-size: .58rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: .06em;
}
.yz-pa-card > strong {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.4rem;
    color: #fff;
    font-weight: 800;
    margin: 4px 0 10px;
}
.yz-pa-card > strong small { font-size: .8rem; color: rgba(255,255,255,0.6); font-weight: 600; }
.yz-pa-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 38px;
}
.yz-pa-chart span {
    flex: 1;
    background: linear-gradient(180deg, var(--primary, #ff6a3d), rgba(255, 106, 61, 0.3));
    border-radius: 3px;
    animation: yz-bar-grow 1.6s ease;
    transform-origin: bottom;
}
@keyframes yz-bar-grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.yz-pa-list { display: grid; gap: 6px; }
.yz-pa-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 10px;
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
}
.yz-pai-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: .7rem;
    color: #fff;
    font-weight: 800;
}
.yz-pai-icon.blue { background: rgba(79,140,255,0.25); color: #8eb6ff; }
.yz-pai-icon.green { background: rgba(63,185,80,0.25); color: #6ee780; }
.yz-pai-icon.purple { background: rgba(224, 86, 253, 0.22); color: #d493ff; }
.yz-pa-item div { display: flex; flex-direction: column; line-height: 1.2; }
.yz-pa-item small { font-size: .58rem; color: rgba(255,255,255,0.5); text-transform: uppercase; }
.yz-pa-item strong { font-size: .8rem; color: #fff; font-family: 'JetBrains Mono', monospace; }
.yz-pa-nav {
    margin-top: auto;
    display: flex;
    justify-content: space-around;
    padding: 8px 0 4px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.yz-pa-nav span {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    font-size: 1rem;
    opacity: .55;
}
.yz-pa-nav span.active {
    opacity: 1;
    color: var(--primary, #ff6a3d);
    background: rgba(255, 106, 61, 0.15);
    border-radius: 10px;
}
.yz-phone-pulse {
    position: absolute;
    inset: -10px;
    border-radius: 56px;
    border: 2px solid rgba(255, 106, 61, 0.35);
    animation: yz-pulse 2.6s ease-out infinite;
    pointer-events: none;
}
@keyframes yz-pulse {
    0%   { transform: scale(0.96); opacity: .7; }
    100% { transform: scale(1.08); opacity: 0; }
}

/* ============ CLOUD ============ */
.yz-cloud { padding: 80px 0; position: relative; }
.yz-cloud-providers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 36px 0 50px;
}
.yz-cp {
    --c: var(--primary, #ff6a3d);
    padding: 24px 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,255,255,0.08);
    border-top: 3px solid var(--c);
    border-radius: 16px;
    transition: transform .3s, box-shadow .3s;
}
.yz-cp:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -20px rgba(0,0,0,0.5), 0 0 0 1px var(--c);
}
.yz-cp-logo {
    display: inline-block;
    padding: 6px 14px;
    background: var(--c);
    color: #fff;
    border-radius: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: .04em;
    margin-bottom: 12px;
}
.yz-cp h4 {
    color: #fff;
    margin: 0 0 12px;
    font-size: 1.05rem;
    font-weight: 800;
}
.yz-cp ul {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: grid;
    gap: 5px;
}
.yz-cp ul li {
    font-family: 'JetBrains Mono', monospace;
    font-size: .74rem;
    color: rgba(255,255,255,0.72);
}
.yz-cp-cert {
    display: block;
    padding: 8px 12px;
    background: rgba(255,255,255,0.04);
    border-left: 2px solid var(--c);
    border-radius: 0 8px 8px 0;
    font-size: .72rem;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
}

/* CI/CD pipeline */
.yz-pipeline {
    padding: 28px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    margin-bottom: 40px;
}
.yz-pipeline h3 {
    color: #fff;
    font-size: 1.05rem;
    margin: 0 0 22px;
    text-align: center;
    font-weight: 800;
}
.yz-pipeline h3 em {
    font-style: normal;
    color: var(--primary, #ff6a3d);
    font-family: 'JetBrains Mono', monospace;
}
.yz-pipe-track {
    display: flex;
    align-items: stretch;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 6px;
}
.yz-pipe-step {
    flex: 1 1 120px;
    min-width: 120px;
    padding: 14px 10px;
    background: linear-gradient(180deg, rgba(255, 106, 61, 0.08), rgba(255, 106, 61, 0.02));
    border: 1px solid rgba(255, 106, 61, 0.25);
    border-radius: 12px;
    text-align: center;
}
.yz-pipe-icon {
    display: inline-block;
    font-size: 1.5rem;
    margin-bottom: 6px;
}
.yz-pipe-step h5 {
    color: #fff;
    margin: 0 0 4px;
    font-size: .82rem;
    font-weight: 800;
}
.yz-pipe-step small {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: .65rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.3;
}
.yz-pipe-arrow {
    align-self: center;
    font-size: 1.2rem;
    color: var(--primary, #ff6a3d);
    flex-shrink: 0;
}

/* Ops grid */
.yz-ops-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.yz-ops-card {
    padding: 22px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    transition: transform .3s, border-color .3s;
}
.yz-ops-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 106, 61, 0.35);
}
.yz-ops-icon {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(255, 106, 61, 0.18), rgba(255, 138, 91, 0.06));
    border-radius: 12px;
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.yz-ops-card h4 {
    color: #fff;
    font-size: 1rem;
    margin: 0 0 8px;
    font-weight: 800;
}
.yz-ops-card p {
    color: rgba(255,255,255,0.7);
    font-size: .85rem;
    line-height: 1.55;
    margin: 0 0 12px;
}
.yz-ops-card p strong { color: #fff; }
.yz-ops-card dl {
    margin: 0;
    padding: 12px 14px;
    background: rgba(0,0,0,0.25);
    border-radius: 10px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: .72rem;
}
.yz-ops-card dt { color: rgba(255,255,255,0.55); }
.yz-ops-card dd { margin: 0; color: var(--primary, #ff6a3d); font-weight: 700; text-align: right; }

/* ============ FACTORY ============ */
.yz-factory { padding: 80px 0; position: relative; }
.yz-factory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 36px 0 30px;
}
.yz-fac-card {
    --accent: var(--primary, #ff6a3d);
    position: relative;
    padding: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
}
.yz-fac-card::after {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 90px;
    height: 90px;
    background: radial-gradient(circle at top right, var(--accent), transparent 70%);
    opacity: .12;
    pointer-events: none;
}
.yz-fac-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px -22px rgba(0,0,0,0.6), 0 0 0 1px var(--accent);
}
.yz-fac-icon {
    display: inline-grid;
    place-items: center;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--accent);
    border-radius: 14px;
    font-size: 1.5rem;
    margin-bottom: 14px;
}
.yz-fac-card h3 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0 0 8px;
    font-weight: 800;
}
.yz-fac-card p {
    color: rgba(255,255,255,0.72);
    font-size: .88rem;
    line-height: 1.6;
    margin: 0 0 12px;
}
.yz-fac-card p strong { color: #fff; }
.yz-fac-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 6px;
}
.yz-fac-card ul li {
    position: relative;
    padding-left: 20px;
    font-size: .8rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}
.yz-fac-card ul li::before {
    content: "▸";
    position: absolute;
    left: 4px; top: 0;
    color: var(--accent);
    font-weight: 800;
}

.yz-fac-banner {
    margin-top: 32px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(255, 106, 61, 0.1), rgba(79, 140, 255, 0.06));
    border: 1px solid rgba(255, 106, 61, 0.22);
    border-radius: 16px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    text-align: center;
}
.yz-fb-item strong {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.yz-fb-item span {
    display: block;
    margin-top: 6px;
    font-size: .72rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.4;
}

/* ============ PROCESS ============ */
.yz-process { padding: 80px 0; position: relative; }
.yz-process-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 36px;
}
.yz-pf-step {
    position: relative;
    padding: 22px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    transition: all .3s ease;
}
.yz-pf-step:hover {
    background: rgba(255, 106, 61, 0.05);
    border-color: rgba(255, 106, 61, 0.35);
    transform: translateY(-3px);
}
.yz-pf-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.yz-pf-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.4rem;
    font-weight: 800;
    color: rgba(255, 106, 61, 0.55);
    letter-spacing: -.04em;
}
.yz-pf-icon { font-size: 1.6rem; }
.yz-pf-step h4 {
    color: #fff;
    font-size: .98rem;
    margin: 0 0 8px;
    font-weight: 800;
}
.yz-pf-step p {
    color: rgba(255,255,255,0.7);
    font-size: .82rem;
    line-height: 1.55;
    margin: 0 0 10px;
}
.yz-pf-step p strong { color: #fff; }
.yz-pf-time {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255, 106, 61, 0.12);
    border: 1px solid rgba(255, 106, 61, 0.3);
    border-radius: 999px;
    font-family: 'JetBrains Mono', monospace;
    font-size: .68rem;
    color: #ffb795;
    font-weight: 700;
}

/* ============ SUPPORT ============ */
.yz-support { padding: 80px 0; position: relative; }
.yz-support-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: start;
}
.yz-support-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
    display: grid;
    gap: 8px;
}
.yz-support-list li {
    position: relative;
    padding: 10px 14px 10px 36px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    font-size: .88rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.5;
}
.yz-support-list li::before {
    content: "✓";
    position: absolute;
    left: 12px; top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary, #ff6a3d), #ff8a5b);
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
    display: grid;
    place-items: center;
}
.yz-support-list li strong { color: #fff; }
.yz-sp-box {
    display: grid;
    gap: 12px;
}
.yz-sp-pkg {
    position: relative;
    padding: 22px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    transition: all .3s;
}
.yz-sp-pkg:hover {
    border-color: rgba(255, 106, 61, 0.35);
    background: rgba(255, 106, 61, 0.04);
}
.yz-sp-pkg.active {
    border-color: var(--primary, #ff6a3d);
    background: linear-gradient(135deg, rgba(255, 106, 61, 0.1), rgba(255, 138, 91, 0.03));
    box-shadow: 0 12px 30px -16px rgba(255, 106, 61, 0.5);
}
.yz-sp-tag {
    position: absolute;
    top: -10px;
    right: 18px;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--primary, #ff6a3d), #ff8a5b);
    color: #fff;
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.yz-sp-pkg h4 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0 0 4px;
}
.yz-sp-pkg > p {
    color: rgba(255,255,255,0.65);
    font-size: .82rem;
    margin: 0 0 12px;
}
.yz-sp-pkg ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 6px;
}
.yz-sp-pkg ul li {
    position: relative;
    padding-left: 20px;
    font-size: .82rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.5;
}
.yz-sp-pkg ul li::before {
    content: "→";
    position: absolute;
    left: 4px;
    color: var(--primary, #ff6a3d);
    font-weight: 800;
}

/* ============ CTA ============ */
.yz-cta { padding: 80px 0 100px; position: relative; }
.yz-cta-inner { text-align: center; max-width: 760px; margin: 0 auto; }
.yz-cta-inner p { margin: 12px auto 24px; }
.yz-cta-inner p strong { color: #fff; }
.yz-cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1180px) {
    .yz-plat-grid,
    .yz-stack-split { grid-template-columns: 1fr; }
    .yz-cloud-providers { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .yz-factory-grid,
    .yz-ops-grid { grid-template-columns: repeat(2, 1fr); }
    .yz-process-flow { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
    .yz-hero-grid,
    .yz-mobile-grid,
    .yz-support-grid { grid-template-columns: 1fr; gap: 36px; }
    .yz-hero-terminal { transform: none; max-width: 600px; margin: 0 auto; }
    .yz-phone { max-width: 280px; }
    .yz-cloud-providers { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
    .yz-hero { padding: 100px 0 60px; }
    .yz-platforms,
    .yz-custom,
    .yz-mobile,
    .yz-cloud,
    .yz-factory,
    .yz-process,
    .yz-support,
    .yz-cta { padding: 60px 0; }
    .yz-hero-stats { grid-template-columns: repeat(2, 1fr); }
    .yz-mobile-approach { grid-template-columns: 1fr; }
    .yz-factory-grid,
    .yz-ops-grid { grid-template-columns: 1fr; }
    .yz-process-flow { grid-template-columns: 1fr; }
    .yz-fac-banner { grid-template-columns: repeat(2, 1fr); }
    .yz-fb-item:last-child { grid-column: 1 / -1; }
    .yz-pipe-track { gap: 4px; }
    .yz-pipe-arrow { font-size: .9rem; }
    .yz-plat-card,
    .yz-stack-col { padding: 22px; }
    .yzst-row { flex-direction: column; align-items: flex-start; }
    .yzst-lbl { flex: none; margin-bottom: 4px; }
    .yz-matrix { display: none; }
}
@media (max-width: 420px) {
    .yz-hero-text h1 { font-size: 1.8rem; }
    .yz-hero-stats { grid-template-columns: 1fr 1fr; }
    .yz-hero-stats strong { font-size: 1.3rem; }
    .yz-fac-banner { grid-template-columns: 1fr; }
    .yz-fb-item:last-child { grid-column: auto; }
    .yzt-body { font-size: .72rem; padding: 14px; min-height: 220px; }
}
