/* ==========================================================
   SERVICES PAGE
   THE DIGITAL CAFE
========================================================== */

.tdc-services-page {
    --tdc-orange: #f26322;
    --tdc-orange-dark: #d94f12;
    --tdc-orange-soft: #fff2ea;
    --tdc-dark: #111111;
    --tdc-text: #69635f;
    --tdc-border: #e5dfda;
    --tdc-bg: #f8f7f4;

    width: 100%;
    overflow: hidden;
}

.tdc-services-page *,
.tdc-services-page *::before,
.tdc-services-page *::after {
    box-sizing: border-box;
}


/* ==========================================================
   CONTAINER
========================================================== */

.tdc-services-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* ==========================================================
   SECTION 01 — HERO
========================================================== */

.tdc-services-hero {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 570px;
    padding: 55px 0;

    background:
        radial-gradient(
            circle at 80% 45%,
            rgba(242, 99, 34, .10),
            transparent 29%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #ffffff 57%,
            #faf7f4 100%
        );

    overflow: hidden;
}


/* BACKGROUND DECORATION */

.tdc-services-hero::before {
    content: "";

    position: absolute;
    right: -230px;
    top: -250px;

    width: 430px;
    height: 430px;

    border: 1px solid rgba(242, 99, 34, .09);
    border-radius: 50%;

    pointer-events: none;
}

.tdc-services-hero::after {
    content: "";

    position: absolute;
    left: 7%;
    bottom: 15%;

    width: 7px;
    height: 7px;

    background: var(--tdc-orange);
    border-radius: 50%;

    opacity: .28;

    box-shadow:
        120px -340px 0 rgba(242, 99, 34, .14),
        520px -10px 0 rgba(242, 99, 34, .10);
}


/* ==========================================================
   HERO GRID
========================================================== */

.tdc-services-hero-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(420px, .92fr)
        minmax(540px, 1.08fr);

    align-items: center;

    gap: 65px;
}


/* ==========================================================
   LEFT CONTENT
========================================================== */

.tdc-services-hero-content {
    position: relative;
    z-index: 5;

    max-width: 550px;
}


/* ==========================================================
   EYEBROW
========================================================== */

.tdc-services-eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-bottom: 13px;

    color: var(--tdc-orange);

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: .7px;
    text-transform: uppercase;
}

.tdc-services-eyebrow i {
    width: 29px;
    height: 29px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: var(--tdc-orange-soft);
    border-radius: 50%;

    font-size: 11px;
}


/* ==========================================================
   HEADING
========================================================== */

.tdc-services-title {
    margin: 0 0 15px;

    color: var(--tdc-dark);

    font-size: clamp(40px, 4vw, 56px);
    line-height: 1.08;
    font-weight: 750;

    letter-spacing: -1.7px;
}

.tdc-services-title span {
    display: block;

    margin-top: 3px;

    color: var(--tdc-orange);
}


/* ==========================================================
   DESCRIPTION
========================================================== */

.tdc-services-intro {
    max-width: 530px;

    margin: 0;

    color: var(--tdc-text);

    font-size: 16px;
    line-height: 1.7;
}


/* ==========================================================
   CTA
========================================================== */

.tdc-services-actions {
    margin-top: 22px;
}

.tdc-services-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 46px;

    padding: 11px 18px;

    background: var(--tdc-orange);

    border: 1px solid var(--tdc-orange);
    border-radius: 6px;

    color: #ffffff;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 7px 18px rgba(242, 99, 34, .17);

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}

.tdc-services-btn:hover {
    background: var(--tdc-orange-dark);
    border-color: var(--tdc-orange-dark);

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 10px 23px rgba(242, 99, 34, .23);
}

.tdc-services-btn i {
    font-size: 10px;

    transition: transform .3s ease;
}

.tdc-services-btn:hover i {
    transform: translateY(3px);
}


/* ==========================================================
   HERO NOTE
========================================================== */

.tdc-services-hero-note {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-top: 17px;

    color: #8b8580;

    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;
}

.tdc-services-hero-note > span {
    position: relative;

    width: 7px;
    height: 7px;

    flex: 0 0 auto;

    background: #35a853;

    border-radius: 50%;

    box-shadow:
        0 0 0 4px rgba(53, 168, 83, .09);
}


/* ==========================================================
   RIGHT — SERVICE VISUAL
========================================================== */

