/*
|--------------------------------------------------------------------------
| Template Forge â€” Custom Web Development
|--------------------------------------------------------------------------
| Page-specific presentation for custom-web-development.php.
|--------------------------------------------------------------------------
*/

.custom-development-page {
    background: #ffffff;
}

.custom-development-page .custom-dev-main {
    overflow: clip;
}

/*
|--------------------------------------------------------------------------
| Hero
|--------------------------------------------------------------------------
*/

.custom-dev-hero {
    position: relative;
    overflow: hidden;
    padding-block: clamp(78px, 9vw, 138px);
    color: #ffffff;
    background:
        radial-gradient(
            circle at 86% 16%,
            rgba(255, 101, 52, 0.24) 0,
            rgba(255, 101, 52, 0) 31%
        ),
        radial-gradient(
            circle at 9% 88%,
            rgba(71, 108, 255, 0.16) 0,
            rgba(71, 108, 255, 0) 30%
        ),
        #0d0f13;
}

.custom-dev-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    opacity: 0.12;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.08) 1px,
            transparent 1px
        );
    background-size: 44px 44px;
    mask-image:
        linear-gradient(
            to bottom,
            #000 0,
            #000 46%,
            transparent 100%
        );
}

.custom-dev-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(320px, 0.65fr);
    gap: clamp(54px, 8vw, 118px);
    align-items: center;
}

.custom-dev-hero-copy {
    max-width: 850px;
}

.custom-dev-hero h1 {
    max-width: 960px;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(4.1rem, 7vw, 7.7rem);
    line-height: 0.9;
    letter-spacing: -0.075em;
}

.custom-dev-hero h1 span {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.56);
}

.custom-dev-hero-lead {
    max-width: 720px;
    margin: 32px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    line-height: 1.8;
}

.custom-dev-hero-note {
    max-width: 690px;
    margin: 22px 0 0;
    padding-left: 20px;
    border-left: 3px solid var(--orange);
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.93rem;
    line-height: 1.75;
}

.custom-dev-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.custom-dev-hero-panel {
    position: relative;
    padding: clamp(30px, 4vw, 46px);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 28px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.025)
        );
    box-shadow:
        0 28px 90px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(18px);
}

.custom-dev-hero-panel::before {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    content: "";
    background: var(--orange);
    box-shadow:
        0 0 0 7px rgba(255, 101, 52, 0.12);
}

.custom-dev-panel-label {
    margin-bottom: 24px;
    color: var(--orange);
    font-family: var(--font-mono);
    font-size: 0.71rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.custom-dev-hero-panel > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.04rem;
    line-height: 1.78;
}

.custom-dev-panel-rule {
    height: 1px;
    margin: 28px 0;
    background: rgba(255, 255, 255, 0.13);
}

.custom-dev-hero-panel .custom-dev-panel-small {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.79rem;
    line-height: 1.75;
}

/*
|--------------------------------------------------------------------------
| Shared section rhythm
|--------------------------------------------------------------------------
*/

.custom-dev-choice-section,
.custom-dev-process-section,
.custom-dev-case-section,
.custom-dev-ownership-section,
.custom-dev-cta-section {
    padding-block: clamp(88px, 9vw, 140px);
}

.custom-dev-choice-section,
.custom-dev-process-section,
.custom-dev-ownership-section {
    background: #ffffff;
}

.custom-dev-choice-section .section-heading h2 span,
.custom-dev-process-section .section-heading h2 span {
    display: block;
    color: #6b6e76;
}

/*
|--------------------------------------------------------------------------
| Template vs custom
|--------------------------------------------------------------------------
*/

.custom-dev-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.custom-dev-choice-card {
    position: relative;
    display: flex;
    min-height: 520px;
    flex-direction: column;
    padding: clamp(34px, 4vw, 52px);
    border: 1px solid #d9dce2;
    border-radius: 28px;
    background: #f7f8fa;
}

