/* ==========================================================
   WEBSITE DESIGN & DEVELOPMENT
   SECTION 01 — HERO
========================================================== */

.wd-hero {
    position: relative;
    overflow: hidden;

    padding: 60px 0 45px;

    background: #111111;
}


/* ==========================================================
   BACKGROUND GRID
========================================================== */

.wd-hero-grid {
    position: absolute;
    inset: 0;

    opacity: .055;

    background-image:
        linear-gradient(
            rgba(255,255,255,.7) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.7) 1px,
            transparent 1px
        );

    background-size: 45px 45px;

    pointer-events: none;
}


/* ==========================================================
   BACKGROUND GLOW
========================================================== */

.wd-hero-glow {
    position: absolute;

    width: 550px;
    height: 550px;

    top: -320px;
    left: 35%;

    border-radius: 50%;

    background: rgba(242,99,34,.10);

    filter: blur(100px);

    pointer-events: none;
}


/* ==========================================================
   MAIN LAYOUT
========================================================== */

.wd-hero-layout {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 48%)
        minmax(420px, 52%);

    align-items: center;

    gap: 55px;

    min-height: 570px;
}


/* ==========================================================
   LEFT CONTENT
========================================================== */

.wd-hero-content {
    position: relative;
    z-index: 5;
}


/* EYEBROW */

.wd-hero-eyebrow {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 11px;

    color: var(--tdc-orange, #f26322);
}


.wd-hero-eyebrow-line {
    width: 38px;
    height: 2px;

    flex: 0 0 38px;

    background: var(--tdc-orange, #f26322);
}


/* HEADING */

.wd-hero-content h1 {
    max-width: 690px;

    margin: 0;

    color: #ffffff;
}


.wd-hero-content h1 span {
    display: block;

    color: var(--tdc-orange, #f26322);
}


/* INTRO */

.wd-hero-intro {
    max-width: 630px;

    margin: 15px 0 0;

    color: rgba(255,255,255,.64);
}


/* ==========================================================
   ACTIONS
========================================================== */

.wd-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 23px;
}


/* PRIMARY */

.wd-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 50px;

    padding: 0 20px;

    border-radius: 50px;

    background: var(--tdc-orange, #f26322);

    text-decoration: none;

    color: #ffffff;

    transition:
        transform .3s ease,
        gap .3s ease,
        box-shadow .3s ease;
}


.wd-hero-primary:hover {
    transform: translateY(-2px);

    gap: 12px;

    box-shadow:
        0 12px 30px rgba(242,99,34,.20);

    color: #ffffff;
}


/* SECONDARY */

.wd-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 50px;

    padding: 0 18px;

    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50px;

    background: rgba(255,255,255,.05);

    text-decoration: none;

    color: #ffffff;

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease;
}


.wd-hero-secondary:hover {
    transform: translateY(-2px);

    border-color: rgba(242,99,34,.40);

    background: rgba(242,99,34,.08);

    color: #ffffff;
}


/* ==========================================================
   HERO POINTS
========================================================== */

.wd-hero-points {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 6px;

    margin-top: 25px;
    padding-top: 17px;

    border-top: 1px solid rgba(255,255,255,.09);
}


.wd-hero-points > div {
    display: grid;
    grid-template-columns:
        32px
        minmax(0, 1fr);

    align-items: center;

    gap: 8px;
}


.wd-hero-points > div > span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    border-radius: 8px;

    background: rgba(242,99,34,.12);

    color: var(--tdc-orange, #f26322);
}


.wd-hero-points strong,
.wd-hero-points small {
    display: block;
}


.wd-hero-points strong {
    color: #ffffff;
}


.wd-hero-points small {
    margin-top: 1px;

    color: rgba(255,255,255,.42);
}


/* ==========================================================
   RIGHT VISUAL
========================================================== */

.wd-hero-visual {
    position: relative;

    min-height: 490px;
}


/* ==========================================================
   MAIN BROWSER
========================================================== */

.wd-browser {
    position: absolute;

    z-index: 3;

    top: 25px;
    right: 0;
    left: 20px;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.13);
    border-radius: 17px;

    background: #ffffff;

    box-shadow:
        0 35px 70px rgba(0,0,0,.35);

    transform: perspective(1200px) rotateY(-3deg);

    transition: transform .5s ease;
}


.wd-hero-visual:hover
.wd-browser {
    transform:
        perspective(1200px)
        rotateY(0deg)
        translateY(-3px);
}


/* ==========================================================
   BROWSER TOP
========================================================== */

.wd-browser-top {
    display: grid;
    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 10px;

    min-height: 42px;

    padding: 0 12px;

    background: #f0eeec;
}


/* DOTS */

.wd-browser-dots {
    display: flex;
    gap: 4px;
}


.wd-browser-dots span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #bbb5b0;
}


.wd-browser-dots span:first-child {
    background: var(--tdc-orange, #f26322);
}


/* URL */

.wd-browser-url {
    max-width: 260px;

    margin: 0 auto;
    padding: 6px 15px;

    overflow: hidden;

    border-radius: 50px;

    background: #ffffff;

    white-space: nowrap;
    text-overflow: ellipsis;

    color: #8a837e;
}


/* LIVE */

.wd-browser-live {
    padding: 5px 7px;

    border-radius: 50px;

    background: #111111;

    color: #ffffff;
}


/* ==========================================================
   BROWSER SCREEN
========================================================== */

.wd-browser-screen {
    position: relative;

    height: 350px;

    overflow: hidden;

    background: #ddd8d4;
}


.wd-browser-screen img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .8s ease;
}


.wd-browser:hover
.wd-browser-screen img {
    transform: scale(1.025);
}


.wd-browser-screen-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(17,17,17,.02) 35%,
            rgba(17,17,17,.72) 100%
        );
}


/* ==========================================================
   SCREEN LABEL
========================================================== */

.wd-browser-screen-label {
    position: absolute;

    z-index: 3;

    left: 20px;
    bottom: 20px;

    max-width: 340px;
}