.tdc-services-visual {
    position: relative;

    width: 100%;
    height: 455px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* ==========================================================
   ORBITS
========================================================== */

.tdc-services-orbit {
    position: absolute;

    left: 50%;
    top: 50%;

    border-radius: 50%;

    pointer-events: none;

    transform: translate(-50%, -50%);
}

.tdc-services-orbit-one {
    width: 390px;
    height: 390px;

    border: 1px dashed #dcd3cc;

    animation:
        tdcServicesOrbit 38s linear infinite;
}

.tdc-services-orbit-two {
    width: 300px;
    height: 300px;

    border: 1px solid rgba(242, 99, 34, .10);

    box-shadow:
        0 0 0 35px rgba(242, 99, 34, .018);
}

@keyframes tdcServicesOrbit {

    from {
        transform:
            translate(-50%, -50%)
            rotate(0deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }
}


/* ==========================================================
   CENTRAL DIGITAL TRAY
========================================================== */

.tdc-services-tray {
    position: relative;
    z-index: 5;

    width: 210px;
    height: 210px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 25px;

    background:
        radial-gradient(
            circle at 50% 40%,
            #292929,
            #111111 68%
        );

    border: 8px solid #ffffff;
    border-radius: 50%;

    text-align: center;

    box-shadow:
        0 20px 55px rgba(25, 18, 14, .20),
        0 0 0 1px rgba(0, 0, 0, .04);
}


/* INNER RING */

.tdc-services-tray::before {
    content: "";

    position: absolute;

    inset: 9px;

    border: 1px dashed rgba(255, 255, 255, .10);
    border-radius: 50%;

    pointer-events: none;
}


/* ==========================================================
   TRAY LABEL
========================================================== */

.tdc-services-tray-label {
    display: block;

    margin-bottom: 8px;

    color: var(--tdc-orange);

    font-size: 9px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: .7px;
    text-transform: uppercase;
}


/* ==========================================================
   CUP
========================================================== */

.tdc-services-tray-icon {
    position: relative;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 8px;

    background: var(--tdc-orange);

    border-radius: 50%;

    color: #ffffff;

    font-size: 17px;

    box-shadow:
        0 7px 18px rgba(242, 99, 34, .25);

    animation:
        tdcServicesCupFloat 3s ease-in-out infinite;
}

@keyframes tdcServicesCupFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}


/* ==========================================================
   TRAY TEXT
========================================================== */

.tdc-services-tray > span:not(.tdc-services-tray-label) {
    display: block;

    color: #817b77;

    font-size: 9px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: .5px;

    text-transform: uppercase;
}

.tdc-services-tray > strong {
    display: block;

    margin-top: 1px;

    color: #ffffff;

    font-size: 19px;
    line-height: 1.3;
    font-weight: 700;
}

.tdc-services-tray > small {
    display: block;

    margin-top: 4px;

    color: #9c9691;

    font-size: 9px;
    line-height: 1.4;
}


/* ==========================================================
   SERVICE INGREDIENT CARDS
========================================================== */

.tdc-services-ingredient {
    position: absolute;
    z-index: 6;

    display: flex;
    align-items: center;

    gap: 8px;

    min-width: 115px;

    padding: 8px 10px;

    background: rgba(255, 255, 255, .97);

    border: 1px solid #e4ddd7;
    border-radius: 8px;

    box-shadow:
        0 8px 22px rgba(29, 20, 15, .07);

    animation:
        tdcServicesIngredientFloat 4s ease-in-out infinite;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}


/* ICON */

.tdc-services-ingredient > span {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    background: var(--tdc-orange-soft);

    border-radius: 50%;

    color: var(--tdc-orange);

    font-size: 10px;

    transition:
        background .3s ease,
        color .3s ease;
}


/* NAME */

.tdc-services-ingredient strong {
    color: #282522;

    font-size: 12px;
    line-height: 1.3;
    font-weight: 700;
}


/* HOVER */

.tdc-services-ingredient:hover {
    border-color: rgba(242, 99, 34, .25);

    box-shadow:
        0 12px 28px rgba(29, 20, 15, .10);
}

.tdc-services-ingredient:hover > span {
    background: var(--tdc-orange);
    color: #ffffff;
}


/* ==========================================================
   SERVICE POSITIONS
========================================================== */

/* TOP LEFT */

.tdc-services-ingredient-design {
    left: 10px;
    top: 62px;

    animation-delay: 0s;
}


/* TOP RIGHT */

.tdc-services-ingredient-seo {
    right: 8px;
    top: 60px;

    animation-delay: .6s;
}


/* MIDDLE LEFT */

.tdc-services-ingredient-social {
    left: -5px;
    top: 195px;

    animation-delay: 1.1s;
}


/* MIDDLE RIGHT */

.tdc-services-ingredient-ads {
    right: -2px;
    top: 195px;

    animation-delay: 1.7s;
}


/* BOTTOM LEFT */

.tdc-services-ingredient-content {
    left: 48px;
    bottom: 35px;

    animation-delay: 2.2s;
}


/* BOTTOM RIGHT */

.tdc-services-ingredient-web {
    right: 48px;
    bottom: 35px;

    animation-delay: 2.8s;
}


@keyframes tdcServicesIngredientFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}