.custom-dev-choice-card-featured {
    border-color: #191b20;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 90% 12%,
            rgba(255, 101, 52, 0.22),
            transparent 34%
        ),
        #15171b;
    box-shadow:
        0 26px 80px rgba(16, 17, 20, 0.15);
}

.custom-dev-choice-label {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 42px;
    padding: 7px 11px;
    border: 1px solid currentColor;
    border-radius: var(--pill-radius);
    color: var(--orange-dark);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.custom-dev-choice-card-featured .custom-dev-choice-label {
    color: var(--orange);
}

.custom-dev-choice-card h3 {
    max-width: 560px;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 3.5vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.custom-dev-choice-card > p {
    max-width: 590px;
    margin: 24px 0 0;
    color: #656871;
    line-height: 1.75;
}

.custom-dev-choice-card-featured > p {
    color: rgba(255, 255, 255, 0.63);
}

.custom-dev-choice-card ul {
    display: grid;
    gap: 14px;
    margin: 34px 0 38px;
    padding: 0;
    list-style: none;
}

.custom-dev-choice-card li {
    position: relative;
    padding-left: 26px;
    color: #2d3036;
    font-size: 0.91rem;
    line-height: 1.55;
}

.custom-dev-choice-card li::before {
    position: absolute;
    top: 0.58em;
    left: 2px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    content: "";
    background: var(--orange);
}

.custom-dev-choice-card-featured li {
    color: rgba(255, 255, 255, 0.78);
}

.custom-dev-text-link {
    display: inline-flex;
    width: fit-content;
    margin-top: auto;
    color: var(--ink);
    font-weight: 800;
    transition:
        color 180ms ease,
        transform 180ms ease;
}

.custom-dev-text-link:hover {
    color: var(--orange-dark);
    transform: translateX(4px);
}

.custom-dev-choice-card-featured .custom-dev-text-link {
    color: #ffffff;
}

.custom-dev-choice-card-featured .custom-dev-text-link:hover {
    color: var(--orange);
}

/*
|--------------------------------------------------------------------------
| Services
|--------------------------------------------------------------------------
*/

.custom-dev-services-section {
    position: relative;
    overflow: hidden;
    padding-block: clamp(92px, 10vw, 150px);
    color: #ffffff;
    background: #101216;
}

.custom-dev-services-section::after {
    position: absolute;
    right: -180px;
    bottom: -260px;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    content: "";
    box-shadow:
        0 0 0 90px rgba(255, 255, 255, 0.018),
        0 0 0 180px rgba(255, 255, 255, 0.012);
}

.custom-dev-services-section .container {
    position: relative;
    z-index: 1;
}

.custom-dev-services-section .section-heading h2 {
    color: #ffffff;
}

.custom-dev-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.custom-dev-service-card {
    min-height: 330px;
    padding: clamp(28px, 3.5vw, 42px);
    border-right: 1px solid rgba(255, 255, 255, 0.11);
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    transition:
        background 180ms ease,
        transform 180ms ease;
}

.custom-dev-service-card:hover {
    background: rgba(255, 255, 255, 0.035);
}

.custom-dev-service-card > span {
    color: var(--orange);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.custom-dev-service-card h3 {
    max-width: 340px;
    margin: 78px 0 0;
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 2.3vw, 2.8rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.custom-dev-service-card p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.9rem;
    line-height: 1.72;
}

/*
|--------------------------------------------------------------------------
| Process
|--------------------------------------------------------------------------
*/

.custom-dev-process-list {
    display: grid;
    margin: 0;
    padding: 0;
    border-top: 1px solid #d8dbe1;
    list-style: none;
}

.custom-dev-process-list > li {
    display: grid;
    grid-template-columns:
        84px
        minmax(220px, 0.7fr)
        minmax(0, 1.3fr);
    gap: 28px;
    align-items: start;
    padding: 34px 0;
    border-bottom: 1px solid #d8dbe1;
}

.custom-dev-process-list > li > span {
    color: var(--orange-dark);
    font-family: var(--font-mono);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.09em;
}

.custom-dev-process-list h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2.6vw, 3rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.custom-dev-process-list p {
    max-width: 680px;
    margin: 0;
    color: #62656d;
    line-height: 1.75;
}

/*
|--------------------------------------------------------------------------
| Case study
|--------------------------------------------------------------------------
*/

.custom-dev-case-section {
    color: #ffffff;
    background:
        linear-gradient(
            125deg,
            rgba(71, 108, 255, 0.13),
            transparent 32%
        ),
        #17191e;
}

.custom-dev-case-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(320px, 0.65fr);
    gap: clamp(52px, 8vw, 120px);
    align-items: center;
}

.custom-dev-case-copy h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(3.3rem, 6vw, 6.8rem);
    line-height: 0.92;
    letter-spacing: -0.07em;
}

.custom-dev-case-copy > p {
    max-width: 720px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.98rem;
    line-height: 1.78;
}

.custom-dev-case-copy > p + p {
    color: rgba(255, 255, 255, 0.82);
}

.custom-dev-case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 32px;
}

