/* =========================================
   YALDA CONSULTING — HERO
========================================= */

.yalda-hero {
    position: relative;
    min-height: 92vh;
    padding: 145px 0 95px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #050505;
    color: #fff;
}

.yalda-container {
    position: relative;
    z-index: 5;
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
}

/* Background */

.yalda-hero-grid {
    position: absolute;
    inset: 0;
    opacity: .3;
    pointer-events: none;

    background-image:
        linear-gradient(to right, rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,.03) 1px, transparent 1px);

    background-size: 32px 32px;
}

.yalda-hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
}

.yalda-hero-glow-one {
    width: 800px;
    height: 500px;
    left: 50%;
    top: 15%;
    transform: translateX(-50%);
    background: rgba(37,99,235,.12);
}

.yalda-hero-glow-two {
    width: 300px;
    height: 300px;
    right: 0;
    top: 30%;
    background: rgba(79,70,229,.10);
}

/* Eyebrow */

.yalda-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.yalda-eyebrow-pill {
    padding: 7px 12px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    background: rgba(255,255,255,.05);
    color: #60a5fa;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.yalda-eyebrow-line {
    width: 45px;
    height: 1px;
    background: rgba(255,255,255,.2);
}

.yalda-eyebrow-secondary {
    color: #71717a;
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

/* Main layout */

.yalda-hero-grid-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 42px;
    align-items: center;
}

/* Hero copy */

.yalda-hero-copy h1 {
    margin: 0;
    max-width: 700px;

    font-size: clamp(48px, 6vw, 78px);
    line-height: .96;
    letter-spacing: -.055em;
    font-weight: 800;

    color: #fff;
}

.yalda-hero-description {
    max-width: 620px;
    margin: 28px 0 0;

    color: #a1a1aa;
    font-size: 17px;
    line-height: 1.7;
}

/* Buttons */

.yalda-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 31px;
}

.yalda-btn {
    min-height: 52px;
    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;

    transition: .25s ease;
}

.yalda-btn-primary {
    background: #2563eb;
    color: #fff;
    box-shadow: 0 0 30px rgba(37,99,235,.3);
}

.yalda-btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.yalda-btn-arrow {
    font-size: 17px;
    transition: transform .25s ease;
}

.yalda-btn-primary:hover .yalda-btn-arrow {
    transform: translateX(4px);
}

.yalda-btn-secondary {
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    background: rgba(255,255,255,.02);
}

.yalda-btn-secondary:hover {
    background: rgba(255,255,255,.06);
}

/* Disciplines */

.yalda-hero-credibility {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px 16px;

    margin-top: 27px;
    padding-top: 18px;

    border-top: 1px solid rgba(255,255,255,.09);

    color: #71717a;
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.yalda-credibility-title {
    color: #a1a1aa;
    font-weight: 700;
}

.yalda-discipline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.yalda-discipline i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #3b82f6;
}

/* Console */

.yalda-console-wrapper {
    position: relative;
}

.yalda-console {
    position: relative;
    overflow: hidden;

    padding: 18px;

    border: 1px solid rgba(255,255,255,.11);
    border-radius: 22px;

    background: rgba(10,10,12,.82);

    box-shadow:
        0 30px 80px rgba(0,0,0,.55),
        inset 0 1px 0 rgba(255,255,255,.04);

    backdrop-filter: blur(16px);
}

.yalda-console-glow {
    position: absolute;
    right: -80px;
    top: -80px;

    width: 220px;
    height: 220px;

    border-radius: 50%;
    background: rgba(37,99,235,.13);
    filter: blur(50px);
}

/* Console header */

.yalda-console-header {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    padding-bottom: 14px;
    margin-bottom: 15px;

    border-bottom: 1px solid rgba(255,255,255,.08);
}

.yalda-console-window {
    display: flex;
    align-items: center;
    gap: 6px;
}

.console-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.console-dot.red {
    background: #ef4444;
}

.console-dot.yellow {
    background: #eab308;
}

.console-dot.green {
    background: #22c55e;
}

.yalda-console-name {
    margin-left: 7px;
    color: #71717a;
    font: 9px monospace;
}

/* Tabs */

.yalda-console-tabs {
    display: flex;
    gap: 2px;
    padding: 3px;

    border: 1px solid rgba(255,255,255,.07);
    border-radius: 7px;
    background: rgba(255,255,255,.03);
}