/* ==========================================================
   CONNECTION LINES
========================================================== */

.tdc-services-visual::before {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    z-index: 2;

    width: 340px;
    height: 340px;

    transform:
        translate(-50%, -50%)
        rotate(30deg);

    border: 1px dotted rgba(242, 99, 34, .22);
    border-radius: 50%;

    pointer-events: none;
}


/* ==========================================================
   VISUAL CAPTION
========================================================== */

.tdc-services-visual-caption {
    position: absolute;

    z-index: 7;

    left: 50%;
    bottom: -2px;

    display: flex;
    align-items: center;

    gap: 5px;

    padding: 7px 11px;

    background: #ffffff;

    border: 1px solid #e8e2dd;
    border-radius: 20px;

    box-shadow:
        0 7px 20px rgba(29, 20, 15, .05);

    white-space: nowrap;

    transform: translateX(-50%);
}

.tdc-services-visual-caption span {
    color: #8a837e;

    font-size: 10px;
    line-height: 1.4;
}

.tdc-services-visual-caption strong {
    color: var(--tdc-orange);

    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1100px) {

    .tdc-services-hero {
        min-height: auto;
        padding: 55px 0;
    }


    .tdc-services-hero-grid {
        grid-template-columns:
            minmax(350px, .9fr)
            minmax(440px, 1.1fr);

        gap: 35px;
    }


    .tdc-services-visual {
        height: 430px;
    }


    .tdc-services-orbit-one {
        width: 350px;
        height: 350px;
    }


    .tdc-services-orbit-two {
        width: 280px;
        height: 280px;
    }


    .tdc-services-ingredient {
        min-width: 105px;
    }


    .tdc-services-ingredient-design {
        left: 0;
    }


    .tdc-services-ingredient-seo {
        right: 0;
    }


    .tdc-services-ingredient-social {
        left: 0;
    }


    .tdc-services-ingredient-ads {
        right: 0;
    }


    .tdc-services-ingredient-content {
        left: 25px;
    }


    .tdc-services-ingredient-web {
        right: 25px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .tdc-services-container {
        width: min(100% - 30px, 1180px);
    }


    .tdc-services-hero {
        min-height: auto;

        padding: 42px 0 38px;
    }


    .tdc-services-hero-grid {
        grid-template-columns: 1fr;

        gap: 28px;
    }


    /* LEFT */

    .tdc-services-hero-content {
        max-width: 100%;
    }


    .tdc-services-eyebrow {
        margin-bottom: 10px;

        font-size: 12px;
    }


    .tdc-services-title {
        margin-bottom: 13px;

        font-size: 36px;
        line-height: 1.08;

        letter-spacing: -1px;
    }


    .tdc-services-intro {
        font-size: 16px;
        line-height: 1.55;
    }


    .tdc-services-actions {
        margin-top: 19px;
    }


    .tdc-services-btn {
        width: 100%;
    }


    .tdc-services-hero-note {
        font-size: 11px;
    }


    /* VISUAL */

    .tdc-services-visual {
        max-width: 410px;

        height: 390px;

        margin: 0 auto;
    }


    .tdc-services-orbit-one {
        width: 300px;
        height: 300px;
    }


    .tdc-services-orbit-two {
        width: 235px;
        height: 235px;
    }


    .tdc-services-tray {
        width: 165px;
        height: 165px;

        padding: 18px;

        border-width: 5px;
    }


    .tdc-services-tray-icon {
        width: 40px;
        height: 40px;

        margin-bottom: 6px;

        font-size: 14px;
    }


    .tdc-services-tray > strong {
        font-size: 16px;
    }


    /* INGREDIENTS */

    .tdc-services-ingredient {
        min-width: 102px;

        padding: 6px 7px;

        gap: 6px;
    }


    .tdc-services-ingredient > span {
        width: 29px;
        height: 29px;

        font-size: 9px;
    }


    .tdc-services-ingredient strong {
        font-size: 11px;
    }


    .tdc-services-ingredient-design {
        left: 0;
        top: 42px;
    }


    .tdc-services-ingredient-seo {
        right: 0;
        top: 42px;
    }


    .tdc-services-ingredient-social {
        left: 0;
        top: 175px;
    }


    .tdc-services-ingredient-ads {
        right: 0;
        top: 175px;
    }


    .tdc-services-ingredient-content {
        left: 18px;
        bottom: 35px;
    }


    .tdc-services-ingredient-web {
        right: 18px;
        bottom: 35px;
    }


    .tdc-services-visual::before {
        width: 270px;
        height: 270px;
    }


    .tdc-services-visual-caption {
        bottom: -2px;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 420px) {

    .tdc-services-title {
        font-size: 32px;
    }


    .tdc-services-visual {
        height: 365px;
    }


    .tdc-services-orbit-one {
        width: 270px;
        height: 270px;
    }


    .tdc-services-ingredient {
        min-width: 92px;

        padding: 5px 6px;
    }


    .tdc-services-ingredient > span {
        width: 27px;
        height: 27px;
    }


    .tdc-services-ingredient strong {
        font-size: 10px;
    }


    .tdc-services-ingredient-content {
        left: 2px;
    }


    .tdc-services-ingredient-web {
        right: 2px;
    }


    .tdc-services-visual-caption {
        width: max-content;
        max-width: 95%;

        white-space: normal;

        text-align: center;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .tdc-services-orbit-one,
    .tdc-services-tray-icon,
    .tdc-services-ingredient {
        animation: none;
    }

}
/* ==========================================================
   SECTION 02 — THE DIGITAL CAFE MENU
========================================================== */

.tdc-services-menu {
    position: relative;
    width: 100%;
    padding: 55px 0 65px;
    background: #f8f7f4;
    overflow: hidden;
}


/* ==========================================================
   BACKGROUND DECORATION
========================================================== */

.tdc-services-menu::before {
    content: "";
    position: absolute;
    right: -250px;
    top: -260px;

    width: 430px;
    height: 430px;

    border: 1px solid rgba(242, 99, 34, .08);
    border-radius: 50%;

    pointer-events: none;
}

.tdc-services-menu::after {
    content: "";
    position: absolute;
    left: -180px;
    bottom: -200px;

    width: 320px;
    height: 320px;

    background:
        radial-gradient(
            circle,
            rgba(242, 99, 34, .07),
            transparent 68%
        );

    border-radius: 50%;

    pointer-events: none;
}


/* ==========================================================
   SECTION HEADING
========================================================== */

.tdc-services-section-head {
    position: relative;
    z-index: 2;

    max-width: 720px;

    margin: 0 auto 30px;

    text-align: center;
}


/* LABEL */

.tdc-services-section-label {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    margin-bottom: 8px;

    color: var(--tdc-orange);

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: .65px;
    text-transform: uppercase;
}

.tdc-services-section-label i {
    font-size: 11px;
}


/* HEADING */

.tdc-services-section-head h2 {
    margin: 0 0 10px;

    color: var(--tdc-dark);

    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;

    letter-spacing: -.5px;
}

.tdc-services-section-head h2 span {
    color: var(--tdc-orange);
}


/* DESCRIPTION */

.tdc-services-section-head > p {
    max-width: 650px;

    margin: 0 auto;

    color: var(--tdc-text);

    font-size: 16px;
    line-height: 1.6;
}


/* ==========================================================
   SERVICE GRID
========================================================== */

.tdc-services-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    align-items: stretch;

    gap: 13px;

    width: 100%;

    margin: 0 auto;
}


/* ==========================================================
   SERVICE CARD
========================================================== */

.tdc-service-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;
    min-height: 345px;

    padding: 20px 18px 18px;

    background: #ffffff;

    border: 1px solid #e6e0db;
    border-radius: 9px;

    overflow: hidden;

    box-shadow:
        0 7px 20px rgba(29, 20, 15, .025);

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}


/* ORANGE TOP LINE */

.tdc-service-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 3px;

    background: var(--tdc-orange);

    transform: scaleX(0);
    transform-origin: left center;

    transition: transform .35s ease;
}