.wd-browser-screen-label > span {
    display: block;

    margin-bottom: 4px;

    color: var(--tdc-orange, #f26322);
}


.wd-browser-screen-label strong {
    display: block;

    color: #ffffff;
}


.wd-browser-screen-label strong em {
    display: block;

    color: var(--tdc-orange, #f26322);
}


/* ==========================================================
   MOBILE DEVICE
========================================================== */

.wd-mobile {
    position: absolute;

    z-index: 6;

    right: -5px;
    bottom: 0;

    width: 145px;
    height: 285px;

    padding: 7px;

    border: 2px solid #2b2b2b;
    border-radius: 25px;

    background: #111111;

    box-shadow:
        0 25px 45px rgba(0,0,0,.35);

    transform: rotate(3deg);

    transition: transform .4s ease;
}


.wd-hero-visual:hover
.wd-mobile {
    transform:
        rotate(0deg)
        translateY(-4px);
}


.wd-mobile-speaker {
    position: absolute;

    z-index: 4;

    top: 10px;
    left: 50%;

    width: 38px;
    height: 4px;

    border-radius: 20px;

    background: #282828;

    transform: translateX(-50%);
}


.wd-mobile-screen {
    width: 100%;
    height: 100%;

    overflow: hidden;

    border-radius: 18px;

    background: #e5e1de;
}


.wd-mobile-screen img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* ==========================================================
   PERFORMANCE CARD
========================================================== */

.wd-performance {
    position: absolute;

    z-index: 7;

    left: 0;
    bottom: 5px;

    width: 205px;

    padding: 12px;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;

    background: rgba(17,17,17,.94);

    box-shadow:
        0 20px 40px rgba(0,0,0,.25);
}


/* TOP */

.wd-performance-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 8px;

    margin-bottom: 7px;
    padding-bottom: 7px;

    border-bottom: 1px solid rgba(255,255,255,.08);
}


.wd-performance-top > span:first-child {
    color: rgba(255,255,255,.46);
}


.wd-performance-status {
    padding: 3px 6px;

    border-radius: 50px;

    background: rgba(242,99,34,.12);

    color: var(--tdc-orange, #f26322);
}


/* ROW */

.wd-performance-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    padding: 6px 0;
}


.wd-performance-row div span {
    display: block;

    color: var(--tdc-orange, #f26322);
}


.wd-performance-row div strong {
    display: block;

    color: #ffffff;
}


.wd-performance-check {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    flex: 0 0 24px;

    border-radius: 50%;

    background: rgba(242,99,34,.13);

    color: var(--tdc-orange, #f26322);
}


/* ==========================================================
   CODE TAG
========================================================== */

.wd-code-tag {
    position: absolute;

    z-index: 8;

    top: 0;
    right: 20px;

    display: flex;
    align-items: center;

    gap: 9px;

    padding: 9px 12px;

    border-radius: 10px;

    background: var(--tdc-orange, #f26322);

    box-shadow:
        0 15px 30px rgba(242,99,34,.22);
}


.wd-code-tag > span {
    color: #111111;
}


.wd-code-tag small,
.wd-code-tag strong {
    display: block;
}


.wd-code-tag small {
    color: rgba(255,255,255,.65);
}


.wd-code-tag strong {
    color: #ffffff;
}


/* ==========================================================
   ORANGE BLOCK
========================================================== */

.wd-hero-orange-block {
    position: absolute;

    z-index: 1;

    width: 230px;
    height: 230px;

    top: 110px;
    right: -70px;

    border-radius: 35px;

    background: rgba(242,99,34,.12);

    transform: rotate(20deg);
}


/* ==========================================================
   BOTTOM VALUE STRIP
========================================================== */

.wd-hero-strip {
    position: relative;
    z-index: 4;

    display: grid;
    grid-template-columns:
        minmax(220px, 28%)
        minmax(0, 72%);

    align-items: center;

    gap: 20px;

    margin-top: 12px;
    padding: 15px 18px;

    border: 1px solid rgba(255,255,255,.09);
    border-radius: 14px;

    background: rgba(255,255,255,.045);
}


/* TITLE */

.wd-hero-strip-title > span {
    display: block;

    margin-bottom: 2px;

    color: var(--tdc-orange, #f26322);
}


.wd-hero-strip-title strong {
    display: block;

    color: #ffffff;
}


/* FLOW */

.wd-hero-strip-flow {
    display: grid;

    grid-template-columns:
        1fr auto
        1fr auto
        1fr auto
        1fr auto
        1fr;

    align-items: center;

    gap: 5px;
}


.wd-hero-strip-flow > div {
    padding: 7px;

    border: 1px solid rgba(255,255,255,.07);
    border-radius: 7px;

    background: rgba(255,255,255,.04);

    text-align: center;
}


.wd-hero-strip-flow > div span {
    display: block;

    color: var(--tdc-orange, #f26322);
}


.wd-hero-strip-flow > div strong {
    display: block;

    color: rgba(255,255,255,.78);
}


.wd-hero-strip-flow > i {
    color: rgba(255,255,255,.20);
}


.wd-hero-strip-result {
    border-color: rgba(242,99,34,.25) !important;

    background: rgba(242,99,34,.11) !important;
}


.wd-hero-strip-result strong {
    color: #ffffff !important;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1023px) {

    .wd-hero {
        padding: 45px 0 38px;
    }


    .wd-hero-layout {
        grid-template-columns:
            minmax(0, 48%)
            minmax(350px, 52%);

        gap: 30px;

        min-height: 540px;
    }


    .wd-hero-points {
        grid-template-columns: 1fr;
    }


    .wd-browser-screen {
        height: 320px;
    }


    .wd-mobile {
        width: 125px;
        height: 250px;
    }


    .wd-performance {
        width: 185px;
    }


    .wd-hero-strip {
        grid-template-columns: 1fr;

        gap: 10px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .wd-hero {
        padding: 35px 0 30px;
    }


    .wd-hero-layout {
        grid-template-columns: 1fr;

        gap: 30px;

        min-height: 0;
    }


    .wd-hero-actions {
        align-items: stretch;
    }


    .wd-hero-primary,
    .wd-hero-secondary {
        width: 100%;
    }


    .wd-hero-points {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }


    /* VISUAL */

    .wd-hero-visual {
        min-height: 450px;
    }


    .wd-browser {
        left: 0;
    }


    .wd-browser-screen {
        height: 310px;
    }


    .wd-mobile {
        right: 0;

        width: 125px;
        height: 250px;
    }


    .wd-performance {
        left: 5px;

        width: 180px;
    }


    .wd-code-tag {
        right: 10px;
    }


    /* STRIP */

    .wd-hero-strip-flow {
        grid-template-columns:
            repeat(5, minmax(0, 1fr));
    }


    .wd-hero-strip-flow > i {
        display: none;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .wd-hero-points {
        grid-template-columns: 1fr;

        gap: 8px;
    }


    .wd-hero-visual {
        min-height: 420px;
    }


    .wd-browser {
        top: 30px;
    }


    .wd-browser-screen {
        height: 270px;
    }


    .wd-browser-screen-label {
        left: 14px;
        bottom: 15px;
    }


    .wd-mobile {
        width: 110px;
        height: 220px;
    }


    .wd-performance {
        bottom: 0;

        width: 165px;
    }


    .wd-code-tag {
        top: 0;
        right: 0;
    }


    .wd-hero-strip-flow {
        grid-template-columns: 1fr;
    }


    .wd-hero-strip-flow > div {
        display: flex;
        align-items: center;

        gap: 8px;

        text-align: left;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .wd-browser,
    .wd-browser-screen img,
    .wd-mobile,
    .wd-hero-primary,
    .wd-hero-secondary {
        transition: none !important;
    }

}
/* ==========================================================
   WEBSITE DESIGN & DEVELOPMENT
   SECTION 02 — WEBSITE FOUNDATION
========================================================== */

.wd-foundation {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    background: #ffffff;
}


/* ==========================================================
   HEADER
========================================================== */

.wd-foundation-header {
    display: grid;
    grid-template-columns:
        minmax(0, 60%)
        minmax(300px, 40%);

    align-items: end;
    gap: 55px;

    margin-bottom: 28px;
}


.wd-foundation-header h2 {
    max-width: 800px;
    margin: 0;
    color: var(--tdc-black, #111111);
}


.wd-foundation-header h2 span {
    display: block;
    color: var(--tdc-orange, #f26322);
}


.wd-foundation-header-copy {
    max-width: 500px;
}


.wd-foundation-header-copy p {
    margin: 0;
    color: var(--tdc-text-muted, #66615e);
}


/* ==========================================================
   MAIN LAYOUT
========================================================== */

.wd-foundation-layout {
    display: grid;
    grid-template-columns:
        minmax(390px, 48%)
        minmax(0, 52%);

    align-items: stretch;
    gap: 12px;
}


/* ==========================================================
   LEFT VISUAL
========================================================== */

.wd-foundation-visual {
    position: relative;
    min-height: 680px;

    overflow: hidden;

    border-radius: 20px;
    background: #f4f1ee;
}


/* DECORATIVE BACKGROUND */

.wd-foundation-visual::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    top: -120px;
    right: -100px;

    border-radius: 50%;

    background: rgba(242,99,34,.09);
}


.wd-foundation-visual::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    left: -120px;
    bottom: -100px;

    border: 45px solid rgba(17,17,17,.035);
    border-radius: 50%;
}


/* ==========================================================
   BROWSER
========================================================== */

.wd-foundation-browser {
    position: absolute;
    z-index: 2;

    top: 35px;
    left: 25px;
    right: 25px;

    overflow: hidden;

    border: 1px solid #ddd7d2;
    border-radius: 15px;

    background: #ffffff;

    box-shadow:
        0 25px 55px rgba(17,17,17,.12);

    transform: perspective(1200px) rotateY(2deg);

    transition: transform .5s ease;
}


.wd-foundation-visual:hover
.wd-foundation-browser {
    transform:
        perspective(1200px)
        rotateY(0deg)
        translateY(-3px);
}


/* ==========================================================
   BROWSER TOP
========================================================== */

.wd-foundation-browser-top {
    display: grid;
    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 10px;

    min-height: 40px;
    padding: 0 11px;

    background: #efebe8;
}


.wd-foundation-browser-dots {
    display: flex;
    gap: 4px;
}


.wd-foundation-browser-dots span {
    width: 7px;
    height: 7px;

    border-radius: 50%;
    background: #bdb6b1;
}


.wd-foundation-browser-dots span:first-child {
    background: var(--tdc-orange, #f26322);
}


.wd-foundation-url {
    max-width: 230px;

    margin: 0 auto;
    padding: 5px 12px;

    overflow: hidden;

    border-radius: 50px;

    background: #ffffff;

    white-space: nowrap;
    text-overflow: ellipsis;

    color: #8a837e;
}


.wd-foundation-secure {
    padding: 4px 7px;

    border-radius: 50px;

    background: #111111;
    color: #ffffff;
}


/* ==========================================================
   WEBSITE IMAGE
========================================================== */

.wd-foundation-image {
    height: 430px;
    overflow: hidden;
    background: #ddd8d4;
}


.wd-foundation-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: top;

    transition: transform .8s ease;
}


.wd-foundation-browser:hover
.wd-foundation-image img {
    transform: scale(1.025);
}


/* ==========================================================
   MOBILE MOCKUP
========================================================== */

.wd-foundation-mobile {
    position: absolute;
    z-index: 5;

    right: 15px;
    bottom: 22px;

    width: 145px;
    height: 285px;

    padding: 7px;

    border: 2px solid #242424;
    border-radius: 24px;

    background: #111111;

    box-shadow:
        0 22px 45px rgba(17,17,17,.25);

    transform: rotate(3deg);

    transition: transform .4s ease;
}


.wd-foundation-visual:hover
.wd-foundation-mobile {
    transform:
        rotate(0deg)
        translateY(-4px);
}


.wd-foundation-mobile-bar {
    position: absolute;
    z-index: 3;

    top: 10px;
    left: 50%;

    width: 35px;
    height: 4px;

    border-radius: 20px;

    background: #292929;

    transform: translateX(-50%);
}


.wd-foundation-mobile-image {
    width: 100%;
    height: 100%;

    overflow: hidden;

    border-radius: 17px;

    background: #e6e1dd;
}


.wd-foundation-mobile-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: top;
}


/* ==========================================================
   FLOATING EXPERIENCE CARD
========================================================== */

.wd-foundation-floating {
    position: absolute;
    z-index: 6;

    left: 18px;
    bottom: 25px;

    width: 255px;

    padding: 13px;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 13px;

    background: #111111;

    box-shadow:
        0 18px 40px rgba(17,17,17,.22);
}


/* TOP */

.wd-foundation-floating-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 8px;
}


.wd-foundation-floating-top > span:first-child {
    color: rgba(255,255,255,.55);
}


.wd-foundation-live {
    padding: 3px 6px;

    border-radius: 50px;

    background: rgba(242,99,34,.14);

    color: var(--tdc-orange, #f26322);
}


/* METER */

.wd-foundation-meter {
    height: 4px;

    margin: 10px 0 12px;

    overflow: hidden;

    border-radius: 50px;

    background: rgba(255,255,255,.08);
}


.wd-foundation-meter span {
    display: block;

    width: 88%;
    height: 100%;

    border-radius: inherit;

    background: var(--tdc-orange, #f26322);
}


/* BOTTOM */

.wd-foundation-floating-bottom {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 5px;
}


.wd-foundation-floating-bottom > div {
    padding: 6px;

    border-radius: 7px;

    background: rgba(255,255,255,.05);
}


.wd-foundation-floating-bottom span,
.wd-foundation-floating-bottom strong {
    display: block;
}


.wd-foundation-floating-bottom span {
    color: var(--tdc-orange, #f26322);
}


.wd-foundation-floating-bottom strong {
    color: #ffffff;
}


/* ==========================================================
   RIGHT CONTENT
========================================================== */

.wd-foundation-content {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 8px;
}


/* ==========================================================
   INTRO
========================================================== */

.wd-foundation-intro {
    grid-column: 1 / -1;

    padding: 21px;

    border-radius: 16px;

    background: #111111;
}


.wd-foundation-intro > span {
    display: block;

    margin-bottom: 5px;

    color: var(--tdc-orange, #f26322);
}


.wd-foundation-intro h3 {
    max-width: 600px;

    margin: 0;

    color: #ffffff;
}


.wd-foundation-intro h3 em {
    display: block;

    color: var(--tdc-orange, #f26322);
}


.wd-foundation-intro p {
    max-width: 610px;

    margin: 8px 0 0;

    color: rgba(255,255,255,.62);
}


/* ==========================================================
   FOUNDATION ITEM
========================================================== */

.wd-foundation-item {
    display: grid;
    grid-template-columns:
        40px
        minmax(0, 1fr);

    align-content: start;

    gap: 10px;

    padding: 15px;

    border: 1px solid #e4ded9;
    border-radius: 14px;

    background: #f8f6f3;

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease;
}


.wd-foundation-item:hover {
    transform: translateY(-3px);

    border-color: rgba(242,99,34,.28);

    background: #ffffff;
}


/* NUMBER */

.wd-foundation-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 9px;

    background: #111111;

    color: #ffffff;

    transition: background .3s ease;
}


.wd-foundation-item:hover
.wd-foundation-number {
    background: var(--tdc-orange, #f26322);
}


/* CONTENT */

.wd-foundation-item > div:last-child > span {
    display: block;

    margin-bottom: 3px;

    color: var(--tdc-orange, #f26322);
}


.wd-foundation-item strong {
    display: block;

    color: #111111;
}


.wd-foundation-item p {
    margin: 5px 0 0;

    color: #756e69;
}


/* ==========================================================
   LAST ITEM
========================================================== */

.wd-foundation-item-last {
    grid-column: 1 / -1;

    background: #111111;
    border-color: #111111;
}


.wd-foundation-item-last
.wd-foundation-number {
    background: var(--tdc-orange, #f26322);
}


.wd-foundation-item-last strong {
    color: #ffffff;
}


.wd-foundation-item-last p {
    max-width: 600px;

    color: rgba(255,255,255,.60);
}


/* ==========================================================
   BOTTOM STRIP
========================================================== */

.wd-foundation-bottom {
    display: grid;
    grid-template-columns:
        minmax(280px, 38%)
        minmax(0, 62%);

    align-items: center;

    gap: 20px;

    margin-top: 12px;
    padding: 16px 18px;

    border: 1px solid #e3ddd8;
    border-radius: 14px;

    background: #f8f6f3;
}


/* TITLE */

.wd-foundation-bottom-title > span {
    display: block;

    margin-bottom: 2px;

    color: var(--tdc-orange, #f26322);
}


.wd-foundation-bottom-title strong {
    display: block;

    color: #111111;
}


/* ==========================================================
   FORMULA
========================================================== */

.wd-foundation-formula {
    display: grid;

    grid-template-columns:
        1fr auto
        1fr auto
        1fr auto
        1fr;

    align-items: center;

    gap: 6px;
}


.wd-foundation-formula > div {
    padding: 8px;

    border-radius: 8px;

    background: #ffffff;

    text-align: center;
}


.wd-foundation-formula > div span {
    display: block;

    color: var(--tdc-orange, #f26322);
}


.wd-foundation-formula > div strong {
    display: block;

    color: #111111;
}


.wd-foundation-formula > i {
    color: #c5bdb7;
}


.wd-foundation-formula-result {
    background: #111111 !important;
}


.wd-foundation-formula-result strong {
    color: #ffffff !important;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1023px) {

    .wd-foundation {
        padding: 38px 0;
    }


    .wd-foundation-header {
        grid-template-columns: 1fr;
        gap: 12px;
    }


    .wd-foundation-header-copy {
        max-width: 680px;
    }


    .wd-foundation-layout {
        grid-template-columns:
            minmax(320px, 42%)
            minmax(0, 58%);
    }


    .wd-foundation-visual {
        min-height: 720px;
    }


    .wd-foundation-content {
        grid-template-columns: 1fr;
    }


    .wd-foundation-intro,
    .wd-foundation-item-last {
        grid-column: auto;
    }


    .wd-foundation-bottom {
        grid-template-columns: 1fr;

        gap: 10px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .wd-foundation {
        padding: 30px 0;
    }


    .wd-foundation-layout {
        grid-template-columns: 1fr;

        gap: 8px;
    }


    .wd-foundation-visual {
        min-height: 600px;
    }


    .wd-foundation-browser {
        left: 15px;
        right: 15px;
    }


    .wd-foundation-image {
        height: 390px;
    }


    .wd-foundation-content {
        gap: 7px;
    }


    .wd-foundation-formula {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }


    .wd-foundation-formula > i {
        display: none;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .wd-foundation-visual {
        min-height: 540px;
    }


    .wd-foundation-browser {
        top: 20px;
        left: 10px;
        right: 10px;
    }


    .wd-foundation-image {
        height: 340px;
    }


    .wd-foundation-mobile {
        right: 10px;

        width: 115px;
        height: 225px;
    }


    .wd-foundation-floating {
        left: 10px;
        bottom: 15px;

        width: 210px;
    }


    .wd-foundation-floating-bottom {
        grid-template-columns: 1fr;
    }


    .wd-foundation-item {
        grid-template-columns:
            36px
            minmax(0, 1fr);
    }


    .wd-foundation-number {
        width: 36px;
        height: 36px;
    }


    .wd-foundation-formula {
        grid-template-columns: 1fr;
    }


    .wd-foundation-formula > div {
        display: flex;
        align-items: center;

        gap: 8px;

        text-align: left;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .wd-foundation-browser,
    .wd-foundation-image img,
    .wd-foundation-mobile,
    .wd-foundation-item {
        transition: none !important;
    }

}
/* ==========================================================
   WEBSITE DESIGN & DEVELOPMENT
   SECTION 03 — SERVICES
========================================================== */

.wd-services {
    position: relative;
    overflow: hidden;

    padding: 50px 0;

    background: #f8f6f3;
}


/* ==========================================================
   HEADER
========================================================== */

.wd-services-header {
    display: grid;
    grid-template-columns:
        minmax(0, 60%)
        minmax(300px, 40%);

    align-items: end;

    gap: 55px;

    margin-bottom: 28px;
}


.wd-services-header h2 {
    max-width: 800px;

    margin: 0;

    color: var(--tdc-black, #111111);
}


.wd-services-header h2 span {
    display: block;

    color: var(--tdc-orange, #f26322);
}


.wd-services-header-copy {
    max-width: 500px;
}


.wd-services-header-copy p {
    margin: 0;

    color: var(--tdc-text-muted, #66615e);
}


/* ==========================================================
   GRID
========================================================== */

.wd-services-grid {
    display: grid;
    grid-template-columns:
        repeat(12, minmax(0, 1fr));

    gap: 10px;
}


/* ==========================================================
   BASE CARD
========================================================== */

.wd-service {
    position: relative;

    overflow: hidden;

    padding: 17px;

    border: 1px solid #e3ddd8;
    border-radius: 17px;

    background: #ffffff;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}


.wd-service:hover {
    transform: translateY(-3px);

    border-color: rgba(242,99,34,.28);

    box-shadow:
        0 16px 35px rgba(17,17,17,.06);
}


/* ==========================================================
   WIDTHS
========================================================== */

.wd-service-featured {
    grid-column: span 7;

    min-height: 470px;

    padding: 0;

    background: #111111;
}


.wd-service-corporate {
    grid-column: span 5;
}


.wd-service-standard {
    grid-column: span 4;
}


.wd-service-ecommerce {
    grid-column: span 4;
}


.wd-service-landing {
    grid-column: span 4;
}


.wd-service-redesign {
    grid-column: span 6;

    background: #111111;

    border-color: #111111;
}


.wd-service-maintenance {
    grid-column: span 6;
}


/* ==========================================================
   TOP
========================================================== */

.wd-service-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    margin-bottom: 13px;
}


.wd-service-top > span {
    padding: 5px 8px;

    border-radius: 50px;

    background: #f3efec;

    color: #77706b;
}


.wd-service-top > span:first-child {
    background: #111111;

    color: #ffffff;
}


.wd-service-top-dark > span {
    background: rgba(255,255,255,.08);

    color: rgba(255,255,255,.65);
}


.wd-service-top-dark > span:first-child {
    background: var(--tdc-orange, #f26322);

    color: #ffffff;
}


/* ==========================================================
   FEATURED
========================================================== */

.wd-service-featured-image {
    position: absolute;

    inset: 0;
}


.wd-service-featured-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;
}


.wd-service-featured:hover
.wd-service-featured-image img {
    transform: scale(1.035);
}


.wd-service-featured-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(17,17,17,.05) 15%,
            rgba(17,17,17,.25) 48%,
            rgba(17,17,17,.94) 100%
        );
}


.wd-service-featured .wd-service-top {
    position: absolute;

    z-index: 4;

    top: 18px;
    left: 18px;
    right: 18px;
}


.wd-service-featured-content {
    position: absolute;

    z-index: 4;

    left: 22px;
    right: 22px;
    bottom: 22px;
}


.wd-service-featured-content > span {
    display: block;

    margin-bottom: 5px;

    color: var(--tdc-orange, #f26322);
}


.wd-service-featured-content h3 {
    max-width: 520px;

    margin: 0;

    color: #ffffff;
}


.wd-service-featured-content p {
    max-width: 590px;

    margin: 8px 0 0;

    color: rgba(255,255,255,.68);
}


/* ==========================================================
   TAGS
========================================================== */

.wd-service-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 5px;

    margin-top: 12px;
}


.wd-service-tags span {
    padding: 6px 9px;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50px;

    background: rgba(255,255,255,.07);

    color: rgba(255,255,255,.75);
}


/* ==========================================================
   STANDARD IMAGE
========================================================== */

.wd-service-image {
    height: 160px;

    margin-bottom: 13px;

    overflow: hidden;

    border-radius: 11px;

    background: #ded9d5;
}


.wd-service-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}


.wd-service:hover
.wd-service-image img {
    transform: scale(1.035);
}


/* ==========================================================
   CONTENT
========================================================== */

.wd-service-label {
    display: block;

    margin-bottom: 5px;

    color: var(--tdc-orange, #f26322);
}


.wd-service h3 {
    margin: 0;

    color: #111111;
}


.wd-service > p {
    margin: 7px 0 0;

    color: #756e69;
}


/* ==========================================================
   FOOTER
========================================================== */

.wd-service-footer {
    display: flex;
    flex-wrap: wrap;

    gap: 5px;

    margin-top: 14px;
    padding-top: 11px;

    border-top: 1px solid #e9e4df;
}


.wd-service-footer span {
    padding: 5px 7px;

    border-radius: 6px;

    background: #f6f3f0;

    color: #756e69;
}


/* ==========================================================
   WORDPRESS MOCKUP
========================================================== */

.wd-service-tech-preview {
    height: 145px;

    margin-bottom: 14px;
}


.wd-wp-browser {
    height: 100%;

    overflow: hidden;

    border: 1px solid #ddd7d2;
    border-radius: 10px;

    background: #ffffff;

    box-shadow:
        0 10px 25px rgba(17,17,17,.07);
}


.wd-wp-top {
    display: flex;

    gap: 4px;

    padding: 7px;

    background: #efebe8;
}


.wd-wp-top span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #bbb4af;
}


.wd-wp-top span:first-child {
    background: var(--tdc-orange, #f26322);
}


.wd-wp-layout {
    display: grid;
    grid-template-columns:
        52px
        minmax(0, 1fr);

    height: calc(100% - 20px);
}


.wd-wp-sidebar {
    display: grid;
    align-content: start;

    gap: 7px;

    padding: 10px 7px;

    background: #111111;
}


.wd-wp-sidebar span {
    height: 5px;

    border-radius: 10px;

    background: rgba(255,255,255,.18);
}


.wd-wp-sidebar span:first-child {
    background: var(--tdc-orange, #f26322);
}


.wd-wp-content {
    padding: 12px;
}


.wd-wp-heading {
    display: block;

    width: 55%;
    height: 8px;

    margin-bottom: 10px;

    border-radius: 10px;

    background: #111111;
}


.wd-wp-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 5px;

    margin-bottom: 9px;
}


.wd-wp-blocks span {
    height: 42px;

    border-radius: 6px;

    background: #eeeae7;
}


.wd-wp-blocks span:last-child {
    background: rgba(242,99,34,.12);
}


.wd-wp-line {
    display: block;

    width: 85%;
    height: 5px;

    margin-bottom: 5px;

    border-radius: 10px;

    background: #ded8d4;
}


.wd-wp-short {
    width: 55%;
}


/* ==========================================================
   CODE CARD
========================================================== */

.wd-service-code {
    background: #111111;

    border-color: #111111;
}


.wd-service-code h3 {
    color: #ffffff;
}


.wd-service-code > p {
    color: rgba(255,255,255,.60);
}


.wd-code-preview {
    height: 145px;

    margin-bottom: 14px;
    padding: 11px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;

    background: #181818;
}


.wd-code-preview-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    padding-bottom: 9px;

    border-bottom: 1px solid rgba(255,255,255,.07);
}


.wd-code-preview-top > span {
    color: var(--tdc-orange, #f26322);
}


.wd-code-preview-top div {
    display: flex;

    gap: 4px;
}


.wd-code-preview-top div span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: rgba(255,255,255,.20);
}


.wd-code-lines {
    display: grid;

    gap: 7px;

    padding-top: 12px;
}


.wd-code-lines > span {
    display: block;

    width: 78%;
    height: 5px;

    border-radius: 10px;

    background: rgba(255,255,255,.14);
}


.wd-code-lines .wd-code-indent {
    width: 65%;

    margin-left: 18px;
}


.wd-code-lines .wd-code-short {
    width: 42%;
}


.wd-code-lines .wd-code-medium {
    width: 55%;
}


.wd-code-lines .wd-code-orange {
    background: rgba(242,99,34,.70);
}


.wd-service-footer-dark {
    border-color: rgba(255,255,255,.08);
}


.wd-service-footer-dark span {
    background: rgba(255,255,255,.06);

    color: rgba(255,255,255,.65);
}


/* ==========================================================
   LANDING PAGE PREVIEW
========================================================== */

.wd-landing-preview {
    height: 145px;

    margin-bottom: 14px;
}


.wd-landing-window {
    height: 100%;

    overflow: hidden;

    border: 1px solid #ded8d3;
    border-radius: 10px;

    background: #ffffff;
}


.wd-landing-nav {
    display: flex;
    justify-content: flex-end;

    gap: 5px;

    padding: 8px;

    border-bottom: 1px solid #eee9e5;
}


.wd-landing-nav span {
    width: 25px;
    height: 4px;

    border-radius: 10px;

    background: #d6d0cb;
}


.wd-landing-content {
    display: grid;
    grid-template-columns:
        minmax(0, 1.3fr)
        minmax(70px, .7fr);

    gap: 10px;

    padding: 13px;
}


.wd-landing-small {
    display: block;

    width: 35px;
    height: 4px;

    margin-bottom: 7px;

    background: var(--tdc-orange, #f26322);
}


.wd-landing-title {
    display: block;

    width: 90%;
    height: 8px;

    margin-bottom: 5px;

    border-radius: 10px;

    background: #111111;
}


.wd-landing-title-short {
    width: 65%;
}


.wd-landing-copy {
    display: block;

    width: 80%;
    height: 4px;

    margin-top: 8px;

    border-radius: 10px;

    background: #d9d3ce;
}


.wd-landing-copy-short {
    width: 55%;

    margin-top: 4px;
}


.wd-landing-button {
    display: block;

    width: 50px;
    height: 15px;

    margin-top: 10px;

    border-radius: 50px;

    background: var(--tdc-orange, #f26322);
}


.wd-landing-visual {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 85px;

    border-radius: 7px;

    background: #111111;
}


.wd-landing-visual span {
    width: 35px;
    height: 35px;

    border: 7px solid var(--tdc-orange, #f26322);
    border-radius: 50%;
}


/* ==========================================================
   REDESIGN
========================================================== */

.wd-service-redesign h3 {
    color: #ffffff;
}


.wd-service-redesign > p {
    color: rgba(255,255,255,.60);
}


.wd-redesign-preview {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        40px
        minmax(0, 1fr);

    align-items: center;

    gap: 6px;

    margin: 5px 0 15px;
}


.wd-redesign-label {
    display: block;

    margin-bottom: 5px;

    color: rgba(255,255,255,.40);
}


.wd-redesign-old,
.wd-redesign-new {
    min-height: 135px;

    padding: 12px;

    border-radius: 10px;
}


.wd-redesign-old {
    display: grid;
    align-content: center;

    gap: 7px;

    background: #292929;
}


.wd-redesign-old span {
    display: block;

    height: 7px;

    border-radius: 10px;

    background: rgba(255,255,255,.12);
}


.wd-redesign-old span:nth-child(2) {
    width: 75%;
}


.wd-redesign-old span:nth-child(3) {
    width: 90%;
}


.wd-redesign-old span:nth-child(4) {
    width: 55%;
}


.wd-redesign-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 50%;

    background: var(--tdc-orange, #f26322);

    color: #ffffff;
}


.wd-redesign-new {
    display: flex;
    flex-direction: column;
    justify-content: center;

    background: #ffffff;
}


.wd-redesign-new > span {
    width: 28px;
    height: 4px;

    margin-bottom: 7px;

    background: var(--tdc-orange, #f26322);
}


.wd-redesign-new strong {
    color: #111111;
}


.wd-redesign-new strong em {
    display: block;

    color: var(--tdc-orange, #f26322);
}


.wd-redesign-new > div {
    width: 55px;
    height: 17px;

    margin-top: 10px;

    border-radius: 50px;

    background: #111111;
}


/* ==========================================================
   MAINTENANCE
========================================================== */

.wd-maintenance-visual {
    margin: 5px 0 15px;
    padding: 13px;

    border-radius: 11px;

    background: #f5f2ef;
}


.wd-maintenance-status {
    display: flex;
    align-items: center;

    gap: 10px;

    padding-bottom: 11px;

    border-bottom: 1px solid #ded8d3;
}


.wd-maintenance-dot {
    width: 11px;
    height: 11px;

    flex: 0 0 11px;

    border-radius: 50%;

    background: var(--tdc-orange, #f26322);

    box-shadow:
        0 0 0 5px rgba(242,99,34,.10);
}


.wd-maintenance-status div span,
.wd-maintenance-status div strong {
    display: block;
}


.wd-maintenance-status div span {
    color: #8a837e;
}


.wd-maintenance-status div strong {
    color: #111111;
}


.wd-maintenance-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 5px;

    margin-top: 10px;
}


.wd-maintenance-grid > div {
    padding: 9px;

    border-radius: 7px;

    background: #ffffff;
}


.wd-maintenance-grid span,
.wd-maintenance-grid strong {
    display: block;
}


.wd-maintenance-grid span {
    color: var(--tdc-orange, #f26322);
}


.wd-maintenance-grid strong {
    color: #111111;
}


/* ==========================================================
   BOTTOM
========================================================== */

.wd-services-bottom {
    display: grid;
    grid-template-columns:
        48px
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 15px;

    margin-top: 12px;
    padding: 17px 20px;

    border: 1px solid #e2dcd7;
    border-radius: 15px;

    background: #ffffff;
}


.wd-services-bottom-mark {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 11px;

    background: #111111;
}


.wd-services-bottom-mark span {
    color: var(--tdc-orange, #f26322);
}


.wd-services-bottom > div:nth-child(2) > span {
    display: block;

    margin-bottom: 2px;

    color: var(--tdc-orange, #f26322);
}


.wd-services-bottom strong {
    display: block;

    color: #111111;
}


.wd-services-bottom p {
    margin: 3px 0 0;

    color: #77706b;
}


.wd-services-bottom > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 46px;

    padding: 0 17px;

    border-radius: 50px;

    background: #111111;

    text-decoration: none;
    white-space: nowrap;

    color: #ffffff;

    transition:
        transform .3s ease,
        gap .3s ease,
        background .3s ease;
}


.wd-services-bottom > a:hover {
    transform: translateY(-2px);

    gap: 11px;

    background: var(--tdc-orange, #f26322);

    color: #ffffff;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1023px) {

    .wd-services {
        padding: 38px 0;
    }


    .wd-services-header {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .wd-services-header-copy {
        max-width: 680px;
    }


    .wd-service-featured,
    .wd-service-corporate {
        grid-column: span 6;
    }


    .wd-service-standard,
    .wd-service-ecommerce,
    .wd-service-landing {
        grid-column: span 6;
    }


    .wd-service-redesign,
    .wd-service-maintenance {
        grid-column: span 6;
    }


    .wd-services-bottom {
        grid-template-columns:
            48px
            minmax(0, 1fr);
    }


    .wd-services-bottom > a {
        grid-column: 1 / -1;

        width: 100%;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .wd-services {
        padding: 30px 0;
    }


    .wd-services-grid {
        grid-template-columns: 1fr;

        gap: 8px;
    }


    .wd-service-featured,
    .wd-service-corporate,
    .wd-service-standard,
    .wd-service-ecommerce,
    .wd-service-landing,
    .wd-service-redesign,
    .wd-service-maintenance {
        grid-column: auto;
    }


    .wd-service-featured {
        min-height: 460px;
    }


    .wd-redesign-preview {
        grid-template-columns:
            minmax(0, 1fr)
            34px
            minmax(0, 1fr);
    }


    .wd-redesign-arrow {
        width: 34px;
        height: 34px;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .wd-service-featured {
        min-height: 480px;
    }


    .wd-service-image {
        height: 150px;
    }


    .wd-redesign-preview {
        grid-template-columns: 1fr;
    }


    .wd-redesign-arrow {
        margin: 0 auto;

        transform: rotate(90deg);
    }


    .wd-services-bottom {
        grid-template-columns: 1fr;

        padding: 15px;
    }


    .wd-maintenance-grid {
        grid-template-columns: 1fr;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .wd-service,
    .wd-service-featured-image img,
    .wd-service-image img,
    .wd-services-bottom > a {
        transition: none !important;
    }

}
/* ==========================================================
   WEBSITE DESIGN & DEVELOPMENT
   SECTION 04 — UX + SEO + CONVERSION
========================================================== */

.wd-purpose {
    position: relative;
    overflow: hidden;

    padding: 50px 0;

    background: #ffffff;
}


/* ==========================================================
   HEADER
========================================================== */

.wd-purpose-header {
    display: grid;

    grid-template-columns:
        minmax(0, 60%)
        minmax(300px, 40%);

    align-items: end;

    gap: 55px;

    margin-bottom: 28px;
}


.wd-purpose-header h2 {
    max-width: 850px;

    margin: 0;

    color: var(--tdc-black, #111111);
}


.wd-purpose-header h2 span {
    display: block;

    color: var(--tdc-orange, #f26322);
}


.wd-purpose-header-copy {
    max-width: 500px;
}


.wd-purpose-header-copy p {
    margin: 0;

    color: var(--tdc-text-muted, #66615e);
}


/* ==========================================================
   MAIN LAYOUT
========================================================== */

.wd-purpose-layout {
    display: grid;

    grid-template-columns:
        minmax(350px, 43%)
        minmax(0, 57%);

    align-items: stretch;

    gap: 12px;
}


/* ==========================================================
   LEFT PILLARS
========================================================== */

.wd-purpose-pillars {
    display: grid;

    gap: 8px;
}


/* ==========================================================
   PILLAR
========================================================== */

.wd-purpose-pillar {
    display: grid;

    grid-template-columns:
        44px
        minmax(0, 1fr);

    gap: 12px;

    padding: 18px;

    border: 1px solid #e3ddd8;
    border-radius: 15px;

    background: #f8f6f3;

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease;
}


.wd-purpose-pillar:hover {
    transform: translateX(4px);

    border-color: rgba(242,99,34,.30);

    background: #ffffff;
}


/* ACTIVE */

.wd-purpose-pillar.active {
    border-color: #111111;

    background: #111111;
}


.wd-purpose-pillar.active:hover {
    border-color: #111111;

    background: #111111;
}


/* ==========================================================
   NUMBER
========================================================== */

.wd-purpose-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 10px;

    background: #111111;

    color: #ffffff;

    transition: background .3s ease;
}


.wd-purpose-pillar:hover
.wd-purpose-number {
    background: var(--tdc-orange, #f26322);
}


.wd-purpose-pillar.active
.wd-purpose-number {
    background: var(--tdc-orange, #f26322);
}


/* ==========================================================
   PILLAR CONTENT
========================================================== */

.wd-purpose-pillar-content > span {
    display: block;

    margin-bottom: 4px;

    color: var(--tdc-orange, #f26322);
}


.wd-purpose-pillar h3 {
    max-width: 520px;

    margin: 0;

    color: #111111;
}


.wd-purpose-pillar p {
    margin: 7px 0 0;

    color: #756e69;
}


/* ACTIVE TEXT */

.wd-purpose-pillar.active h3 {
    color: #ffffff;
}


.wd-purpose-pillar.active p {
    color: rgba(255,255,255,.62);
}


/* ==========================================================
   TAGS
========================================================== */

.wd-purpose-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 5px;

    margin-top: 11px;
}


.wd-purpose-tags span {
    padding: 5px 8px;

    border-radius: 50px;

    background: #ffffff;

    color: #756e69;
}


.wd-purpose-pillar.active
.wd-purpose-tags span {
    border: 1px solid rgba(255,255,255,.08);

    background: rgba(255,255,255,.06);

    color: rgba(255,255,255,.65);
}


/* ==========================================================
   RIGHT VISUAL
========================================================== */

.wd-purpose-visual {
    position: relative;

    min-height: 610px;

    overflow: hidden;

    padding: 20px;

    border-radius: 19px;

    background: #f3f0ed;
}


/* DECORATIVE CIRCLE */

.wd-purpose-visual::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    right: -140px;
    top: 90px;

    border: 55px solid rgba(242,99,34,.07);
    border-radius: 50%;
}


.wd-purpose-visual::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    left: -90px;
    bottom: -80px;

    border-radius: 50%;

    background: rgba(17,17,17,.025);
}


/* ==========================================================
   VISUAL TOP
========================================================== */

.wd-purpose-visual-top {
    position: relative;

    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding-bottom: 13px;

    border-bottom: 1px solid #ddd7d2;
}


.wd-purpose-visual-top div > span {
    display: block;

    margin-bottom: 2px;

    color: var(--tdc-orange, #f26322);
}


.wd-purpose-visual-top strong {
    display: block;

    color: #111111;
}


/* STATUS */

.wd-purpose-status {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    padding: 6px 9px;

    border-radius: 50px;

    background: #ffffff;

    color: #6e6762;
}


.wd-purpose-status i {
    display: block;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--tdc-orange, #f26322);

    box-shadow:
        0 0 0 4px rgba(242,99,34,.10);
}


/* ==========================================================
   BROWSER
========================================================== */

.wd-purpose-browser {
    position: absolute;

    z-index: 3;

    top: 90px;
    left: 45px;
    right: 35px;

    overflow: hidden;

    border: 1px solid #d8d2cd;
    border-radius: 15px;

    background: #ffffff;

    box-shadow:
        0 25px 55px rgba(17,17,17,.13);

    transform:
        perspective(1200px)
        rotateY(-2deg);

    transition: transform .5s ease;
}


.wd-purpose-visual:hover
.wd-purpose-browser {
    transform:
        perspective(1200px)
        rotateY(0deg)
        translateY(-3px);
}


/* ==========================================================
   BROWSER BAR
========================================================== */

.wd-purpose-browser-bar {
    display: grid;

    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 10px;

    min-height: 38px;

    padding: 0 10px;

    background: #eeebe8;
}


/* DOTS */

.wd-purpose-dots {
    display: flex;

    gap: 4px;
}


.wd-purpose-dots span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #bcb5b0;
}


.wd-purpose-dots span:first-child {
    background: var(--tdc-orange, #f26322);
}


/* URL */

.wd-purpose-url {
    max-width: 220px;

    margin: 0 auto;

    padding: 5px 12px;

    border-radius: 50px;

    background: #ffffff;

    text-align: center;

    color: #8a837e;
}


/* SECURE */

.wd-purpose-secure {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 23px;
    height: 23px;

    border-radius: 50%;

    background: #111111;

    color: #ffffff;
}


/* ==========================================================
   WEBSITE SCREEN
========================================================== */

.wd-purpose-screen {
    padding: 13px;

    background: #ffffff;
}


/* ==========================================================
   WEBSITE NAV
========================================================== */

.wd-purpose-nav {
    display: grid;

    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 12px;

    padding-bottom: 11px;

    border-bottom: 1px solid #eee9e5;
}


.wd-purpose-logo {
    color: #111111;
}


.wd-purpose-nav > div {
    display: flex;
    justify-content: center;

    gap: 8px;
}


.wd-purpose-nav > div span {
    width: 35px;
    height: 4px;

    border-radius: 20px;

    background: #ddd7d2;
}


.wd-purpose-nav-cta {
    width: 48px;
    height: 18px;

    border-radius: 50px;

    background: var(--tdc-orange, #f26322);
}


/* ==========================================================
   WEBSITE HERO
========================================================== */

.wd-purpose-web-hero {
    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(120px, .8fr);

    align-items: center;

    gap: 15px;

    padding: 24px 10px;
}


/* COPY */

.wd-purpose-mini {
    display: block;

    width: 40px;
    height: 4px;

    margin-bottom: 8px;

    background: var(--tdc-orange, #f26322);
}


.wd-purpose-title {
    display: block;

    width: 88%;
    height: 10px;

    margin-bottom: 5px;

    border-radius: 10px;

    background: #111111;
}


.wd-purpose-title-short {
    width: 62%;
}


.wd-purpose-copy {
    display: block;

    width: 82%;
    height: 5px;

    margin-top: 10px;

    border-radius: 10px;

    background: #dcd6d1;
}


.wd-purpose-copy-short {
    width: 58%;

    margin-top: 5px;
}


/* BUTTONS */

.wd-purpose-buttons {
    display: flex;

    gap: 5px;

    margin-top: 13px;
}


.wd-purpose-buttons span {
    width: 65px;
    height: 20px;

    border-radius: 50px;

    background: var(--tdc-orange, #f26322);
}


.wd-purpose-buttons span:last-child {
    border: 1px solid #ddd7d2;

    background: #ffffff;
}


/* ==========================================================
   WEBSITE IMAGE
========================================================== */

.wd-purpose-web-image {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 150px;

    overflow: hidden;

    border-radius: 10px;

    background: #111111;
}


.wd-purpose-web-image > div {
    position: absolute;

    width: 110px;
    height: 110px;

    border: 22px solid rgba(242,99,34,.20);
    border-radius: 50%;
}


.wd-purpose-web-image > span {
    position: relative;

    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 55px;
    height: 55px;

    border-radius: 50%;

    background: var(--tdc-orange, #f26322);

    color: #ffffff;
}


/* ==========================================================
   WEB BLOCKS
========================================================== */

.wd-purpose-web-blocks {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 6px;
}


.wd-purpose-web-blocks > div {
    padding: 10px;

    border-radius: 7px;

    background: #f5f2ef;
}


.wd-purpose-web-blocks span {
    display: block;

    margin-bottom: 2px;

    color: var(--tdc-orange, #f26322);
}


.wd-purpose-web-blocks strong {
    display: block;

    color: #111111;
}


/* ==========================================================
   SEO CARD
========================================================== */

.wd-purpose-seo {
    position: absolute;

    z-index: 6;

    left: 18px;
    bottom: 25px;

    width: 230px;

    padding: 13px;

    border-radius: 12px;

    background: #111111;

    box-shadow:
        0 18px 40px rgba(17,17,17,.20);
}


.wd-purpose-seo-head {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    margin-bottom: 8px;
    padding-bottom: 8px;

    border-bottom: 1px solid rgba(255,255,255,.08);
}


.wd-purpose-seo-head > span:first-child {
    color: var(--tdc-orange, #f26322);
}


.wd-purpose-check {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    border-radius: 50%;

    background: var(--tdc-orange, #f26322);

    color: #ffffff;
}


.wd-purpose-seo-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    padding: 5px 0;
}


.wd-purpose-seo-row span {
    color: rgba(255,255,255,.48);
}


.wd-purpose-seo-row strong {
    color: #ffffff;
}


/* ==========================================================
   CONVERSION CARD
========================================================== */

.wd-purpose-conversion {
    position: absolute;

    z-index: 7;

    right: 18px;
    bottom: 28px;

    width: 185px;

    padding: 14px;

    border-radius: 12px;

    background: var(--tdc-orange, #f26322);

    box-shadow:
        0 18px 35px rgba(242,99,34,.20);

    transform: rotate(2deg);

    transition: transform .4s ease;
}


.wd-purpose-visual:hover
.wd-purpose-conversion {
    transform:
        rotate(0deg)
        translateY(-3px);
}


.wd-purpose-conversion > span {
    display: block;

    margin-bottom: 4px;

    color: rgba(255,255,255,.65);
}


.wd-purpose-conversion strong {
    display: block;

    color: #ffffff;
}


.wd-purpose-conversion strong em {
    display: block;

    color: #111111;
}


.wd-purpose-conversion-button {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 8px;

    margin-top: 11px;
    padding: 7px 9px;

    border-radius: 50px;

    background: #111111;

    color: #ffffff;
}


/* ==========================================================
   MOBILE MOCKUP
========================================================== */

.wd-purpose-mobile {
    position: absolute;

    z-index: 5;

    top: 250px;
    right: 7px;

    width: 105px;
    height: 210px;

    padding: 6px;

    border: 2px solid #222222;
    border-radius: 20px;

    background: #111111;

    box-shadow:
        0 20px 40px rgba(17,17,17,.22);

    transform: rotate(3deg);
}


.wd-purpose-mobile-top {
    position: absolute;

    z-index: 4;

    top: 9px;
    left: 50%;

    width: 28px;
    height: 3px;

    border-radius: 20px;

    background: #292929;

    transform: translateX(-50%);
}


.wd-purpose-mobile-content {
    height: 100%;

    overflow: hidden;

    padding: 14px 7px 7px;

    border-radius: 14px;

    background: #ffffff;
}


.wd-mobile-brand {
    display: block;

    margin-bottom: 11px;

    color: #111111;
}


.wd-mobile-heading {
    display: block;

    width: 90%;
    height: 6px;

    margin-bottom: 4px;

    border-radius: 10px;

    background: #111111;
}


.wd-mobile-heading-short {
    width: 65%;
}


.wd-mobile-picture {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 62px;

    margin: 10px 0;

    border-radius: 6px;

    background: #111111;
}


.wd-mobile-picture span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    border-radius: 50%;

    background: var(--tdc-orange, #f26322);

    color: #ffffff;
}


.wd-mobile-line {
    display: block;

    width: 85%;
    height: 4px;

    margin-bottom: 4px;

    border-radius: 10px;

    background: #dcd6d1;
}


.wd-mobile-line-short {
    width: 60%;
}


.wd-mobile-button {
    display: block;

    width: 42px;
    height: 14px;

    margin-top: 9px;

    border-radius: 50px;

    background: var(--tdc-orange, #f26322);
}


/* ==========================================================
   BOTTOM
========================================================== */

.wd-purpose-bottom {
    display: grid;

    grid-template-columns:
        minmax(210px, 25%)
        minmax(0, 75%);

    align-items: center;

    gap: 20px;

    margin-top: 12px;
    padding: 15px 18px;

    border: 1px solid #e3ddd8;
    border-radius: 14px;

    background: #f8f6f3;
}


.wd-purpose-bottom-intro > span {
    display: block;

    margin-bottom: 2px;

    color: var(--tdc-orange, #f26322);
}


.wd-purpose-bottom-intro strong {
    display: block;

    color: #111111;
}


/* ==========================================================
   FLOW
========================================================== */

.wd-purpose-flow {
    display: grid;

    grid-template-columns:
        1fr auto
        1fr auto
        1fr auto
        1fr;

    align-items: center;

    gap: 5px;
}


.wd-purpose-flow > div {
    padding: 8px;

    border-radius: 8px;

    background: #ffffff;

    text-align: center;
}


.wd-purpose-flow > div span,
.wd-purpose-flow > div strong,
.wd-purpose-flow > div small {
    display: block;
}


.wd-purpose-flow > div span {
    color: var(--tdc-orange, #f26322);
}


.wd-purpose-flow > div strong {
    color: #111111;
}


.wd-purpose-flow > div small {
    margin-top: 1px;

    color: #8a837e;
}


.wd-purpose-flow > i {
    color: #c5bdb7;
}


.wd-purpose-flow-result {
    background: #111111 !important;
}


.wd-purpose-flow-result strong {
    color: #ffffff !important;
}


.wd-purpose-flow-result small {
    color: rgba(255,255,255,.50) !important;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1023px) {

    .wd-purpose {
        padding: 38px 0;
    }


    .wd-purpose-header {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .wd-purpose-header-copy {
        max-width: 680px;
    }


    .wd-purpose-layout {
        grid-template-columns:
            minmax(300px, 40%)
            minmax(0, 60%);
    }


    .wd-purpose-visual {
        min-height: 650px;
    }


    .wd-purpose-browser {
        left: 25px;
        right: 25px;
    }


    .wd-purpose-bottom {
        grid-template-columns: 1fr;

        gap: 10px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .wd-purpose {
        padding: 30px 0;
    }


    .wd-purpose-layout {
        grid-template-columns: 1fr;

        gap: 8px;
    }


    .wd-purpose-visual {
        min-height: 610px;
    }


    .wd-purpose-browser {
        top: 90px;
        left: 15px;
        right: 15px;
    }


    .wd-purpose-flow {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }


    .wd-purpose-flow > i {
        display: none;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .wd-purpose-pillar {
        grid-template-columns:
            38px
            minmax(0, 1fr);

        padding: 14px;
    }


    .wd-purpose-number {
        width: 38px;
        height: 38px;
    }


    .wd-purpose-visual {
        min-height: 670px;

        padding: 15px;
    }


    .wd-purpose-visual-top {
        align-items: flex-start;

        flex-direction: column;
    }


    .wd-purpose-browser {
        top: 120px;
        left: 10px;
        right: 10px;
    }


    .wd-purpose-web-hero {
        grid-template-columns: 1fr;
    }


    .wd-purpose-web-image {
        min-height: 100px;
    }


    .wd-purpose-mobile {
        top: 365px;

        width: 95px;
        height: 190px;
    }


    .wd-purpose-seo {
        left: 10px;
        bottom: 15px;

        width: 190px;
    }


    .wd-purpose-conversion {
        right: 10px;
        bottom: 18px;

        width: 145px;
    }


    .wd-purpose-flow {
        grid-template-columns: 1fr;
    }


    .wd-purpose-flow > div {
        text-align: left;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .wd-purpose-pillar,
    .wd-purpose-browser,
    .wd-purpose-conversion {
        transition: none !important;
    }

}
/* ==========================================================
   WEBSITE DESIGN & DEVELOPMENT
   SECTION 05 — PROCESS
========================================================== */

.wd-process {
    position: relative;
    overflow: hidden;

    padding: 50px 0;

    background: #f8f6f3;
}


/* ==========================================================
   HEADER
========================================================== */

.wd-process-header {
    display: grid;

    grid-template-columns:
        minmax(0, 60%)
        minmax(300px, 40%);

    align-items: end;

    gap: 55px;

    margin-bottom: 28px;
}


.wd-process-header h2 {
    max-width: 820px;

    margin: 0;

    color: var(--tdc-black, #111111);
}


.wd-process-header h2 span {
    display: block;

    color: var(--tdc-orange, #f26322);
}


.wd-process-header-copy {
    max-width: 500px;
}


.wd-process-header-copy p {
    margin: 0;

    color: var(--tdc-text-muted, #66615e);
}


/* ==========================================================
   WRAPPER
========================================================== */

.wd-process-wrapper {
    overflow: hidden;

    border: 1px solid #dfd9d4;
    border-radius: 18px;

    background: #ffffff;
}


/* ==========================================================
   STATUS
========================================================== */

.wd-process-status {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding: 14px 17px;

    border-bottom: 1px solid #e5dfda;

    background: #111111;
}


.wd-process-status > div:first-child > span {
    display: block;

    margin-bottom: 1px;

    color: var(--tdc-orange, #f26322);
}


.wd-process-status strong {
    display: block;

    color: #ffffff;
}


.wd-process-status-right {
    display: flex;
    align-items: center;

    gap: 7px;

    color: rgba(255,255,255,.55);
}


.wd-process-status-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--tdc-orange, #f26322);

    box-shadow:
        0 0 0 5px rgba(242,99,34,.12);
}


/* ==========================================================
   GRID
========================================================== */

.wd-process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));
}


/* ==========================================================
   STEP
========================================================== */

.wd-process-step {
    position: relative;

    min-height: 330px;

    padding: 17px;

    border-right: 1px solid #e8e3df;
    border-bottom: 1px solid #e8e3df;

    background: #ffffff;

    transition:
        background .3s ease,
        transform .3s ease;
}


.wd-process-step:nth-child(4n) {
    border-right: 0;
}


.wd-process-step:nth-child(n+5) {
    border-bottom: 0;
}


.wd-process-step:hover {
    background: #faf8f6;
}


/* TOP */

.wd-process-step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 8px;

    margin-bottom: 15px;
}


.wd-process-num {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border-radius: 8px;

    background: #111111;

    color: #ffffff;
}


.wd-process-phase {
    padding: 5px 7px;

    border-radius: 50px;

    background: #f4f0ed;

    color: #837b75;
}


/* ==========================================================
   GENERIC SYMBOL
========================================================== */

.wd-process-symbol {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 75px;

    margin-bottom: 13px;

    border-radius: 10px;

    background: #f5f2ef;
}


.wd-process-symbol span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: var(--tdc-orange, #f26322);

    color: #ffffff;
}


/* ==========================================================
   STEP CONTENT
========================================================== */

.wd-process-step h3 {
    margin: 0;

    color: #111111;
}


.wd-process-step > p {
    margin: 6px 0 0;

    color: #756e69;
}


/* ==========================================================
   OUTPUT
========================================================== */

.wd-process-output {
    margin-top: 13px;
    padding-top: 10px;

    border-top: 1px solid #e9e4e0;
}


.wd-process-output span,
.wd-process-output strong {
    display: block;
}


.wd-process-output span {
    margin-bottom: 2px;

    color: var(--tdc-orange, #f26322);
}


.wd-process-output strong {
    color: #111111;
}


/* ==========================================================
   WIREFRAME
========================================================== */

.wd-process-wireframe {
    height: 75px;

    margin-bottom: 13px;
    padding: 8px;

    border: 1px solid #ddd7d2;
    border-radius: 9px;

    background: #ffffff;
}


.wd-wire-nav {
    width: 100%;
    height: 7px;

    margin-bottom: 6px;

    border-radius: 3px;

    background: #ded8d3;
}


.wd-wire-hero {
    display: grid;

    grid-template-columns:
        1fr
        40px;

    gap: 6px;
}


.wd-wire-hero > div:first-child {
    display: grid;

    align-content: center;

    gap: 4px;
}


.wd-wire-hero > div:first-child span {
    display: block;

    height: 4px;

    border-radius: 5px;

    background: #cfc8c3;
}


.wd-wire-hero > div:first-child span:nth-child(2) {
    width: 75%;
}


.wd-wire-hero > div:first-child span:last-child {
    width: 50%;

    background: var(--tdc-orange, #f26322);
}


.wd-wire-hero > div:last-child {
    min-height: 28px;

    border-radius: 4px;

    background: #eeeae7;
}


.wd-wire-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 3px;

    margin-top: 5px;
}


.wd-wire-boxes span {
    height: 10px;

    border-radius: 3px;

    background: #eeeae7;
}


/* ==========================================================
   DESIGN PREVIEW
========================================================== */

.wd-process-highlight {
    background: #fff8f4;
}


.wd-process-design {
    height: 75px;

    margin-bottom: 13px;
}


.wd-design-browser {
    height: 100%;

    overflow: hidden;

    border-radius: 9px;

    background: #ffffff;

    box-shadow:
        0 8px 20px rgba(17,17,17,.08);
}


.wd-design-browser-top {
    display: flex;

    gap: 3px;

    padding: 6px;

    background: #eae5e1;
}


.wd-design-browser-top span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #aaa39e;
}


.wd-design-browser-top span:first-child {
    background: var(--tdc-orange, #f26322);
}


.wd-design-browser-body {
    padding: 8px;
}


.wd-design-mini {
    display: block;

    width: 25px;
    height: 3px;

    margin-bottom: 4px;

    background: var(--tdc-orange, #f26322);
}


.wd-design-heading {
    display: block;

    width: 70%;
    height: 5px;

    margin-bottom: 3px;

    border-radius: 4px;

    background: #111111;
}


.wd-design-heading.short {
    width: 45%;
}


.wd-design-browser-body > div {
    display: flex;

    gap: 4px;

    margin-top: 6px;
}


.wd-design-browser-body > div span {
    width: 35px;
    height: 10px;

    border-radius: 10px;

    background: var(--tdc-orange, #f26322);
}


.wd-design-browser-body > div span:last-child {
    border: 1px solid #ddd7d2;

    background: #ffffff;
}


/* ==========================================================
   DEVELOPMENT CARD
========================================================== */

.wd-process-dark {
    background: #111111;
}


.wd-process-dark:hover {
    background: #161616;
}


.wd-process-dark .wd-process-num {
    background: var(--tdc-orange, #f26322);
}


.wd-process-dark .wd-process-phase {
    background: rgba(255,255,255,.07);

    color: rgba(255,255,255,.55);
}


.wd-process-dark h3 {
    color: #ffffff;
}


.wd-process-dark > p {
    color: rgba(255,255,255,.58);
}


.wd-process-dark .wd-process-output {
    border-color: rgba(255,255,255,.08);
}


.wd-process-dark .wd-process-output strong {
    color: #ffffff;
}


/* CODE */

.wd-process-code {
    display: grid;

    align-content: center;

    gap: 6px;

    height: 75px;

    margin-bottom: 13px;
    padding: 10px;

    border-radius: 9px;

    background: #1b1b1b;
}


.wd-process-code span {
    display: block;

    width: 78%;
    height: 4px;

    border-radius: 10px;

    background: rgba(255,255,255,.14);
}


.wd-process-code .orange {
    background: var(--tdc-orange, #f26322);
}


.wd-process-code .indent {
    width: 62%;

    margin-left: 16px;
}


.wd-process-code .short {
    width: 40%;
}


.wd-process-code .medium {
    width: 55%;
}


/* ==========================================================
   TEST
========================================================== */

.wd-process-test {
    display: grid;

    gap: 4px;

    height: 75px;

    margin-bottom: 13px;
}


.wd-process-test > div {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    padding: 5px 8px;

    border-radius: 6px;

    background: #f5f2ef;
}


.wd-process-test span {
    color: #756e69;
}


.wd-process-test strong {
    color: var(--tdc-orange, #f26322);
}


/* ==========================================================
   LAUNCH
========================================================== */

.wd-process-launch {
    display: flex;
    align-items: center;

    gap: 10px;

    height: 75px;

    margin-bottom: 13px;
    padding: 10px;

    border-radius: 9px;

    background: #f5f2ef;
}


.wd-launch-circle {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    border-radius: 50%;

    background: var(--tdc-orange, #f26322);

    color: #ffffff;
}


.wd-process-launch > span {
    color: #111111;
}


/* ==========================================================
   OPTIMIZE
========================================================== */

.wd-process-final {
    background: #fff8f4;
}


.wd-process-growth {
    position: relative;

    display: flex;
    align-items: flex-end;

    gap: 6px;

    height: 75px;

    margin-bottom: 13px;
    padding: 10px;

    overflow: hidden;

    border-radius: 9px;

    background: #111111;
}


.wd-process-growth .bar {
    display: block;

    width: 18px;

    border-radius: 4px 4px 0 0;

    background: rgba(255,255,255,.15);
}


.wd-process-growth .bar-1 {
    height: 18px;
}


.wd-process-growth .bar-2 {
    height: 29px;
}


.wd-process-growth .bar-3 {
    height: 40px;
}


.wd-process-growth .bar-4 {
    height: 52px;

    background: var(--tdc-orange, #f26322);
}


.wd-process-growth i {
    position: absolute;

    right: 15px;
    top: 16px;

    color: var(--tdc-orange, #f26322);
}


/* ==========================================================
   BOTTOM
========================================================== */

.wd-process-bottom {
    display: grid;

    grid-template-columns:
        minmax(280px, 38%)
        minmax(0, 62%);

    align-items: center;

    gap: 20px;

    margin-top: 12px;
    padding: 15px 18px;

    border: 1px solid #e1dbd6;
    border-radius: 14px;

    background: #ffffff;
}


.wd-process-bottom-copy > span {
    display: block;

    margin-bottom: 2px;

    color: var(--tdc-orange, #f26322);
}


.wd-process-bottom-copy strong {
    display: block;

    color: #111111;
}


/* ==========================================================
   JOURNEY
========================================================== */

.wd-process-journey {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 8px;
}


.wd-process-journey span {
    padding: 7px 10px;

    border-radius: 50px;

    background: #f4f0ed;

    color: #6f6863;
}


.wd-process-journey i {
    color: #c4bdb8;
}


.wd-process-journey
.wd-process-journey-final {
    background: var(--tdc-orange, #f26322);

    color: #ffffff;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1023px) {

    .wd-process {
        padding: 38px 0;
    }


    .wd-process-header {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .wd-process-header-copy {
        max-width: 680px;
    }


    .wd-process-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .wd-process-step {
        border-right: 1px solid #e8e3df;
        border-bottom: 1px solid #e8e3df;
    }


    .wd-process-step:nth-child(2n) {
        border-right: 0;
    }


    .wd-process-step:nth-child(n+7) {
        border-bottom: 0;
    }


    .wd-process-bottom {
        grid-template-columns: 1fr;

        gap: 10px;
    }


    .wd-process-journey {
        justify-content: flex-start;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .wd-process {
        padding: 30px 0;
    }


    .wd-process-grid {
        grid-template-columns: 1fr;
    }


    .wd-process-step {
        min-height: auto;

        border-right: 0 !important;
        border-bottom: 1px solid #e8e3df !important;
    }


    .wd-process-step:last-child {
        border-bottom: 0 !important;
    }


    .wd-process-journey {
        display: grid;

        grid-template-columns:
            repeat(5, minmax(0, 1fr));

        gap: 5px;
    }


    .wd-process-journey i {
        display: none;
    }


    .wd-process-journey span {
        padding: 7px 5px;

        text-align: center;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .wd-process-status {
        align-items: flex-start;

        flex-direction: column;
    }


    .wd-process-step {
        padding: 15px;
    }


    .wd-process-journey {
        grid-template-columns: 1fr;
    }


    .wd-process-journey span {
        text-align: left;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .wd-process-step {
        transition: none !important;
    }

}
/* ==========================================================
   WEBSITE DESIGN & DEVELOPMENT
   SECTION 06 — WHY CHOOSE THE DIGITAL CAFE
========================================================== */

.wd-why {
    position: relative;
    overflow: hidden;

    padding: 50px 0;

    background: #111111;
}


/* subtle grid */

.wd-why::before {
    content: "";

    position: absolute;
    inset: 0;

    opacity: .04;

    background-image:
        linear-gradient(
            rgba(255,255,255,.8) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.8) 1px,
            transparent 1px
        );

    background-size: 45px 45px;

    pointer-events: none;
}


/* ==========================================================
   HEADER
========================================================== */

.wd-why-header {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 60%)
        minmax(300px, 40%);

    align-items: end;

    gap: 55px;

    margin-bottom: 28px;
}


.wd-why-header h2 {
    max-width: 850px;

    margin: 0;

    color: #ffffff;
}


.wd-why-header h2 span {
    display: block;

    color: var(--tdc-orange, #f26322);
}


.wd-why-header-copy {
    max-width: 500px;
}


.wd-why-header-copy p {
    margin: 0;

    color: rgba(255,255,255,.58);
}


/* ==========================================================
   MAIN LAYOUT
========================================================== */

.wd-why-layout {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(240px, 29%)
        minmax(330px, 42%)
        minmax(240px, 29%);

    align-items: stretch;

    gap: 8px;
}


/* ==========================================================
   SIDE
========================================================== */

.wd-why-side {
    display: grid;

    gap: 8px;
}


/* ==========================================================
   ITEM
========================================================== */

.wd-why-item {
    padding: 15px;

    border: 1px solid rgba(255,255,255,.09);
    border-radius: 14px;

    background: rgba(255,255,255,.045);

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease;
}


.wd-why-item:hover {
    transform: translateY(-3px);

    border-color: rgba(242,99,34,.32);

    background: rgba(255,255,255,.065);
}


/* ==========================================================
   ITEM TOP
========================================================== */

.wd-why-item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 8px;

    margin-bottom: 12px;
}


.wd-why-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border-radius: 8px;

    background: var(--tdc-orange, #f26322);

    color: #ffffff;
}


.wd-why-category {
    padding: 5px 7px;

    border-radius: 50px;

    background: rgba(255,255,255,.06);

    color: rgba(255,255,255,.45);
}


/* ==========================================================
   ITEM CONTENT
========================================================== */

.wd-why-item h3 {
    margin: 0;

    color: #ffffff;
}


.wd-why-item p {
    margin: 7px 0 0;

    color: rgba(255,255,255,.56);
}


/* ==========================================================
   ITEM BOTTOM
========================================================== */

.wd-why-item-bottom {
    display: flex;
    flex-wrap: wrap;

    gap: 4px;

    margin-top: 12px;
    padding-top: 10px;

    border-top: 1px solid rgba(255,255,255,.07);
}


.wd-why-item-bottom span {
    padding: 5px 7px;

    border-radius: 50px;

    background: rgba(255,255,255,.055);

    color: rgba(255,255,255,.55);
}


/* FEATURED */

.wd-why-item-featured {
    border-color: rgba(242,99,34,.28);

    background: rgba(242,99,34,.08);
}


/* ==========================================================
   CENTER
========================================================== */

.wd-why-center {
    position: relative;

    min-height: 570px;

    overflow: hidden;

    padding: 17px;

    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;

    background:
        radial-gradient(
            circle at center,
            rgba(242,99,34,.10),
            transparent 55%
        ),
        #171717;
}


/* ==========================================================
   CENTER TOP
========================================================== */

.wd-why-center-top {
    position: relative;
    z-index: 8;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    padding-bottom: 12px;

    border-bottom: 1px solid rgba(255,255,255,.08);
}


.wd-why-center-top > span:first-child {
    color: var(--tdc-orange, #f26322);
}


.wd-why-center-status {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    padding: 5px 8px;

    border-radius: 50px;

    background: rgba(255,255,255,.06);

    color: rgba(255,255,255,.55);
}


.wd-why-center-status i {
    display: block;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--tdc-orange, #f26322);

    box-shadow:
        0 0 0 4px rgba(242,99,34,.10);
}


/* ==========================================================
   SYSTEM
========================================================== */

.wd-why-system {
    position: absolute;

    top: 70px;
    left: 50%;

    width: 390px;
    height: 390px;

    transform: translateX(-50%);
}


/* ==========================================================
   RINGS
========================================================== */

.wd-why-ring {
    position: absolute;

    top: 50%;
    left: 50%;

    border-radius: 50%;

    transform: translate(-50%, -50%);
}


.wd-why-ring.ring-one {
    width: 290px;
    height: 290px;

    border: 1px dashed rgba(255,255,255,.13);
}


.wd-why-ring.ring-two {
    width: 385px;
    height: 385px;

    border: 1px solid rgba(242,99,34,.10);
}


/* ==========================================================
   CENTER BRAND
========================================================== */

.wd-why-brand {
    position: absolute;

    z-index: 5;

    top: 50%;
    left: 50%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 155px;
    height: 155px;

    padding: 15px;

    border: 1px solid rgba(242,99,34,.30);
    border-radius: 50%;

    background: #111111;

    box-shadow:
        0 0 0 12px rgba(242,99,34,.035),
        0 20px 45px rgba(0,0,0,.30);

    text-align: center;

    transform: translate(-50%, -50%);
}


.wd-why-brand > span {
    display: block;

    margin-bottom: 3px;

    color: rgba(255,255,255,.38);
}


.wd-why-brand strong {
    display: block;

    color: #ffffff;
}


.wd-why-brand strong em {
    display: block;

    color: var(--tdc-orange, #f26322);
}


.wd-why-brand small {
    display: block;

    margin-top: 5px;

    color: rgba(255,255,255,.38);
}


/* ==========================================================
   ORBIT ITEMS
========================================================== */

.wd-why-orbit {
    position: absolute;

    z-index: 6;

    min-width: 105px;

    padding: 9px 10px;

    border: 1px solid rgba(255,255,255,.09);
    border-radius: 10px;

    background: #222222;

    box-shadow:
        0 12px 25px rgba(0,0,0,.18);

    text-align: center;
}


.wd-why-orbit span,
.wd-why-orbit strong {
    display: block;
}


.wd-why-orbit span {
    color: var(--tdc-orange, #f26322);
}


.wd-why-orbit strong {
    color: #ffffff;
}


/* POSITIONS */

.wd-why-orbit.orbit-1 {
    top: 8px;
    left: 50%;

    transform: translateX(-50%);
}


.wd-why-orbit.orbit-2 {
    top: 50%;
    right: 0;

    transform: translateY(-50%);
}


.wd-why-orbit.orbit-3 {
    bottom: 8px;
    left: 50%;

    transform: translateX(-50%);
}


.wd-why-orbit.orbit-4 {
    top: 50%;
    left: 0;

    transform: translateY(-50%);
}


/* ==========================================================
   CONNECTION LINES
========================================================== */

.wd-why-line {
    position: absolute;

    z-index: 2;

    display: block;

    background: rgba(242,99,34,.24);
}


.wd-why-line.line-1,
.wd-why-line.line-3 {
    left: 50%;

    width: 1px;
    height: 75px;

    transform: translateX(-50%);
}


.wd-why-line.line-1 {
    top: 65px;
}


.wd-why-line.line-3 {
    bottom: 65px;
}


.wd-why-line.line-2,
.wd-why-line.line-4 {
    top: 50%;

    width: 75px;
    height: 1px;

    transform: translateY(-50%);
}


.wd-why-line.line-2 {
    right: 70px;
}


.wd-why-line.line-4 {
    left: 70px;
}


/* ==========================================================
   CENTER BOTTOM
========================================================== */

.wd-why-center-bottom {
    position: absolute;

    z-index: 8;

    left: 17px;
    right: 17px;
    bottom: 17px;

    padding: 11px;

    border: 1px solid rgba(255,255,255,.07);
    border-radius: 9px;

    background: rgba(255,255,255,.04);

    text-align: center;
}


.wd-why-center-bottom span,
.wd-why-center-bottom strong {
    display: block;
}


.wd-why-center-bottom span {
    margin-bottom: 2px;

    color: var(--tdc-orange, #f26322);
}


.wd-why-center-bottom strong {
    color: #ffffff;
}


/* ==========================================================
   BOTTOM CTA
========================================================== */

.wd-why-bottom {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        48px
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 14px;

    margin-top: 12px;
    padding: 16px 18px;

    border: 1px solid rgba(255,255,255,.10);
    border-radius: 14px;

    background: rgba(255,255,255,.045);
}


/* ICON */

.wd-why-bottom-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 10px;

    background: var(--tdc-orange, #f26322);
}


.wd-why-bottom-icon span {
    color: #ffffff;
}


/* COPY */

.wd-why-bottom-copy > span {
    display: block;

    margin-bottom: 2px;

    color: var(--tdc-orange, #f26322);
}


.wd-why-bottom-copy strong {
    display: block;

    color: #ffffff;
}


/* CTA */

.wd-why-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 46px;

    padding: 0 17px;

    border-radius: 50px;

    background: #ffffff;

    text-decoration: none;
    white-space: nowrap;

    color: #111111;

    transition:
        transform .3s ease,
        gap .3s ease,
        background .3s ease,
        color .3s ease;
}


.wd-why-cta:hover {
    transform: translateY(-2px);

    gap: 11px;

    background: var(--tdc-orange, #f26322);

    color: #ffffff;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1023px) {

    .wd-why {
        padding: 38px 0;
    }


    .wd-why-header {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .wd-why-header-copy {
        max-width: 680px;
    }


    .wd-why-layout {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .wd-why-center {
        grid-column: 1 / -1;
        grid-row: 1;

        min-height: 560px;
    }


    .wd-why-bottom {
        grid-template-columns:
            48px
            minmax(0, 1fr);
    }


    .wd-why-cta {
        grid-column: 1 / -1;

        width: 100%;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .wd-why {
        padding: 30px 0;
    }


    .wd-why-layout {
        grid-template-columns: 1fr;

        gap: 8px;
    }


    .wd-why-center {
        grid-column: auto;
        grid-row: auto;

        min-height: 530px;
    }


    .wd-why-system {
        width: 350px;
        height: 350px;

        top: 75px;
    }


    .wd-why-ring.ring-one {
        width: 260px;
        height: 260px;
    }


    .wd-why-ring.ring-two {
        width: 345px;
        height: 345px;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .wd-why-center {
        min-height: 480px;

        padding: 14px;
    }


    .wd-why-system {
        top: 80px;

        width: 290px;
        height: 290px;
    }


    .wd-why-ring.ring-one {
        width: 215px;
        height: 215px;
    }


    .wd-why-ring.ring-two {
        width: 285px;
        height: 285px;
    }


    .wd-why-brand {
        width: 125px;
        height: 125px;
    }


    .wd-why-orbit {
        min-width: 82px;

        padding: 7px;
    }


    .wd-why-line.line-1,
    .wd-why-line.line-3 {
        height: 55px;
    }


    .wd-why-line.line-1 {
        top: 55px;
    }


    .wd-why-line.line-3 {
        bottom: 55px;
    }


    .wd-why-line.line-2,
    .wd-why-line.line-4 {
        width: 52px;
    }


    .wd-why-line.line-2 {
        right: 58px;
    }


    .wd-why-line.line-4 {
        left: 58px;
    }


    .wd-why-center-bottom {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }


    .wd-why-bottom {
        grid-template-columns: 1fr;

        padding: 15px;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .wd-why-item,
    .wd-why-cta {
        transition: none !important;
    }

}
/* ==========================================================
   WEBSITE DESIGN & DEVELOPMENT
   SECTION 07 — FAQ
========================================================== */

.wd-faq {
    position: relative;
    overflow: hidden;

    padding: 50px 0;

    background: #ffffff;
}


/* ==========================================================
   HEADER
========================================================== */

.wd-faq-header {
    display: grid;

    grid-template-columns:
        minmax(0, 60%)
        minmax(300px, 40%);

    align-items: end;

    gap: 55px;

    margin-bottom: 28px;
}


.wd-faq-header h2 {
    max-width: 820px;

    margin: 0;

    color: var(--tdc-black, #111111);
}


.wd-faq-header h2 span {
    display: block;

    color: var(--tdc-orange, #f26322);
}


.wd-faq-header-copy {
    max-width: 500px;
}


.wd-faq-header-copy p {
    margin: 0;

    color: var(--tdc-text-muted, #66615e);
}


/* ==========================================================
   LAYOUT
========================================================== */

.wd-faq-layout {
    display: grid;

    grid-template-columns:
        minmax(270px, 31%)
        minmax(0, 69%);

    align-items: start;

    gap: 12px;
}


/* ==========================================================
   LEFT ASIDE
========================================================== */

.wd-faq-aside {
    position: relative;
}


.wd-faq-aside-inner {
    position: sticky;

    top: 100px;

    overflow: hidden;

    padding: 22px;

    border-radius: 17px;

    background: #111111;
}


/* decorative shape */

.wd-faq-aside-inner::before {
    content: "";

    position: absolute;

    width: 200px;
    height: 200px;

    right: -100px;
    top: -90px;

    border: 35px solid rgba(242,99,34,.10);
    border-radius: 50%;
}


.wd-faq-aside-inner::after {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    left: -70px;
    bottom: -60px;

    border-radius: 50%;

    background: rgba(242,99,34,.06);
}


.wd-faq-aside-label,
.wd-faq-aside-inner h3,
.wd-faq-aside-inner > p,
.wd-faq-mini-flow,
.wd-faq-aside-cta {
    position: relative;

    z-index: 2;
}


.wd-faq-aside-label {
    display: block;

    margin-bottom: 7px;

    color: var(--tdc-orange, #f26322);
}


.wd-faq-aside-inner h3 {
    margin: 0;

    color: #ffffff;
}


.wd-faq-aside-inner > p {
    margin: 9px 0 0;

    color: rgba(255,255,255,.60);
}


/* ==========================================================
   MINI FLOW
========================================================== */

.wd-faq-mini-flow {
    display: grid;

    gap: 6px;

    margin-top: 22px;
}


.wd-faq-mini-flow > div {
    display: grid;

    grid-template-columns:
        34px
        minmax(0, 1fr);

    align-items: center;

    gap: 9px;

    padding: 9px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 9px;

    background: rgba(255,255,255,.05);
}


.wd-faq-mini-flow > div > span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border-radius: 8px;

    background: var(--tdc-orange, #f26322);

    color: #ffffff;
}


.wd-faq-mini-flow strong,
.wd-faq-mini-flow small {
    display: block;
}


.wd-faq-mini-flow strong {
    color: #ffffff;
}


.wd-faq-mini-flow small {
    margin-top: 1px;

    color: rgba(255,255,255,.42);
}


.wd-faq-mini-flow > i {
    margin-left: 16px;

    color: rgba(255,255,255,.20);
}


/* ==========================================================
   ASIDE CTA
========================================================== */

.wd-faq-aside-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    min-height: 48px;

    margin-top: 20px;
    padding: 0 15px;

    border-radius: 50px;

    background: var(--tdc-orange, #f26322);

    text-decoration: none;

    color: #ffffff;

    transition:
        transform .3s ease,
        background .3s ease;
}


.wd-faq-aside-cta:hover {
    transform: translateY(-2px);

    background: #ffffff;

    color: #111111;
}


/* ==========================================================
   FAQ LIST
========================================================== */

.wd-faq-list {
    overflow: hidden;

    border: 1px solid #e2dcd7;
    border-radius: 17px;

    background: #ffffff;
}


/* ==========================================================
   FAQ ITEM
========================================================== */

.wd-faq-item {
    border-bottom: 1px solid #e7e2de;

    background: #ffffff;

    transition: background .3s ease;
}


.wd-faq-item:last-child {
    border-bottom: 0;
}


.wd-faq-item.active {
    background: #f8f6f3;
}


/* ==========================================================
   QUESTION
========================================================== */

.wd-faq-question {
    display: grid;

    grid-template-columns:
        38px
        minmax(0, 1fr)
        34px;

    align-items: center;

    gap: 12px;

    width: 100%;

    padding: 15px 17px;

    border: 0;

    background: transparent;

    text-align: left;

    cursor: pointer;
}


/* NUMBER */

.wd-faq-question-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 9px;

    background: #f3efec;

    color: #827a74;

    transition:
        background .3s ease,
        color .3s ease;
}


.wd-faq-item.active
.wd-faq-question-number {
    background: var(--tdc-orange, #f26322);

    color: #ffffff;
}


/* QUESTION TEXT */

.wd-faq-question-text {
    color: #111111;
}


/* TOGGLE */

.wd-faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border-radius: 50%;

    background: #111111;

    color: #ffffff;

    transition:
        transform .3s ease,
        background .3s ease;
}


.wd-faq-item.active
.wd-faq-toggle {
    background: var(--tdc-orange, #f26322);
}


/* ==========================================================
   ANSWER
========================================================== */

.wd-faq-answer {
    display: grid;

    grid-template-rows: 0fr;

    overflow: hidden;

    transition: grid-template-rows .35s ease;
}


.wd-faq-item.active
.wd-faq-answer {
    grid-template-rows: 1fr;
}


.wd-faq-answer-inner {
    min-height: 0;
}


.wd-faq-answer-inner p {
    margin: 0;

    padding:
        0
        65px
        17px
        67px;

    color: #6f6863;
}


/* ==========================================================
   HOVER
========================================================== */

.wd-faq-item:not(.active):hover {
    background: #fcfaf8;
}


.wd-faq-item:not(.active):hover
.wd-faq-question-number {
    background: rgba(242,99,34,.10);

    color: var(--tdc-orange, #f26322);
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1023px) {

    .wd-faq {
        padding: 38px 0;
    }


    .wd-faq-header {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .wd-faq-header-copy {
        max-width: 680px;
    }


    .wd-faq-layout {
        grid-template-columns:
            minmax(240px, 32%)
            minmax(0, 68%);
    }


    .wd-faq-aside-inner {
        padding: 18px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .wd-faq {
        padding: 30px 0;
    }


    .wd-faq-layout {
        grid-template-columns: 1fr;

        gap: 8px;
    }


    .wd-faq-aside-inner {
        position: relative;

        top: auto;
    }


    .wd-faq-mini-flow {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 5px;
    }


    .wd-faq-mini-flow > div {
        grid-template-columns: 1fr;

        text-align: center;
    }


    .wd-faq-mini-flow > div > span {
        margin: 0 auto;
    }


    .wd-faq-mini-flow > i {
        display: none;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .wd-faq-mini-flow {
        grid-template-columns: 1fr;
    }


    .wd-faq-mini-flow > div {
        grid-template-columns:
            34px
            minmax(0, 1fr);

        text-align: left;
    }


    .wd-faq-mini-flow > div > span {
        margin: 0;
    }


    .wd-faq-question {
        grid-template-columns:
            34px
            minmax(0, 1fr)
            30px;

        gap: 8px;

        padding: 13px 12px;
    }


    .wd-faq-question-number {
        width: 34px;
        height: 34px;
    }


    .wd-faq-toggle {
        width: 30px;
        height: 30px;
    }


    .wd-faq-answer-inner p {
        padding:
            0
            45px
            15px
            54px;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .wd-faq-answer,
    .wd-faq-question-number,
    .wd-faq-toggle,
    .wd-faq-aside-cta {
        transition: none !important;
    }

}
/* ==========================================================
   WEBSITE DESIGN & DEVELOPMENT
   SECTION 08 — FINAL CTA
========================================================== */

.wd-final-cta {
    position: relative;
    overflow: hidden;

    padding: 50px 0;

    background: #f8f6f3;
}


/* ==========================================================
   MAIN BOX
========================================================== */

.wd-final-box {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 56%)
        minmax(340px, 44%);

    align-items: stretch;

    gap: 35px;

    overflow: hidden;

    padding: 42px;

    border-radius: 22px;

    background: #111111;
}


/* ==========================================================
   DECORATION
========================================================== */

.wd-final-shape {
    position: absolute;

    display: block;

    border-radius: 50%;

    pointer-events: none;
}


.wd-final-shape-one {
    width: 330px;
    height: 330px;

    top: -190px;
    left: 32%;

    border: 55px solid rgba(242,99,34,.07);
}


.wd-final-shape-two {
    width: 230px;
    height: 230px;

    left: -120px;
    bottom: -130px;

    background: rgba(242,99,34,.05);
}


/* ==========================================================
   LEFT CONTENT
========================================================== */

.wd-final-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;

    max-width: 700px;
}


.wd-final-content h2 {
    max-width: 680px;

    margin: 0;

    color: #ffffff;
}


.wd-final-content h2 span {
    display: block;

    color: var(--tdc-orange, #f26322);
}


.wd-final-content > p {
    max-width: 630px;

    margin: 13px 0 0;

    color: rgba(255,255,255,.60);
}


/* ==========================================================
   ACTIONS
========================================================== */

.wd-final-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 24px;
}


.wd-final-primary,
.wd-final-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 48px;

    padding: 0 18px;

    border-radius: 50px;

    text-decoration: none;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease,
        gap .3s ease;
}


/* PRIMARY */

.wd-final-primary {
    background: var(--tdc-orange, #f26322);

    color: #ffffff;
}


.wd-final-primary:hover {
    gap: 13px;

    transform: translateY(-2px);

    background: #ffffff;

    color: #111111;
}


/* SECONDARY */

.wd-final-secondary {
    border: 1px solid rgba(255,255,255,.13);

    background: rgba(255,255,255,.055);

    color: #ffffff;
}


.wd-final-secondary:hover {
    transform: translateY(-2px);

    border-color: rgba(255,255,255,.30);

    background: rgba(255,255,255,.10);
}


/* ==========================================================
   TRUST LINE
========================================================== */

.wd-final-trust {
    display: flex;
    flex-wrap: wrap;

    gap: 7px 14px;

    margin-top: 22px;
    padding-top: 18px;

    border-top: 1px solid rgba(255,255,255,.08);
}


.wd-final-trust span {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    color: rgba(255,255,255,.50);
}


.wd-final-trust i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 17px;
    height: 17px;

    border-radius: 50%;

    background: rgba(242,99,34,.13);

    color: var(--tdc-orange, #f26322);
}


/* ==========================================================
   RIGHT PANEL
========================================================== */

.wd-final-panel {
    position: relative;
    z-index: 3;

    display: flex;
    flex-direction: column;

    padding: 18px;

    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;

    background: #1a1a1a;

    box-shadow:
        0 25px 55px rgba(0,0,0,.22);
}


/* ==========================================================
   PANEL TOP
========================================================== */

.wd-final-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding-bottom: 13px;

    border-bottom: 1px solid rgba(255,255,255,.08);
}


.wd-final-panel-top div > span {
    display: block;

    margin-bottom: 2px;

    color: var(--tdc-orange, #f26322);
}


.wd-final-panel-top strong {
    display: block;

    color: #ffffff;
}


/* LIVE */

.wd-final-live {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    padding: 6px 9px;

    border-radius: 50px;

    background: rgba(255,255,255,.06);

    color: rgba(255,255,255,.55);
}


.wd-final-live i {
    display: block;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--tdc-orange, #f26322);

    box-shadow:
        0 0 0 4px rgba(242,99,34,.10);
}


/* ==========================================================
   PROJECT FLOW
========================================================== */

.wd-final-flow {
    flex: 1;

    padding: 17px 0;
}


.wd-final-flow-item {
    display: grid;

    grid-template-columns:
        42px
        minmax(0, 1fr);

    align-items: center;

    gap: 11px;
}


/* NUMBER */

.wd-final-flow-num {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border: 1px solid rgba(255,255,255,.10);
    border-radius: 10px;

    background: rgba(255,255,255,.05);

    color: rgba(255,255,255,.55);
}


/* CONTENT */

.wd-final-flow-item > div > span {
    display: block;

    margin-bottom: 1px;

    color: var(--tdc-orange, #f26322);
}


.wd-final-flow-item strong {
    display: block;

    color: #ffffff;
}


.wd-final-flow-item small {
    display: block;

    margin-top: 2px;

    color: rgba(255,255,255,.42);
}


/* LINE */

.wd-final-flow-line {
    width: 1px;
    height: 16px;

    margin: 4px 0 4px 21px;

    background: rgba(255,255,255,.10);
}


/* ACTIVE STEP */

.wd-final-flow-active {
    padding: 10px;

    margin: 0 -10px;

    border: 1px solid rgba(242,99,34,.18);
    border-radius: 11px;

    background: rgba(242,99,34,.07);
}


.wd-final-flow-active
.wd-final-flow-num {
    border-color: var(--tdc-orange, #f26322);

    background: var(--tdc-orange, #f26322);

    color: #ffffff;
}


/* ==========================================================
   PANEL BOTTOM
========================================================== */

.wd-final-panel-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    padding-top: 13px;

    border-top: 1px solid rgba(255,255,255,.08);
}


.wd-final-panel-bottom div > span {
    display: block;

    margin-bottom: 2px;

    color: rgba(255,255,255,.35);
}


.wd-final-panel-bottom strong {
    display: block;

    color: #ffffff;
}


.wd-final-panel-bottom > a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    border-radius: 50%;

    background: var(--tdc-orange, #f26322);

    text-decoration: none;

    color: #ffffff;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease;
}


.wd-final-panel-bottom > a:hover {
    transform: rotate(8deg);

    background: #ffffff;

    color: #111111;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1023px) {

    .wd-final-cta {
        padding: 38px 0;
    }


    .wd-final-box {
        grid-template-columns:
            minmax(0, 52%)
            minmax(320px, 48%);

        gap: 24px;

        padding: 30px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .wd-final-cta {
        padding: 30px 0;
    }


    .wd-final-box {
        grid-template-columns: 1fr;

        gap: 25px;

        padding: 25px;

        border-radius: 18px;
    }


    .wd-final-content {
        max-width: none;
    }


    .wd-final-panel {
        width: 100%;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .wd-final-box {
        padding: 20px 15px;
    }


    .wd-final-actions {
        display: grid;

        grid-template-columns: 1fr;
    }


    .wd-final-primary,
    .wd-final-secondary {
        width: 100%;
    }


    .wd-final-trust {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 9px;
    }


    .wd-final-panel {
        padding: 14px;
    }


    .wd-final-panel-top {
        align-items: flex-start;
    }


    .wd-final-live {
        flex: 0 0 auto;
    }


    .wd-final-flow-item {
        grid-template-columns:
            38px
            minmax(0, 1fr);
    }


    .wd-final-flow-num {
        width: 38px;
        height: 38px;
    }


    .wd-final-flow-line {
        margin-left: 19px;
    }


    .wd-final-panel-bottom {
        align-items: flex-end;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .wd-final-primary,
    .wd-final-secondary,
    .wd-final-panel-bottom > a {
        transition: none !important;
    }

}