.yalda-console-tab {
    border: 0;
    padding: 6px 9px;

    border-radius: 5px;

    background: transparent;
    color: #71717a;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;

    cursor: pointer;
}

.yalda-console-tab.active {
    background: #2563eb;
    color: #fff;
}

.yalda-console-content.hidden {
    display: none;
}

/* Stats */

.yalda-stat-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 9px;
}

.yalda-stat,
.metric-card {
    padding: 13px;

    border: 1px solid rgba(255,255,255,.06);
    border-radius: 14px;

    background: rgba(255,255,255,.035);
}

.yalda-stat > span,
.metric-card > span {
    display: block;
    color: #9ca3af;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.yalda-stat strong {
    display: flex;
    align-items: center;
    gap: 5px;

    margin-top: 5px;

    color: #fff;
    font-size: 18px;
}

.yalda-stat strong b {
    color: #60a5fa;
    font-size: 11px;
}

.yalda-stat small,
.metric-card small {
    display: block;
    margin-top: 2px;
    color: #71717a;
    font-size: 8px;
}

/* Framework */

.yalda-framework {
    margin-top: 9px;
    padding: 14px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;

    background: #080808;
}

.yalda-framework-title {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 11px;

    color: #fff;
    font-size: 10px;
    font-weight: 600;
}

.yalda-globe {
    color: #60a5fa;
    margin-right: 5px;
}

.production-badge {
    padding: 4px 7px;

    border: 1px solid rgba(37,99,235,.3);
    border-radius: 4px;

    background: rgba(30,58,138,.3);
    color: #60a5fa;

    font: 7px monospace;
}

/* Wireframe */

.wireframe-nav {
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 11px;

    border: 1px solid rgba(255,255,255,.05);
    border-radius: 10px;

    background: rgba(255,255,255,.035);
}

.wireframe-brand {
    display: flex;
    align-items: center;
    gap: 7px;
}

.wireframe-brand span {
    width: 15px;
    height: 15px;
    border-radius: 4px;
    background: #2563eb;
}

.wireframe-brand i {
    width: 70px;
    height: 6px;
    border-radius: 10px;
    background: #404040;
}

.wireframe-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.wireframe-links i {
    width: 25px;
    height: 6px;
    border-radius: 10px;
    background: #262626;
}

.wireframe-links b {
    padding: 6px 10px;
    border-radius: 4px;
    background: #2563eb;
    color: #fff;
    font-size: 7px;
    text-transform: uppercase;
}

.wireframe-content {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 9px;
    margin-top: 9px;
}

.wireframe-main,
.lead-velocity {
    min-height: 120px;
    padding: 12px;

    border: 1px solid rgba(255,255,255,.05);
    border-radius: 10px;

    background: rgba(255,255,255,.035);
}

.wire-heading {
    display: block;
    width: 75%;
    height: 11px;
    border-radius: 4px;
    background: #e5e5e5;
}

.wire-line {
    display: block;
    width: 100%;
    height: 6px;
    margin-top: 9px;
    border-radius: 5px;
    background: #404040;
}

.wire-line.short {
    width: 82%;
    margin-top: 6px;
}

.funnel-button {
    display: inline-flex;

    margin-top: 14px;
    padding: 7px 9px;

    border-radius: 4px;

    background: #2563eb;
    color: #fff;

    font-size: 7px;
    text-transform: uppercase;
}