/* BACKGROUND CIRCLE */

.tdc-service-card::after {
    content: "";

    position: absolute;

    right: -45px;
    top: -50px;

    width: 110px;
    height: 110px;

    background: var(--tdc-orange-soft);

    border-radius: 50%;

    opacity: .55;

    transform: scale(.7);

    transition:
        transform .4s ease,
        opacity .4s ease;
}


/* HOVER */

.tdc-service-card:hover {
    border-color: #ddd4cd;

    transform: translateY(-5px);

    box-shadow:
        0 16px 35px rgba(29, 20, 15, .075);
}

.tdc-service-card:hover::before {
    transform: scaleX(1);
}

.tdc-service-card:hover::after {
    opacity: 1;

    transform: scale(1);
}


/* ==========================================================
   CARD TOP
========================================================== */

.tdc-service-card-top {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 14px;
}


/* NUMBER */

.tdc-service-number {
    color: #aaa39e;

    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: .6px;
}


/* ==========================================================
   ICON
========================================================== */

.tdc-service-card-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--tdc-orange-soft);

    border: 1px solid rgba(242, 99, 34, .10);
    border-radius: 50%;

    color: var(--tdc-orange);

    font-size: 13px;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.tdc-service-card:hover
.tdc-service-card-icon {
    background: var(--tdc-orange);

    color: #ffffff;

    transform: rotate(-6deg);
}