.custom-dev-case-tags span {
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--pill-radius);
    color: rgba(255, 255, 255, 0.68);
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.035em;
}

.custom-dev-case-card {
    position: relative;
    padding: clamp(34px, 4.5vw, 52px);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.045);
}

.custom-dev-case-card::after {
    display: block;
    width: 54px;
    height: 4px;
    margin-top: 34px;
    content: "";
    background: var(--orange);
}

.custom-dev-case-card-label {
    display: block;
    margin-bottom: 28px;
    color: var(--orange);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.custom-dev-case-card blockquote {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.65rem, 2.7vw, 2.8rem);
    line-height: 1.18;
    letter-spacing: -0.04em;
}

/*
|--------------------------------------------------------------------------
| Ownership / licensing
|--------------------------------------------------------------------------
*/

.custom-dev-ownership-panel {
    display: grid;
    grid-template-columns:
        minmax(0, 0.78fr)
        minmax(0, 1.22fr);
    gap: clamp(42px, 8vw, 110px);
    padding: clamp(38px, 5.5vw, 70px);
    border: 1px solid #d9dce2;
    border-radius: 30px;
    background: #f5f6f8;
}

.custom-dev-ownership-panel h2 {
    max-width: 580px;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2.7rem, 4.5vw, 5rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.custom-dev-ownership-copy {
    display: grid;
    gap: 22px;
}

.custom-dev-ownership-copy p {
    margin: 0;
    color: #5f626a;
    line-height: 1.78;
}

/*
|--------------------------------------------------------------------------
| Final CTA
|--------------------------------------------------------------------------
*/

.custom-dev-cta-section {
    padding-top: 0;
    background: #ffffff;
}

.custom-dev-cta-panel {
    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        auto;
    gap: 40px;
    align-items: end;
    padding: clamp(42px, 6vw, 74px);
    border-radius: 30px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 84% 12%,
            rgba(255, 101, 52, 0.22),
            transparent 32%
        ),
        #0f1115;
}

.custom-dev-cta-panel h2 {
    max-width: 820px;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 5.7rem);
    line-height: 0.94;
    letter-spacing: -0.065em;
}

.custom-dev-cta-panel p {
    max-width: 720px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.75;
}

.custom-dev-cta-panel .button {
    white-space: nowrap;
}

/*
|--------------------------------------------------------------------------
| Focus
|--------------------------------------------------------------------------
*/