.lead-velocity {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.lead-velocity > span {
    color: #9ca3af;
    font-size: 8px;
    text-transform: uppercase;
}

.bars {
    height: 65px;

    display: flex;
    align-items: flex-end;
    gap: 6px;
}

.bars i {
    flex: 1;
    display: block;
    border-radius: 4px 4px 0 0;
    background: #2563eb;
}

.bars i:nth-child(1) {
    height: 30%;
    opacity: .35;
}

.bars i:nth-child(2) {
    height: 55%;
    opacity: .5;
}

.bars i:nth-child(3) {
    height: 75%;
    opacity: .75;
}

.bars i:nth-child(4) {
    height: 100%;
    box-shadow: 0 0 12px rgba(59,130,246,.5);
}

/* AI Pipeline */

.ai-pipeline {
    padding: 15px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;

    background: #080808;
}

.pipeline-header {
    display: flex;
    justify-content: space-between;
    gap: 10px;

    margin-bottom: 10px;

    color: #fff;
    font-size: 10px;
}

.pipeline-header > span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.pipeline-header b {
    color: #60a5fa;
    font: 8px monospace;
}

.pipeline-loader {
    width: 11px;
    height: 11px;

    display: inline-block;

    border: 2px solid rgba(59,130,246,.3);
    border-top-color: #3b82f6;
    border-radius: 50%;

    animation: yalda-spin 1s linear infinite;
}

@keyframes yalda-spin {
    to {
        transform: rotate(360deg);
    }
}

.pipeline-item {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 9px;
    margin-top: 7px;

    border: 1px solid rgba(255,255,255,.05);
    border-radius: 10px;

    background: rgba(255,255,255,.035);
}

.pipeline-item > strong {
    width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 6px;

    background: rgba(37,99,235,.15);
    color: #60a5fa;
    font-size: 8px;
}

.pipeline-item div {
    flex: 1;
}

.pipeline-item div b {
    display: block;
    color: #fff;
    font-size: 9px;
}

.pipeline-item div small {
    display: block;
    margin-top: 2px;
    color: #71717a;
    font-size: 7px;
}

.pipeline-item > span {
    color: #60a5fa;
}

/* Metrics */

.metric-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.metric-card strong {
    display: block;
    margin-top: 5px;
    color: #fff;
    font-size: 18px;
}

.metric-card small {
    color: #60a5fa;
}

/* Infrastructure */

.infrastructure {
    margin-top: 9px;
    padding: 14px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;

    background: #080808;
}

.infrastructure-header {
    display: flex;
    justify-content: space-between;
    gap: 10px;

    color: #fff;
    font-size: 9px;
}

.infrastructure-header span b {
    color: #60a5fa;
}

.infrastructure-header strong {
    color: #60a5fa;
    font: 8px monospace;
}

.health-bar {
    height: 7px;
    margin-top: 11px;

    overflow: hidden;

    border-radius: 999px;
    background: #262626;
}

.health-bar span {
    display: block;
    width: 96%;
    height: 100%;

    border-radius: inherit;

    background: linear-gradient(90deg,#3b82f6,#818cf8);
}

.health-meta {
    display: flex;
    justify-content: space-between;

    margin-top: 6px;

    color: #71717a;
    font-size: 7px;
}

/* Console footer */

.yalda-console-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 13px;
    padding-top: 12px;

    border-top: 1px solid rgba(255,255,255,.08);

    font-size: 9px;
}

.yalda-console-footer span {
    color: #9ca3af;
}

.yalda-console-footer span b {
    color: #60a5fa;
}

.yalda-console-footer a {
    color: #60a5fa;
    font-weight: 800;
    text-transform: uppercase;
}

/* Responsive */

@media (max-width: 1024px) {

    .yalda-hero-grid-layout {
        grid-template-columns: 1fr;
    }

    .yalda-hero-copy {
        text-align: center;
    }

    .yalda-hero-copy h1,
    .yalda-hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .yalda-hero-actions,
    .yalda-hero-eyebrow,
    .yalda-hero-credibility {
        justify-content: center;
    }

    .yalda-console-wrapper {
        max-width: 760px;
        width: 100%;
        margin: auto;
    }
}

@media (max-width: 700px) {

    .yalda-hero {
        padding: 125px 0 65px;
    }

    .yalda-container {
        width: calc(100% - 28px);
    }

    .yalda-hero-eyebrow {
        flex-wrap: wrap;
    }

    .yalda-eyebrow-line,
    .yalda-eyebrow-secondary {
        display: none;
    }

    .yalda-hero-copy h1 {
        font-size: clamp(44px,12vw,64px);
    }

    .yalda-hero-description {
        font-size: 15px;
    }

    .yalda-hero-actions {
        flex-direction: column;
    }

    .yalda-btn {
        width: 100%;
    }

    .yalda-console {
        padding: 12px;
    }

    .yalda-console-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .yalda-console-tabs {
        width: 100%;
    }

    .yalda-console-tab {
        flex: 1;
    }

    .wireframe-content {
        grid-template-columns: 1fr;
    }

    .pipeline-item div small {
        display: none;
    }

    .yalda-console-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}
/* =========================================
   HERO V1.1 — POLISH
========================================= */

/* Give the hero slightly more breathing room */
.yalda-hero {
    min-height: calc(100vh - 88px);
    padding: 105px 0 75px;
}

/* Keep the content comfortably inside the viewport */
.yalda-container {
    width: min(1240px, calc(100% - 56px));
}

/* Slightly tighten the headline */
.yalda-hero-copy h1 {
    font-size: clamp(46px, 5.35vw, 72px);
    line-height: .94;
    letter-spacing: -.058em;
}

/* Improve supporting text */
.yalda-hero-description {
    max-width: 600px;
    margin-top: 25px;
    font-size: 16px;
    line-height: 1.65;
}

/* Slightly reduce the console size */
.yalda-console {
    transform: scale(.97);
    transform-origin: center right;
}

/* Bring console away from edge */
.yalda-console-wrapper {
    padding-right: 8px;
}

/* Slightly shorter navigation */
.site-header,
.yalda-header {
    min-height: 88px;
}

/* Better CTA proportions */
.yalda-btn {
    min-height: 50px;
    padding-left: 23px;
    padding-right: 23px;
}

/* More balanced credibility row */
.yalda-hero-credibility {
    margin-top: 24px;
}

/* Desktop balance */
@media (min-width: 1025px) {
    .yalda-hero-grid-layout {
        grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
        gap: 34px;
    }
}

/* Mobile override */
@media (max-width: 1024px) {
    .yalda-hero {
        min-height: auto;
        padding: 110px 0 65px;
    }

    .yalda-console {
        transform: none;
    }

    .yalda-console-wrapper {
        padding-right: 0;
    }
}
/* =========================================
   YALDA CONSULTING — CAPABILITIES
========================================= */

.yalda-capabilities {
    position: relative;
    overflow: hidden;

    padding: 120px 0 55px;

    background: #050505;
    color: #fff;
}

/* Background grid */

.yalda-capabilities-grid {
    position: absolute;
    inset: 0;

    pointer-events: none;

    opacity: .22;

    background-image:
        linear-gradient(
            to right,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            to bottom,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );

    background-size: 32px 32px;

    mask-image: linear-gradient(
        to bottom,
        transparent,
        black 15%,
        black 85%,
        transparent
    );
}


/* Header */

.yalda-capabilities-header {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: 1.1fr .9fr;

    column-gap: 80px;

    align-items: end;

    margin-bottom: 58px;
}


/* Eyebrow */

.yalda-section-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 22px;
}