/* ==========================================================
   CAFE NAME
========================================================== */

.tdc-service-cafe-name {
    position: relative;
    z-index: 2;

    display: inline-block;

    margin-bottom: 7px;

    color: var(--tdc-orange);

    font-size: 10px;
    line-height: 1.4;
    font-weight: 800;

    letter-spacing: .7px;

    text-transform: uppercase;
}


/* ==========================================================
   CARD HEADING
========================================================== */

.tdc-service-card h3 {
    position: relative;
    z-index: 2;

    min-height: 52px;

    margin: 0 0 9px;

    color: #191715;

    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;

    letter-spacing: -.15px;
}


/* ==========================================================
   DESCRIPTION
========================================================== */

.tdc-service-card > p {
    position: relative;
    z-index: 2;

    margin: 0 0 13px;

    color: #77706b;

    font-size: 12px;
    line-height: 1.55;
}


/* ==========================================================
   SERVICE TAGS
========================================================== */

.tdc-service-tags {
    position: relative;
    z-index: 2;

    display: flex;
    flex-wrap: wrap;

    gap: 5px;

    margin-bottom: 16px;
}

.tdc-service-tags span {
    display: inline-flex;
    align-items: center;

    min-height: 24px;

    padding: 4px 7px;

    background: #f8f6f4;

    border: 1px solid #ebe6e2;
    border-radius: 20px;

    color: #77706b;

    font-size: 9px;
    line-height: 1.3;
    font-weight: 600;

    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease;
}

.tdc-service-card:hover
.tdc-service-tags span {
    background: #fff8f4;

    border-color: rgba(242, 99, 34, .13);

    color: #615a55;
}


/* ==========================================================
   EXPLORE LINK
========================================================== */

.tdc-service-link {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    width: fit-content;

    margin-top: auto;

    color: #272421;

    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;

    text-decoration: none;

    transition:
        color .3s ease,
        gap .3s ease;
}

.tdc-service-link i {
    color: var(--tdc-orange);

    font-size: 9px;

    transition: transform .3s ease;
}

.tdc-service-link:hover {
    gap: 10px;

    color: var(--tdc-orange);
}

.tdc-service-link:hover i {
    transform: translateX(2px);
}


/* ==========================================================
   UNIQUE CARD DETAILS
========================================================== */

/*
   These tiny symbols give each cafe a little personality
   without changing the overall design system.
*/

.tdc-service-card:nth-child(1)
.tdc-service-card-icon::after {
    content: "✦";
}

.tdc-service-card:nth-child(2)
.tdc-service-card-icon::after {
    content: "";
}

.tdc-service-card:nth-child(3)
.tdc-service-card-icon::after {
    content: "";
}


/* ==========================================================
   CAFE ORDER STAMP
========================================================== */

.tdc-service-card:nth-child(4)::after,
.tdc-service-card:nth-child(8)::after {
    background:
        radial-gradient(
            circle,
            rgba(242, 99, 34, .12),
            rgba(242, 99, 34, .035) 55%,
            transparent 56%
        );
}


/* ==========================================================
   FIRST CARD — FEATURED DETAIL
========================================================== */

.tdc-service-card:first-child {
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fffcfa
        );
}


/* ==========================================================
   CARD ICON FIX
========================================================== */

/*
   Keeps Font Awesome icons visible.
   Pseudo-elements above are decorative only.
*/

.tdc-service-card-icon {
    position: relative;
}

.tdc-service-card-icon > i {
    position: relative;
    z-index: 2;
}

.tdc-service-card-icon::after {
    position: absolute;

    right: -2px;
    top: -5px;

    color: var(--tdc-orange);

    font-size: 7px;

    opacity: .55;
}


/* ==========================================================
   TABLET — 2 COLUMNS
========================================================== */