.custom-development-page .custom-dev-text-link:focus-visible {
    outline: 3px solid rgba(71, 108, 255, 0.46);
    outline-offset: 4px;
    border-radius: 3px;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/

@media (max-width: 1100px) {
    .custom-dev-hero-grid,
    .custom-dev-case-grid {
        grid-template-columns: 1fr;
    }

    .custom-dev-hero-panel,
    .custom-dev-case-card {
        max-width: 760px;
    }

    .custom-dev-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .custom-dev-process-list > li {
        grid-template-columns:
            64px
            minmax(180px, 0.7fr)
            minmax(0, 1.3fr);
    }

    .custom-dev-ownership-panel {
        grid-template-columns: 1fr;
    }

    .custom-dev-cta-panel {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .custom-dev-cta-panel .button {
        width: fit-content;
    }
}

@media (max-width: 780px) {
    .custom-dev-hero {
        padding-block: 68px 84px;
    }

    .custom-dev-hero h1 {
        font-size: clamp(3.65rem, 16vw, 6rem);
    }

    .custom-dev-choice-grid,
    .custom-dev-services-grid {
        grid-template-columns: 1fr;
    }

    .custom-dev-choice-card {
        min-height: 0;
    }

    .custom-dev-service-card {
        min-height: 270px;
    }

    .custom-dev-service-card h3 {
        margin-top: 54px;
    }

    .custom-dev-process-list > li {
        grid-template-columns: 52px 1fr;
        gap: 18px;
    }

    .custom-dev-process-list > li > div {
        grid-column: 2;
    }

    .custom-dev-process-list p {
        margin-top: 12px;
    }

    .custom-dev-ownership-panel,
    .custom-dev-cta-panel {
        padding: 34px 26px;
    }
}

@media (max-width: 560px) {
    .custom-dev-actions {
        flex-direction: column;
    }

    .custom-dev-actions .button,
    .custom-dev-cta-panel .button {
        width: 100%;
    }

    .custom-dev-hero-panel {
        padding: 27px 23px;
        border-radius: 22px;
    }

    .custom-dev-choice-card {
        padding: 30px 24px;
        border-radius: 22px;
    }

    .custom-dev-choice-label {
        margin-bottom: 30px;
    }

    .custom-dev-services-grid {
        border-left: 0;
    }

    .custom-dev-service-card {
        border-left: 1px solid rgba(255, 255, 255, 0.11);
    }

    .custom-dev-process-list > li {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .custom-dev-process-list > li > div {
        grid-column: auto;
    }

    .custom-dev-case-tags {
        display: grid;
        grid-template-columns: 1fr;
    }

    .custom-dev-case-tags span {
        width: fit-content;
    }

    .custom-dev-case-card {
        padding: 30px 24px;
        border-radius: 22px;
    }

    .custom-dev-ownership-panel,
    .custom-dev-cta-panel {
        border-radius: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .custom-dev-text-link,
    .custom-dev-choice-card,
    .custom-dev-service-card {
        transition: none;
    }
}

/* === AIO TECH CASE STUDY START === */

/*
|--------------------------------------------------------------------------
| The All In One Tech — Technical Case Study
|--------------------------------------------------------------------------
*/

@media (min-width: 1101px) {
    .custom-dev-case-grid {
        grid-template-columns:
            minmax(0, 0.92fr)
            minmax(430px, 0.78fr);
        align-items: start;
    }
}

.custom-dev-system-card {
    position: relative;
    overflow: hidden;
    padding: 0;
    border-color: rgba(255, 255, 255, 0.13);
    border-radius: 26px;
    background:
        linear-gradient(
            180deg,
            rgba(31, 35, 43, 0.98),
            rgba(18, 21, 27, 0.98)
        );
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.custom-dev-system-card::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    content: "";
    pointer-events: none;
    opacity: 0.18;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );
    background-size: 28px 28px;
    mask-image:
        linear-gradient(
            to bottom,
            #000,
            rgba(0, 0, 0, 0.3) 68%,
            transparent
        );
}

.custom-dev-system-card::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 42%;
    height: 2px;
    margin: 0;
    content: "";
    background:
        linear-gradient(
            90deg,
            var(--orange),
            rgba(255, 101, 52, 0)
        );
}

.custom-dev-system-card > * {
    position: relative;
    z-index: 1;
}

.custom-dev-system-topbar {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    min-height: 54px;
    padding: 0 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(0, 0, 0, 0.16);
    font-family: var(--font-mono);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.custom-dev-system-status {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    color: rgba(255, 255, 255, 0.76);
}

.custom-dev-system-status > span {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #65e7a5;
    box-shadow:
        0 0 0 4px rgba(101, 231, 165, 0.08),
        0 0 16px rgba(101, 231, 165, 0.42);
}

.custom-dev-system-id {
    color: rgba(255, 255, 255, 0.34);
}

.custom-dev-system-heading {
    padding:
        clamp(30px, 4vw, 42px)
        clamp(26px, 4vw, 38px)
        30px;
}

.custom-dev-system-heading .custom-dev-case-card-label {
    margin-bottom: 22px;
}

.custom-dev-system-heading h3 {
    max-width: 540px;
    margin: 0;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 3.2vw, 3.5rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.custom-dev-system-heading h3 span {
    display: block;
    color: rgba(255, 255, 255, 0.38);
}

.custom-dev-system-heading > p {
    max-width: 570px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.88rem;
    line-height: 1.72;
}

.custom-dev-system-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-dev-system-stat {
    min-height: 132px;
    padding: 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.018);
}

.custom-dev-system-stat > span {
    display: block;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.34);
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.custom-dev-system-stat strong {
    display: block;
    color: #ffffff;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    letter-spacing: 0.03em;
}

.custom-dev-system-stat small {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.43);
    font-size: 0.71rem;
    line-height: 1.45;
}

.custom-dev-system-section {
    margin: 30px 26px 0;
}

.custom-dev-system-section-label {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 15px;
    color: var(--orange);
    font-family: var(--font-mono);
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.custom-dev-system-section-label::after {
    height: 1px;
    flex: 1;
    content: "";
    background: rgba(255, 255, 255, 0.09);
}

.custom-dev-system-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.custom-dev-system-stack span {
    padding: 7px 9px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 5px;
    color: rgba(255, 255, 255, 0.69);
    background: rgba(255, 255, 255, 0.025);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.02em;
}

.custom-dev-system-feature-list {
    display: grid;
    gap: 0;
}

.custom-dev-system-feature-list > div {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.custom-dev-system-feature-list > div:last-child {
    border-bottom: 0;
}

.custom-dev-system-node {
    position: relative;
    width: 8px;
    height: 8px;
    margin-top: 6px;
    border: 1px solid var(--orange);
    border-radius: 2px;
}

.custom-dev-system-node::after {
    position: absolute;
    top: 50%;
    left: 100%;
    width: 8px;
    height: 1px;
    content: "";
    background: rgba(255, 101, 52, 0.48);
}

.custom-dev-system-feature-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.76rem;
    line-height: 1.55;
}

.custom-dev-system-feature-list strong {
    display: block;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-mono);
    font-size: 0.67rem;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.custom-dev-system-footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 32px;
    padding: 18px 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(0, 0, 0, 0.18);
    color: rgba(255, 255, 255, 0.28);
    font-family: var(--font-mono);
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.09em;
}

.custom-dev-system-footer span:last-child {
    color: var(--orange);
}

@media (max-width: 1100px) {
    .custom-dev-case-grid {
        grid-template-columns: 1fr;
    }

    .custom-dev-system-card {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 560px) {
    .custom-dev-system-topbar {
        padding-inline: 18px;
    }

    .custom-dev-system-id {
        display: none;
    }

    .custom-dev-system-heading {
        padding-inline: 22px;
    }

    .custom-dev-system-grid {
        grid-template-columns: 1fr;
        margin-inline: 18px;
    }

    .custom-dev-system-stat {
        min-height: 0;
    }

    .custom-dev-system-section {
        margin-inline: 18px;
    }

    .custom-dev-system-footer {
        flex-direction: column;
        padding-inline: 18px;
    }
}

/* === AIO TECH CASE STUDY END === */