.yalda-section-eyebrow .yalda-eyebrow-pill {
    color: #60a5fa;
}

.yalda-section-eyebrow .yalda-eyebrow-line {
    width: 40px;
}


/* Heading */

.yalda-capabilities-heading h2 {
    max-width: 760px;

    margin: 0;

    font-size: clamp(40px, 4.4vw, 62px);

    line-height: .98;

    letter-spacing: -.055em;

    font-weight: 800;
}

.yalda-capabilities-heading h2 span {
    color: #71717a;
}

.yalda-capabilities-heading p {
    max-width: 470px;

    margin: 0 0 5px auto;

    color: #8b8b94;

    font-size: 15px;

    line-height: 1.75;
}


/* Cards */

.yalda-capabilities-list {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 10px;
}


/* Individual card */

.yalda-capability-card {
    position: relative;

    min-height: 390px;

    padding: 24px;

    overflow: hidden;

    display: flex;
    flex-direction: column;

    border: 1px solid rgba(255,255,255,.08);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.015)
        );

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease;
}

.yalda-capability-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -90px;
    top: -90px;

    border-radius: 50%;

    background: rgba(37,99,235,.10);

    filter: blur(45px);

    pointer-events: none;

    transition: .3s ease;
}

.yalda-capability-card:hover {
    transform: translateY(-5px);

    border-color: rgba(59,130,246,.32);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.06),
            rgba(255,255,255,.02)
        );
}

.yalda-capability-card:hover::before {
    background: rgba(37,99,235,.18);
}


/* Top row */