@media (max-width: 1050px) {

    .tdc-services-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        max-width: 850px;

        gap: 14px;
    }


    .tdc-service-card {
        min-height: 315px;

        padding: 20px;
    }


    .tdc-service-card h3 {
        min-height: auto;

        font-size: 18px;
    }


    .tdc-service-card > p {
        font-size: 13px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .tdc-services-menu {
        padding: 44px 0 52px;
    }


    /* SECTION HEAD */

    .tdc-services-section-head {
        margin-bottom: 23px;

        text-align: left;
    }


    .tdc-services-section-label {
        font-size: 12px;
    }


    .tdc-services-section-head h2 {
        font-size: 24px;
        line-height: 1.25;
    }


    .tdc-services-section-head h2 span {
        display: block;
    }


    .tdc-services-section-head > p {
        font-size: 16px;
        line-height: 1.5;
    }


    /* GRID */

    .tdc-services-grid {
        grid-template-columns: 1fr;

        max-width: 100%;

        gap: 11px;
    }


    /* CARD */

    .tdc-service-card {
        min-height: 0;

        padding: 18px;
    }


    .tdc-service-card-top {
        margin-bottom: 11px;
    }


    .tdc-service-card-icon {
        width: 40px;
        height: 40px;

        font-size: 12px;
    }


    .tdc-service-cafe-name {
        margin-bottom: 5px;

        font-size: 10px;
    }


    .tdc-service-card h3 {
        min-height: 0;

        margin-bottom: 7px;

        font-size: 18px;
        line-height: 1.35;
    }


    .tdc-service-card > p {
        margin-bottom: 11px;

        font-size: 14px;
        line-height: 1.5;
    }


    .tdc-service-tags {
        margin-bottom: 13px;
    }


    .tdc-service-tags span {
        font-size: 10px;
    }


    .tdc-service-link {
        font-size: 12px;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 420px) {

    .tdc-service-card {
        padding: 16px;
    }


    .tdc-service-card h3 {
        font-size: 17px;
    }

}


/* ==========================================================
   TOUCH DEVICES
========================================================== */

@media (hover: none) {

    .tdc-service-card::before {
        transform: scaleX(1);
    }


    .tdc-service-card {
        box-shadow:
            0 7px 20px rgba(29, 20, 15, .04);
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .tdc-service-card,
    .tdc-service-card::before,
    .tdc-service-card::after,
    .tdc-service-card-icon,
    .tdc-service-link,
    .tdc-service-link i {
        transition: none;
    }

}
/* ==========================================================
   SECTION 03 — BUILD YOUR DIGITAL BLEND
========================================================== */

.tdc-services-blend {
    position: relative;
    width: 100%;

    padding: 65px 0;

    background:
        radial-gradient(
            circle at 18% 50%,
            rgba(242, 99, 34, .08),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #ffffff 55%,
            #faf7f4 100%
        );

    overflow: hidden;
}


/* ==========================================================
   BACKGROUND DECORATION
========================================================== */

.tdc-services-blend::before {
    content: "";

    position: absolute;
    right: -250px;
    bottom: -270px;

    width: 450px;
    height: 450px;

    border: 1px solid rgba(242, 99, 34, .08);
    border-radius: 50%;

    pointer-events: none;
}


.tdc-services-blend::after {
    content: "";

    position: absolute;
    right: 8%;
    top: 17%;

    width: 6px;
    height: 6px;

    background: var(--tdc-orange);

    border-radius: 50%;

    opacity: .18;

    box-shadow:
        90px 150px 0 rgba(242, 99, 34, .18),
        -520px 280px 0 rgba(242, 99, 34, .12);

    pointer-events: none;
}


/* ==========================================================
   MAIN GRID
========================================================== */

.tdc-services-blend-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(430px, .9fr)
        minmax(430px, 1.1fr);

    align-items: center;

    gap: 85px;
}


/* ==========================================================
   LEFT — ORDER RECEIPT
========================================================== */

.tdc-services-order {
    position: relative;

    width: 100%;
    max-width: 450px;

    margin: 0 auto;

    padding: 24px 25px 30px;

    background: #ffffff;

    border: 1px solid #e4ddd7;

    box-shadow:
        0 20px 50px rgba(29, 20, 15, .09);

    transform: rotate(-1deg);

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}


.tdc-services-order:hover {
    transform:
        rotate(0deg)
        translateY(-4px);

    box-shadow:
        0 25px 60px rgba(29, 20, 15, .13);
}


/* TOP ORANGE STRIP */

.tdc-services-order::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 4px;

    background: var(--tdc-orange);
}


/* ==========================================================
   RECEIPT HEADER
========================================================== */

.tdc-services-order-head {
    display: flex;
    align-items: center;

    gap: 12px;

    padding-bottom: 15px;

    border-bottom: 1px dashed #d9d2cc;
}


/* CUP ICON */

.tdc-services-order-cup {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    background: var(--tdc-orange-soft);

    border-radius: 50%;

    color: var(--tdc-orange);

    font-size: 14px;
}


.tdc-services-order-head > div > span {
    display: block;

    margin-bottom: 2px;

    color: var(--tdc-orange);

    font-size: 9px;
    line-height: 1.4;
    font-weight: 800;

    letter-spacing: .8px;

    text-transform: uppercase;
}


.tdc-services-order-head h3 {
    margin: 0;

    color: #191715;

    font-size: 19px;
    line-height: 1.3;
    font-weight: 700;
}


/* ==========================================================
   ORDER META
========================================================== */

.tdc-services-order-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding: 10px 0;

    border-bottom: 1px dashed #ded7d2;
}


.tdc-services-order-meta span {
    color: #aaa39d;

    font-size: 8px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: .5px;

    text-transform: uppercase;
}


/* ==========================================================
   ORDER BLOCK
========================================================== */

.tdc-services-order-block {
    padding: 14px 0;

    border-bottom: 1px dashed #ded7d2;
}


.tdc-services-order-title {
    display: block;

    margin-bottom: 10px;

    color: #292522;

    font-size: 10px;
    line-height: 1.4;
    font-weight: 800;

    letter-spacing: .6px;

    text-transform: uppercase;
}


/* ==========================================================
   SERVICE CHECKBOXES
========================================================== */

.tdc-services-order-options {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 7px 12px;
}


.tdc-services-order-options label,
.tdc-services-goals label {
    display: flex;
    align-items: center;

    gap: 7px;

    min-width: 0;

    cursor: pointer;
}


.tdc-services-order-options label span,
.tdc-services-goals label span {
    color: #706963;

    font-size: 11px;
    line-height: 1.4;
    font-weight: 600;

    transition: color .2s ease;
}


/* ==========================================================
   CUSTOM CHECKBOX
========================================================== */

.tdc-services-order-options input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;

    position: relative;

    width: 15px;
    height: 15px;

    flex: 0 0 auto;

    margin: 0;

    background: #ffffff;

    border: 1px solid #d7d0ca;
    border-radius: 3px;

    cursor: pointer;

    transition:
        background .2s ease,
        border-color .2s ease;
}


.tdc-services-order-options input[type="checkbox"]:checked {
    background: var(--tdc-orange);
    border-color: var(--tdc-orange);
}


.tdc-services-order-options input[type="checkbox"]:checked::after {
    content: "✓";

    position: absolute;

    left: 50%;
    top: 50%;

    color: #ffffff;

    font-size: 9px;
    font-weight: 800;

    transform: translate(-50%, -54%);
}


.tdc-services-order-options label:hover span {
    color: var(--tdc-orange);
}


/* ==========================================================
   GOALS
========================================================== */

.tdc-services-goals {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;
}


.tdc-services-goals label {
    padding: 5px 8px;

    background: #faf8f6;

    border: 1px solid #e9e3de;
    border-radius: 20px;

    transition:
        background .2s ease,
        border-color .2s ease;
}


/* RADIO */

.tdc-services-goals input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;

    position: relative;

    width: 13px;
    height: 13px;

    flex: 0 0 auto;

    margin: 0;

    background: #ffffff;

    border: 1px solid #d2cbc5;
    border-radius: 50%;

    cursor: pointer;
}


.tdc-services-goals input[type="radio"]:checked {
    border-color: var(--tdc-orange);
}


.tdc-services-goals input[type="radio"]:checked::after {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 7px;
    height: 7px;

    background: var(--tdc-orange);

    border-radius: 50%;

    transform: translate(-50%, -50%);
}


.tdc-services-goals label:has(input:checked) {
    background: var(--tdc-orange-soft);

    border-color: rgba(242, 99, 34, .22);
}


.tdc-services-goals label:has(input:checked) span {
    color: #b94a18;
}


/* ==========================================================
   TOTAL
========================================================== */

.tdc-services-order-total {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-top: 14px;
}


.tdc-services-order-total span {
    color: #aaa39d;

    font-size: 9px;
    line-height: 1.4;
    font-weight: 800;

    letter-spacing: .6px;

    text-transform: uppercase;
}


.tdc-services-order-total strong {
    color: var(--tdc-orange);

    font-size: 13px;
    line-height: 1.4;
    font-weight: 800;

    text-align: right;
}


/* ==========================================================
   RECEIPT BOTTOM EDGE
========================================================== */

.tdc-services-order-edge {
    position: absolute;

    left: 0;
    bottom: -10px;

    width: 100%;
    height: 11px;

    background:
        linear-gradient(
            135deg,
            #ffffff 7px,
            transparent 0
        ) 0 0 / 14px 14px repeat-x,

        linear-gradient(
            225deg,
            #ffffff 7px,
            transparent 0
        ) 7px 0 / 14px 14px repeat-x;

    pointer-events: none;
}


/* ==========================================================
   RIGHT — CONTENT
========================================================== */

.tdc-services-blend-content {
    position: relative;

    max-width: 550px;
}


/* LABEL */

.tdc-services-blend-label {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    margin-bottom: 10px;

    color: var(--tdc-orange);

    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;

    letter-spacing: .6px;

    text-transform: uppercase;
}