.yalda-capability-top {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.yalda-capability-number {
    color: #52525b;

    font: 9px monospace;

    letter-spacing: .08em;
}

.yalda-capability-arrow {
    width: 28px;
    height: 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 50%;

    color: #71717a;

    font-size: 13px;

    transition: .25s ease;
}

.yalda-capability-card:hover .yalda-capability-arrow {
    border-color: rgba(59,130,246,.4);

    color: #60a5fa;

    transform: translate(2px,-2px);
}


/* Icon */

.yalda-capability-icon {
    position: relative;
    z-index: 2;

    width: 54px;
    height: 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-top: 58px;

    border: 1px solid rgba(59,130,246,.2);

    border-radius: 14px;

    background: rgba(37,99,235,.08);

    color: #60a5fa;

    font-size: 22px;

    box-shadow:
        0 0 30px rgba(37,99,235,.08);
}


/* Card heading */

.yalda-capability-card h3 {
    position: relative;
    z-index: 2;

    margin: 24px 0 0;

    color: #fff;

    font-size: 21px;

    line-height: 1.15;

    letter-spacing: -.025em;

    font-weight: 700;
}


/* Card description */

.yalda-capability-card p {
    position: relative;
    z-index: 2;

    margin: 13px 0 0;

    color: #777780;

    font-size: 12px;

    line-height: 1.7;
}


/* Tags */

.yalda-capability-tags {
    position: relative;
    z-index: 2;

    display: flex;

    flex-wrap: wrap;

    gap: 6px;

    margin-top: auto;

    padding-top: 25px;
}

.yalda-capability-tags span {
    padding: 6px 8px;

    border: 1px solid rgba(255,255,255,.07);

    border-radius: 5px;

    background: rgba(255,255,255,.025);

    color: #71717a;

    font-size: 7px;

    font-weight: 700;

    letter-spacing: .07em;

    text-transform: uppercase;
}


/* Bottom statement */

.yalda-capabilities-footer {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 18px;

    padding-top: 19px;

    border-top: 1px solid rgba(255,255,255,.07);

    color: #52525b;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .1em;

    text-transform: uppercase;
}

.yalda-capabilities-footer span {
    display: flex;

    align-items: center;

    gap: 7px;
}

.yalda-capabilities-footer b {
    color: #3b82f6;

    font-size: 11px;
}


/* =========================================
   CAPABILITIES — TABLET
========================================= */

@media (max-width: 1100px) {

    .yalda-capabilities-header {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .yalda-capabilities-heading p {
        margin-left: 0;

        margin-right: 0;

        max-width: 600px;
    }

    .yalda-capabilities-list {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================
   CAPABILITIES — MOBILE
========================================= */

@media (max-width: 650px) {

    .yalda-capabilities {
        padding: 85px 0 40px;
    }

    .yalda-capabilities-header {
        margin-bottom: 35px;
    }

    .yalda-capabilities-heading h2 {
        font-size: clamp(40px, 11vw, 55px);
    }

    .yalda-capabilities-heading p {
        font-size: 14px;

        line-height: 1.7;
    }

    .yalda-capabilities-list {
        grid-template-columns: 1fr;

        gap: 9px;
    }

    .yalda-capability-card {
        min-height: 330px;

        padding: 21px;
    }

    .yalda-capability-icon {
        margin-top: 42px;
    }

    .yalda-capabilities-footer {
        align-items: flex-start;

        flex-direction: column;

        gap: 10px;
    }

}
/* =========================================
   CAPABILITIES HEADER REFINEMENT
========================================= */

.yalda-capabilities-header {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: end;
}

.yalda-capabilities-heading {
    display: flex;
    flex-direction: column;
}

.yalda-capabilities-heading h2 {
    margin: 0;
}

.yalda-capabilities-intro {
    align-self: end;
    padding-bottom: 5px;
}

.yalda-capabilities-intro p {
    max-width: 480px;
    margin: 0;
    color: #8b8b94;
    font-size: 15px;
    line-height: 1.75;
}


/* Tablet */

@media (max-width: 1100px) {

    .yalda-capabilities-header {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .yalda-capabilities-intro {
        padding-bottom: 0;
    }

}


/* Mobile */

@media (max-width: 650px) {

    .yalda-capabilities-header {
        gap: 20px;
    }

}
/* =========================================
   YALDA CONSULTING — SELECTED WORK
========================================= */

.yalda-work {
    position: relative;
    overflow: hidden;

    padding: 130px 0 60px;

    background: #050505;
    color: #fff;
}

.yalda-work-grid {
    position: absolute;
    inset: 0;

    pointer-events: none;

    opacity: .18;

    background-image:
        linear-gradient(
            to right,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            to bottom,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );

    background-size: 32px 32px;

    mask-image: linear-gradient(
        to bottom,
        transparent,
        black 12%,
        black 88%,
        transparent
    );
}


/* =========================================
   HEADER
========================================= */

.yalda-work-header {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: 1.1fr .9fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 60px;
}

.yalda-work-heading {
    display: flex;

    flex-direction: column;
}

.yalda-work-heading h2 {
    max-width: 760px;

    margin: 0;

    font-size: clamp(42px, 4.6vw, 64px);

    line-height: .98;

    letter-spacing: -.055em;

    font-weight: 800;
}

.yalda-work-heading h2 span {
    color: #71717a;
}

.yalda-work-intro {
    align-self: end;

    padding-bottom: 5px;
}

.yalda-work-intro p {
    max-width: 470px;

    margin: 0;

    color: #8b8b94;

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================
   WORK GRID
========================================= */

.yalda-work-list {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;
}


/* =========================================
   WORK CARD
========================================= */

.yalda-work-card {
    position: relative;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.08);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.012)
        );

    transition:
        transform .3s ease,
        border-color .3s ease;
}

.yalda-work-card:hover {
    transform: translateY(-4px);

    border-color: rgba(59,130,246,.28);
}


/* =========================================
   VISUAL
========================================= */

.yalda-work-visual {
    position: relative;

    min-height: 330px;

    padding: 28px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(37,99,235,.12),
            transparent 42%
        ),
        #08090c;
}


/* Browser */

.yalda-work-browser {
    position: relative;

    width: 100%;
    height: 100%;

    min-height: 270px;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.1);

    border-radius: 12px;

    background: #0b0c0f;

    box-shadow:
        0 30px 80px rgba(0,0,0,.35);
}


/* Browser top */

.yalda-browser-top {
    height: 40px;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 0 14px;

    border-bottom: 1px solid rgba(255,255,255,.07);

    color: #52525b;

    font: 8px monospace;
}

.yalda-browser-dots {
    display: flex;

    gap: 5px;
}

.yalda-browser-dots i {
    width: 6px;
    height: 6px;

    display: block;

    border-radius: 50%;

    background: #27272a;
}


/* =========================================
   PROJECT MOCKUPS
========================================= */

.yalda-project-mockup {
    position: relative;

    min-height: 230px;

    height: calc(100% - 40px);

    overflow: hidden;
}


/* Fashion */

.fashion-mockup {
    padding: 35px;

    background:
        linear-gradient(
            135deg,
            #111,
            #191919
        );
}

.mockup-fashion-title {
    position: relative;
    z-index: 2;

    margin-top: 5px;

    color: #f4f4f5;

    font-size: 42px;

    font-weight: 800;

    letter-spacing: -.05em;
}

.mockup-fashion-line {
    width: 90px;
    height: 2px;

    margin-top: 18px;

    background: #3b82f6;
}

.mockup-fashion-block {
    position: absolute;

    width: 48%;
    height: 100%;

    right: 0;
    top: 0;

    background:
        linear-gradient(
            145deg,
            #242424,
            #101010
        );

    clip-path: polygon(
        22% 0,
        100% 0,
        100% 100%,
        0 100%
    );
}


/* Skincare */

.skincare-mockup {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 55px;

    background:
        linear-gradient(
            135deg,
            #111,
            #17191c
        );
}

.mockup-product-circle {
    width: 125px;
    height: 125px;

    border-radius: 50%;

    border: 1px solid rgba(96,165,250,.35);

    background:
        radial-gradient(
            circle,
            rgba(59,130,246,.18),
            rgba(59,130,246,.02) 65%
        );

    box-shadow:
        0 0 70px rgba(37,99,235,.12);
}

.mockup-product-lines {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.mockup-product-lines i {
    display: block;

    width: 100px;
    height: 7px;

    border-radius: 5px;

    background: #292a2e;
}

.mockup-product-lines i:first-child {
    width: 135px;

    background: #e4e4e7;
}


/* Dietician */

.dietician-mockup {
    padding: 40px;

    background:
        linear-gradient(
            135deg,
            #0c1010,
            #121719
        );
}

.mockup-profile {
    width: 85px;
    height: 85px;

    border-radius: 50%;

    border: 1px solid rgba(96,165,250,.25);

    background:
        radial-gradient(
            circle at 50% 40%,
            #404040,
            #171717 65%
        );
}

.mockup-diet-lines {
    position: absolute;

    top: 55px;
    left: 155px;

    display: flex;

    flex-direction: column;

    gap: 10px;
}

.mockup-diet-lines i {
    width: 160px;
    height: 7px;

    display: block;

    border-radius: 5px;

    background: #282b2d;
}

.mockup-diet-lines i:first-child {
    width: 110px;

    background: #e4e4e7;
}

.mockup-diet-button {
    position: absolute;

    left: 155px;
    bottom: 55px;

    padding: 10px 18px;

    border-radius: 4px;

    background: #2563eb;

    color: #fff;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .08em;
}


/* Astrology */

.astrology-mockup {
    display: flex;

    align-items: center;

    justify-content: center;

    background:
        radial-gradient(
            circle,
            rgba(37,99,235,.12),
            transparent 50%
        ),
        #080a10;
}

.mockup-astrology-orbit {
    position: absolute;

    width: 210px;
    height: 210px;

    border: 1px solid rgba(96,165,250,.2);

    border-radius: 50%;
}

.mockup-astrology-orbit::before,
.mockup-astrology-orbit::after {
    content: "";

    position: absolute;

    inset: 28px;

    border: 1px solid rgba(96,165,250,.12);

    border-radius: 50%;
}

.mockup-astrology-orbit::after {
    inset: 62px;
}

.mockup-astrology-orbit span {
    position: absolute;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #60a5fa;

    box-shadow:
        0 0 15px rgba(96,165,250,.5);
}

.mockup-astrology-orbit span:nth-child(1) {
    top: 18px;
    left: 98px;
}

.mockup-astrology-orbit span:nth-child(2) {
    right: 20px;
    bottom: 55px;
}

.mockup-astrology-orbit span:nth-child(3) {
    left: 25px;
    bottom: 35px;
}

.mockup-astrology-title {
    position: relative;
    z-index: 2;

    color: #fff;

    font-size: 23px;

    font-weight: 700;

    letter-spacing: .18em;
}


/* =========================================
   WORK INFORMATION
========================================= */

.yalda-work-info {
    display: flex;

    justify-content: space-between;

    gap: 30px;

    padding: 25px 27px 28px;
}

.yalda-work-number {
    display: block;

    margin-bottom: 10px;

    color: #52525b;

    font: 8px monospace;

    letter-spacing: .1em;
}

.yalda-work-info h3 {
    margin: 0;

    color: #fff;

    font-size: 22px;

    line-height: 1.15;

    letter-spacing: -.025em;
}

.yalda-work-info p {
    max-width: 420px;

    margin: 10px 0 0;

    color: #71717a;

    font-size: 12px;

    line-height: 1.7;
}


/* Services */

.yalda-work-services {
    display: flex;

    align-items: flex-start;

    justify-content: flex-end;

    flex-wrap: wrap;

    gap: 6px;

    min-width: 130px;
}

.yalda-work-services span {
    padding: 6px 8px;

    border: 1px solid rgba(255,255,255,.07);

    border-radius: 5px;

    background: rgba(255,255,255,.025);

    color: #71717a;

    font-size: 7px;

    font-weight: 700;

    letter-spacing: .07em;

    text-transform: uppercase;
}


/* =========================================
   FOOTER
========================================= */

.yalda-work-footer {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 18px;

    padding-top: 19px;

    border-top: 1px solid rgba(255,255,255,.07);

    color: #52525b;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .1em;

    text-transform: uppercase;
}

.yalda-work-footer span {
    display: flex;

    align-items: center;

    gap: 7px;
}

.yalda-work-footer b {
    color: #3b82f6;

    font-size: 11px;
}

.yalda-work-footer a {
    color: #60a5fa;

    text-decoration: none;

    transition: color .2s ease;
}

.yalda-work-footer a:hover {
    color: #93c5fd;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .yalda-work-header {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .yalda-work-intro {
        padding-bottom: 0;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .yalda-work {
        padding: 90px 0 45px;
    }

    .yalda-work-heading h2 {
        font-size: clamp(40px, 11vw, 55px);
    }

    .yalda-work-list {
        grid-template-columns: 1fr;
    }

    .yalda-work-visual {
        min-height: 270px;

        padding: 18px;
    }

    .yalda-work-browser {
        min-height: 225px;
    }

    .yalda-work-info {
        flex-direction: column;

        gap: 20px;

        padding: 22px;
    }

    .yalda-work-services {
        justify-content: flex-start;
    }

    .yalda-work-footer {
        align-items: flex-start;

        flex-direction: column;

        gap: 12px;
    }

}