.tdc-services-blend-label i {
    width: 28px;
    height: 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: var(--tdc-orange-soft);

    border-radius: 50%;

    font-size: 10px;
}


/* ==========================================================
   HEADING
========================================================== */

.tdc-services-blend-content h2 {
    margin: 0 0 14px;

    color: var(--tdc-dark);

    font-size: 36px;
    line-height: 1.18;
    font-weight: 750;

    letter-spacing: -.8px;
}


.tdc-services-blend-content h2 span {
    display: block;

    color: var(--tdc-orange);
}


/* ==========================================================
   DESCRIPTION
========================================================== */

.tdc-services-blend-content > p {
    max-width: 520px;

    margin: 0;

    color: var(--tdc-text);

    font-size: 16px;
    line-height: 1.65;
}


/* ==========================================================
   BENEFITS
========================================================== */

.tdc-services-blend-points {
    display: grid;

    gap: 8px;

    margin-top: 18px;
}


.tdc-services-blend-points > div {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #4e4945;

    font-size: 13px;
    line-height: 1.45;
    font-weight: 600;
}


.tdc-services-blend-points > div > span {
    width: 23px;
    height: 23px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    background: #edf8f0;

    border-radius: 50%;

    color: #35a853;

    font-size: 8px;
}


/* ==========================================================
   CTA
========================================================== */

.tdc-services-blend-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 47px;

    margin-top: 22px;

    padding: 11px 18px;

    background: var(--tdc-orange);

    border: 1px solid var(--tdc-orange);
    border-radius: 6px;

    color: #ffffff;

    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 8px 20px rgba(242, 99, 34, .18);

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}


.tdc-services-blend-btn:hover {
    background: var(--tdc-orange-dark);

    border-color: var(--tdc-orange-dark);

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 11px 26px rgba(242, 99, 34, .24);
}


.tdc-services-blend-btn i {
    font-size: 10px;

    transition: transform .3s ease;
}


.tdc-services-blend-btn:hover i {
    transform: translateX(3px);
}


/* ==========================================================
   BOTTOM NOTE
========================================================== */

.tdc-services-blend-note {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-top: 14px;

    color: #938c87;

    font-size: 11px;
    line-height: 1.4;
    font-weight: 600;
}


.tdc-services-blend-note span {
    width: 7px;
    height: 7px;

    flex: 0 0 auto;

    background: #35a853;

    border-radius: 50%;

    box-shadow:
        0 0 0 4px rgba(53, 168, 83, .09);
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1000px) {

    .tdc-services-blend {
        padding: 55px 0;
    }


    .tdc-services-blend-grid {
        grid-template-columns:
            minmax(360px, .95fr)
            minmax(360px, 1.05fr);

        gap: 45px;
    }


    .tdc-services-order {
        max-width: 420px;
    }


    .tdc-services-blend-content h2 {
        font-size: 32px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .tdc-services-blend {
        padding: 48px 0 55px;
    }


    .tdc-services-blend-grid {
        grid-template-columns: 1fr;

        gap: 42px;
    }


    /* CONTENT FIRST ON MOBILE */

    .tdc-services-blend-content {
        order: 1;

        max-width: 100%;
    }


    .tdc-services-order {
        order: 2;

        max-width: 100%;

        padding: 21px 18px 27px;

        transform: none;
    }


    .tdc-services-order:hover {
        transform: translateY(-3px);
    }


    /* CONTENT */

    .tdc-services-blend-label {
        font-size: 12px;
    }


    .tdc-services-blend-content h2 {
        margin-bottom: 12px;

        font-size: 28px;
        line-height: 1.2;
    }


    .tdc-services-blend-content > p {
        font-size: 16px;
        line-height: 1.55;
    }


    .tdc-services-blend-btn {
        width: 100%;
    }


    /* RECEIPT */

    .tdc-services-order-head h3 {
        font-size: 18px;
    }


    .tdc-services-order-options {
        gap: 8px;
    }


    .tdc-services-order-options label span,
    .tdc-services-goals label span {
        font-size: 11px;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 430px) {

    .tdc-services-blend-content h2 {
        font-size: 26px;
    }


    .tdc-services-order-options {
        grid-template-columns: 1fr 1fr;

        column-gap: 8px;
    }


    .tdc-services-order-meta {
        gap: 8px;
    }


    .tdc-services-order-meta span {
        font-size: 7px;
    }


    .tdc-services-order-total {
        align-items: flex-start;

        flex-direction: column;

        gap: 3px;
    }


    .tdc-services-order-total strong {
        text-align: left;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .tdc-services-order,
    .tdc-services-blend-btn,
    .tdc-services-blend-btn i {
        transition: none;
    }

}