/* ==========================================================
   SOCIAL MEDIA MARKETING PAGE
   SECTION 01 — HERO
========================================================== */

.smm-hero {
    position: relative;
    overflow: hidden;

    min-height: calc(100vh - 80px);

    display: flex;
    align-items: center;

    padding: 50px 0;

    background: #faf8f5;
}


/* ==========================================================
   BACKGROUND DECORATION
========================================================== */

.smm-hero::before {
    content: "";

    position: absolute;
    top: -300px;
    right: -250px;

    width: 750px;
    height: 750px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(242, 99, 34, .13),
            rgba(242, 99, 34, .035) 48%,
            transparent 72%
        );

    pointer-events: none;
}

.smm-hero::after {
    content: "";

    position: absolute;
    left: -300px;
    bottom: -400px;

    width: 750px;
    height: 750px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(17, 17, 17, .035),
            transparent 70%
        );

    pointer-events: none;
}


/* ==========================================================
   HERO GRID
========================================================== */

.smm-hero-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 52%)
        minmax(400px, 48%);

    align-items: center;

    gap: 70px;
}


/* ==========================================================
   LEFT CONTENT
========================================================== */

.smm-hero-content {
    position: relative;
    z-index: 4;

    max-width: 720px;
}


/* ==========================================================
   EYEBROW
========================================================== */

.smm-hero-eyebrow {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 18px;


    color: var(--tdc-orange, #f26322);
}

.smm-hero-eyebrow-line {
    display: block;

    width: 38px;
    height: 2px;

    flex-shrink: 0;

    background: var(--tdc-orange, #f26322);
}


/* ==========================================================
   H1
========================================================== */

.smm-hero-content h1 {
    max-width: 720px;

    margin: 0;


    color: var(--tdc-black, #111111);
}

.smm-hero-content h1 span {
    display: block;

    margin-top: 6px;

    color: var(--tdc-orange, #f26322);
}


/* ==========================================================
   DESCRIPTION
========================================================== */

.smm-hero-lead {
    max-width: 610px;

    margin: 22px 0 0;


    color: var(--tdc-text-muted, #66615e);
}


/* ==========================================================
   CTA BUTTONS
========================================================== */

.smm-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 11px;

    margin-top: 28px;
}


/* PRIMARY */

.smm-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 11px;

    min-height: 54px;

    padding: 0 23px;

    border: 1px solid var(--tdc-orange, #f26322);
    border-radius: 50px;

    background: var(--tdc-orange, #f26322);


    text-decoration: none;

    color: #ffffff;

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.smm-hero-primary:hover {
    transform: translateY(-3px);

    background: #ff7333;
    border-color: #ff7333;

    box-shadow:
        0 14px 32px rgba(242, 99, 34, .25);

    color: #ffffff;
}

.smm-hero-primary i {

    transition: transform .3s ease;
}

.smm-hero-primary:hover i {
    transform: translateX(4px);
}


/* SECONDARY */

.smm-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 54px;

    padding: 0 22px;

    border: 1px solid #ded8d3;
    border-radius: 50px;

    background: #ffffff;


    text-decoration: none;

    color: var(--tdc-black, #111111);

    transition:
        transform .3s ease,
        border-color .3s ease,
        color .3s ease,
        box-shadow .3s ease;
}

.smm-hero-secondary:hover {
    transform: translateY(-3px);

    border-color: rgba(242, 99, 34, .4);

    color: var(--tdc-orange, #f26322);

    box-shadow:
        0 12px 30px rgba(17, 17, 17, .06);
}

.smm-hero-secondary i {

    color: var(--tdc-orange, #f26322);
}


/* ==========================================================
   SERVICES MINI STRIP
========================================================== */

.smm-hero-services {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-top: 34px;
    padding-top: 22px;

    border-top: 1px solid #e5dfda;
}

.smm-hero-service {
    display: flex;
    align-items: center;

    gap: 7px;
}

.smm-hero-service > span {

    color: var(--tdc-orange, #f26322);
}

.smm-hero-service > strong {

    color: var(--tdc-black, #111111);
}

.smm-hero-service-divider {
    width: 1px;
    height: 18px;

    background: #ddd7d2;
}


/* ==========================================================
   HERO NOTE
========================================================== */

.smm-hero-note {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-top: 15px;


    color: #8a837e;
}

.smm-hero-note-dot {
    width: 6px;
    height: 6px;

    flex: 0 0 6px;

    border-radius: 50%;

    background: var(--tdc-orange, #f26322);

    box-shadow:
        0 0 0 4px rgba(242, 99, 34, .09);
}


/* ==========================================================
   RIGHT VISUAL
========================================================== */

.smm-hero-visual {
    position: relative;

    width: 100%;
    max-width: 560px;

    min-height: 650px;

    margin-left: auto;
}


/* ==========================================================
   BACKGROUND CIRCLE
========================================================== */

.smm-hero-visual-circle {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    border: 1px solid rgba(242, 99, 34, .14);

    background:
        radial-gradient(
            circle,
            rgba(242, 99, 34, .10),
            rgba(242, 99, 34, .025) 60%,
            transparent 70%
        );

    transform: translate(-50%, -50%);

    pointer-events: none;
}


/* second circle */

.smm-hero-visual-circle::after {
    content: "";

    position: absolute;

    inset: 45px;

    border: 1px dashed rgba(17, 17, 17, .10);
    border-radius: 50%;
}


/* ==========================================================
   PHONE
========================================================== */

.smm-hero-phone {
    position: absolute;

    z-index: 4;

    top: 50%;
    left: 50%;

    width: 300px;
    height: 610px;

    overflow: hidden;

    padding: 8px;

    border: 3px solid #181818;
    border-radius: 42px;

    background: #181818;

    box-shadow:
        0 35px 75px rgba(17, 17, 17, .25);

    transform:
        translate(-50%, -50%)
        rotate(2deg);

    transition:
        transform .6s cubic-bezier(.22, 1, .36, 1);
}

.smm-hero-visual:hover .smm-hero-phone {
    transform:
        translate(-50%, -52%)
        rotate(0deg);
}


/* ==========================================================
   PHONE TOP
========================================================== */

.smm-phone-top {
    position: absolute;

    z-index: 10;

    top: 8px;
    left: 8px;
    right: 8px;

    height: 34px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 17px;

    color: #ffffff;
}

.smm-phone-time {
    position: relative;
    z-index: 3;

}

.smm-phone-notch {
    position: absolute;

    top: 6px;
    left: 50%;

    width: 92px;
    height: 23px;

    border-radius: 50px;

    background: #111111;

    transform: translateX(-50%);
}

.smm-phone-status {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;

    gap: 5px;

}


/* ==========================================================
   PHONE CONTENT
========================================================== */

.smm-phone-content {
    width: 100%;
    height: 100%;

    overflow: hidden;

    border-radius: 33px;

    background: #ffffff;
}


/* ==========================================================
   PHONE PROFILE
========================================================== */

.smm-phone-profile {
    height: 62px;

    display: grid;
    grid-template-columns: 32px minmax(0, 1fr) 15px;
    align-items: center;

    gap: 8px;

    padding:
        27px
        13px
        7px;

    background: #ffffff;
}

.smm-phone-profile-image {
    width: 30px;
    height: 30px;

    overflow: hidden;

    border: 2px solid var(--tdc-orange, #f26322);
    border-radius: 50%;

    background: #eee9e5;
}

.smm-phone-profile-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.smm-phone-profile strong {
    display: block;


    color: #111111;
}

.smm-phone-profile span {
    display: block;

    margin-top: 1px;


    color: #8b8580;
}

.smm-phone-profile > i {

    color: #111111;
}


/* ==========================================================
   PHONE MEDIA
========================================================== */

.smm-phone-media {
    position: relative;

    height: 390px;

    overflow: hidden;

    background: #ddd;
}

.smm-phone-media::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(17, 17, 17, .03),
            rgba(17, 17, 17, .04) 45%,
            rgba(17, 17, 17, .68) 100%
        );

    pointer-events: none;
}

.smm-phone-media > img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.22, 1, .36, 1);
}

.smm-hero-phone:hover .smm-phone-media > img {
    transform: scale(1.045);
}


/* ==========================================================
   REEL LABEL
========================================================== */

.smm-phone-reel-label {
    position: absolute;

    z-index: 4;

    top: 14px;
    right: 14px;

    display: inline-flex;
    align-items: center;

    gap: 6px;

    padding: 7px 10px;

    border: 1px solid rgba(255, 255, 255, .30);
    border-radius: 50px;

    background: rgba(17, 17, 17, .38);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);


    color: #ffffff;
}

.smm-phone-reel-label i {
}


/* ==========================================================
   MEDIA COPY
========================================================== */

.smm-phone-media-copy {
    position: absolute;

    z-index: 4;

    left: 18px;
    right: 18px;
    bottom: 20px;
}

.smm-phone-media-copy > span {
    display: block;

    margin-bottom: 5px;


    color: var(--tdc-orange, #f26322);
}

.smm-phone-media-copy strong {
    display: block;

    max-width: 210px;


    color: #ffffff;
}


/* ==========================================================
   PHONE ACTIONS
========================================================== */

.smm-phone-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 11px 13px 7px;


    color: #111111;
}

.smm-phone-actions > div {
    display: flex;
    align-items: center;

    gap: 13px;
}


/* ==========================================================
   PHONE POST COPY
========================================================== */

.smm-phone-post-copy {
    padding: 0 13px 12px;
}

.smm-phone-post-copy > strong {
    display: block;

    margin-bottom: 5px;


    color: #111111;
}

.smm-phone-post-copy p {
    margin: 0;


    color: #5f5a56;
}

.smm-phone-post-copy b {
    color: #111111;
}


/* ==========================================================
   COMMON FLOAT CARD
========================================================== */

.smm-hero-float {
    position: absolute;

    z-index: 7;

    border: 1px solid rgba(17, 17, 17, .07);
    border-radius: 17px;

    background: rgba(255, 255, 255, .96);

    box-shadow:
        0 20px 50px rgba(17, 17, 17, .13);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


/* ==========================================================
   STRATEGY CARD
========================================================== */

.smm-hero-strategy-card {
    top: 80px;
    left: 0;

    display: flex;
    align-items: center;

    gap: 11px;

    width: 215px;

    padding: 14px;

    animation:
        smmFloatOne 6s ease-in-out infinite;
}

.smm-hero-float-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    border-radius: 11px;

    background: rgba(242, 99, 34, .11);

    color: var(--tdc-orange, #f26322);
}

.smm-hero-float-icon i {
}

.smm-hero-strategy-card span {
    display: block;

    margin-bottom: 3px;


    color: var(--tdc-orange, #f26322);
}

.smm-hero-strategy-card strong {
    display: block;


    color: #111111;
}


/* ==========================================================
   ENGAGEMENT CARD
========================================================== */

.smm-hero-engagement-card {
    position: absolute;

    z-index: 7;

    right: 0;
    bottom: 80px;

    width: 235px;

    padding: 16px;

    border: 1px solid rgba(17, 17, 17, .07);
    border-radius: 17px;

    background: rgba(255, 255, 255, .97);

    box-shadow:
        0 22px 55px rgba(17, 17, 17, .15);

    animation:
        smmFloatTwo 7s ease-in-out infinite;
}

.smm-engagement-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    margin-bottom: 5px;
}

.smm-engagement-top > span:first-child {


    color: #8b8580;
}

.smm-engagement-growth {
    padding: 4px 7px;

    border-radius: 50px;

    background: rgba(242, 99, 34, .09);


    color: var(--tdc-orange, #f26322);
}

.smm-hero-engagement-card > strong {
    display: block;


    color: #111111;
}


/* ==========================================================
   ENGAGEMENT BARS
========================================================== */

.smm-engagement-bars {
    height: 58px;

    display: flex;
    align-items: flex-end;

    gap: 6px;

    margin-top: 12px;
    padding-top: 8px;

    border-top: 1px solid #eee9e5;
}

.smm-engagement-bars span {
    flex: 1;

    min-height: 8px;

    border-radius: 4px 4px 2px 2px;

    background:
        linear-gradient(
            180deg,
            var(--tdc-orange, #f26322),
            rgba(242, 99, 34, .38)
        );
}


/* ==========================================================
   CONTENT FORMATS
========================================================== */

.smm-hero-formats {
    position: absolute;

    z-index: 8;

    left: 35px;
    bottom: 90px;

    width: 160px;

    padding: 13px;

    border: 1px solid rgba(17, 17, 17, .07);
    border-radius: 15px;

    background: #111111;

    box-shadow:
        0 18px 45px rgba(17, 17, 17, .18);
}

.smm-hero-formats-label {
    display: block;

    margin-bottom: 8px;


    color: var(--tdc-orange, #f26322);
}

.smm-hero-formats > div {
    display: flex;
    flex-wrap: wrap;

    gap: 5px;
}

.smm-hero-formats > div span {
    padding: 5px 7px;

    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 50px;

    background: rgba(255, 255, 255, .06);


    color: rgba(255, 255, 255, .75);
}


/* ==========================================================
   LIKE DECORATION
========================================================== */

.smm-hero-like {
    position: absolute;

    z-index: 8;

    top: 165px;
    right: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 15px;

    background: var(--tdc-orange, #f26322);

    box-shadow:
        0 15px 35px rgba(242, 99, 34, .30);

    color: #ffffff;

    transform: rotate(8deg);

    animation:
        smmLikeFloat 5s ease-in-out infinite;
}

.smm-hero-like i {
}


/* ==========================================================
   ANIMATIONS
========================================================== */

@keyframes smmFloatOne {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }

}

@keyframes smmFloatTwo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }

}

@keyframes smmLikeFloat {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(8deg);
    }

    50% {
        transform:
            translateY(-8px)
            rotate(3deg);
    }

}


/* ==========================================================
   LAPTOP
========================================================== */

@media (max-width: 1200px) {

    .smm-hero {
        min-height: auto;

        padding: 50px 0;
    }

    .smm-hero-grid {
        grid-template-columns:
            minmax(0, 51%)
            minmax(390px, 49%);

        gap: 45px;
    }

    .smm-hero-content h1 {
    }

    .smm-hero-visual {
        min-height: 620px;
    }

    .smm-hero-phone {
        width: 285px;
        height: 580px;
    }

    .smm-phone-media {
        height: 365px;
    }

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1023px) {

    .smm-hero {
        min-height: auto;

        padding: 45px 0;
    }

    .smm-hero-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .smm-hero-content {
        max-width: 760px;
    }

    .smm-hero-content h1 {
        max-width: 760px;

    }

    .smm-hero-lead {
        max-width: 670px;
    }

    .smm-hero-visual {
        width: 100%;
        max-width: 650px;

        min-height: 640px;

        margin:
            0
            auto;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .smm-hero {
        min-height: auto;

        padding:
            35px
            0
            30px;
    }

    .smm-hero-grid {
        gap: 35px;
    }


    /* ======================================================
       CONTENT
    ====================================================== */

    .smm-hero-eyebrow {
        margin-bottom: 14px;

    }

    .smm-hero-eyebrow-line {
        width: 27px;
    }

    .smm-hero-content h1 {
    }

    .smm-hero-lead {
        margin-top: 17px;

    }


    /* ======================================================
       BUTTONS
    ====================================================== */

    .smm-hero-actions {
        flex-direction: column;
        align-items: stretch;

        margin-top: 22px;
    }

    .smm-hero-primary,
    .smm-hero-secondary {
        width: 100%;
    }


    /* ======================================================
       SERVICE STRIP
    ====================================================== */

    .smm-hero-services {
        display: grid;
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;

        margin-top: 25px;
        padding-top: 18px;
    }

    .smm-hero-service {
        padding: 10px;

        border: 1px solid #e8e2dd;
        border-radius: 10px;

        background: rgba(255, 255, 255, .55);
    }

    .smm-hero-service-divider {
        display: none;
    }


    /* ======================================================
       MOBILE VISUAL

       IMPORTANT:
       Absolute floating cards are removed here.
       Everything stacks normally to avoid overlap.
    ====================================================== */

    .smm-hero-visual {
        display: flex;
        flex-direction: column;
        align-items: stretch;

        width: 100%;
        max-width: 430px;

        min-height: 0;

        gap: 11px;

        margin: 0 auto;
    }


    /* Hide desktop background circle */

    .smm-hero-visual-circle {
        display: none;
    }


    /* ======================================================
       PHONE
    ====================================================== */

    .smm-hero-phone {
        position: relative;

        top: auto;
        left: auto;

        order: 1;

        width: 290px;
        height: 590px;

        margin: 0 auto;

        transform: none;
    }

    .smm-hero-visual:hover .smm-hero-phone {
        transform: none;
    }

    .smm-phone-media {
        height: 375px;
    }


    /* ======================================================
       STRATEGY CARD
    ====================================================== */

    .smm-hero-strategy-card {
        position: relative;

        top: auto;
        left: auto;
        right: auto;
        bottom: auto;

        order: 2;

        width: 100%;

        animation: none;
    }


    /* ======================================================
       ENGAGEMENT CARD
    ====================================================== */

    .smm-hero-engagement-card {
        position: relative;

        top: auto;
        left: auto;
        right: auto;
        bottom: auto;

        order: 3;

        width: 100%;

        animation: none;
    }


    /* ======================================================
       CONTENT FORMATS
    ====================================================== */

    .smm-hero-formats {
        position: relative;

        top: auto;
        left: auto;
        right: auto;
        bottom: auto;

        order: 4;

        width: 100%;
    }


    /* Decorative heart not needed on mobile */

    .smm-hero-like {
        display: none;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .smm-hero-content h1 {
    }

    .smm-hero-phone {
        width: 275px;
        height: 560px;
    }

    .smm-phone-media {
        height: 350px;
    }

    .smm-phone-media-copy strong {
    }

}


/* ==========================================================
   VERY SMALL MOBILE
========================================================== */

@media (max-width: 360px) {

    .smm-hero-content h1 {
    }

    .smm-hero-phone {
        width: 260px;
        height: 540px;
    }

    .smm-phone-media {
        height: 335px;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .smm-hero-phone,
    .smm-phone-media > img,
    .smm-hero-strategy-card,
    .smm-hero-engagement-card,
    .smm-hero-like,
    .smm-hero-primary,
    .smm-hero-secondary {

        animation: none !important;
        transition: none !important;

    }

}
/* ==========================================================
   SOCIAL MEDIA MARKETING PAGE
   SECTION 02 — POSTING IS NOT MARKETING
========================================================== */

.smm-problem {
    position: relative;
    overflow: hidden;

    padding: 50px 0;

    background: #ffffff;
}


/* ==========================================================
   GRID
========================================================== */

.smm-problem-grid {
    display: grid;

    grid-template-columns:
        minmax(360px, 44%)
        minmax(0, 56%);

    align-items: center;

    gap: 70px;
}


/* ==========================================================
   LEFT — VISUAL
========================================================== */

.smm-problem-visual {
    position: relative;

    width: 100%;
    max-width: 560px;

    min-height: 620px;
}


/* ==========================================================
   MAIN IMAGE
========================================================== */

.smm-problem-image {
    position: absolute;

    inset: 0 55px 0 0;

    overflow: hidden;

    border-radius: 26px;

    background: #e8e4df;

    box-shadow:
        0 25px 60px rgba(17, 17, 17, .10);
}

.smm-problem-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(17, 17, 17, .01),
            rgba(17, 17, 17, .03) 55%,
            rgba(17, 17, 17, .38) 100%
        );

    pointer-events: none;
}

.smm-problem-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.22, 1, .36, 1);
}

.smm-problem-visual:hover
.smm-problem-image img {
    transform: scale(1.04);
}


/* ==========================================================
   IMAGE LABEL
========================================================== */

.smm-problem-image-label {
    position: absolute;

    z-index: 5;

    top: 22px;
    left: 22px;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 9px 13px;

    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50px;

    background: rgba(17, 17, 17, .48);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);


    color: #ffffff;
}

.smm-problem-image-dot {
    width: 7px;
    height: 7px;

    flex: 0 0 7px;

    border-radius: 50%;

    background: var(--tdc-orange, #f26322);
}


/* ==========================================================
   CONTENT CALENDAR CARD
========================================================== */

.smm-problem-post-card {
    position: absolute;

    z-index: 6;

    right: 0;
    bottom: 45px;

    width: 310px;

    padding: 18px;

    border: 1px solid rgba(17, 17, 17, .07);
    border-radius: 18px;

    background: rgba(255, 255, 255, .97);

    box-shadow:
        0 24px 60px rgba(17, 17, 17, .16);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


/* ==========================================================
   CALENDAR TOP
========================================================== */

.smm-problem-post-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 14px;
}

.smm-problem-post-top > span:first-child {


    color: #8b8580;
}

.smm-problem-post-status {
    display: inline-flex;
    align-items: center;

    padding: 5px 8px;

    border-radius: 50px;

    background: rgba(242, 99, 34, .09);


    color: var(--tdc-orange, #f26322);
}


/* ==========================================================
   CALENDAR
========================================================== */

.smm-problem-calendar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);

    gap: 6px;
}

.smm-problem-calendar > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 7px;

    min-height: 65px;

    padding: 8px 4px;

    border: 1px solid #eee9e5;
    border-radius: 10px;

    background: #faf9f7;
}

.smm-problem-calendar span {


    color: #9a938e;
}

.smm-problem-calendar strong {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 26px;
    height: 26px;

    border-radius: 8px;

    background: rgba(242, 99, 34, .10);


    color: var(--tdc-orange, #f26322);
}


/* ==========================================================
   CALENDAR KEY
========================================================== */

.smm-problem-calendar-key {
    display: flex;
    flex-wrap: wrap;

    gap: 6px 12px;

    margin-top: 11px;
}

.smm-problem-calendar-key span {

    color: #88817c;
}


/* ==========================================================
   SMALL STRATEGY CARD
========================================================== */

.smm-problem-strategy-card {
    position: absolute;

    z-index: 7;

    top: 85px;
    right: 10px;

    width: 185px;

    padding: 15px 17px;

    border-radius: 15px;

    background: #111111;

    box-shadow:
        0 18px 45px rgba(17, 17, 17, .20);

    animation:
        smmProblemFloat 6s ease-in-out infinite;
}

.smm-problem-strategy-card > span {
    display: block;

    margin-bottom: 4px;


    color: var(--tdc-orange, #f26322);
}

.smm-problem-strategy-card strong {
    display: block;


    color: #ffffff;
}


/* ==========================================================
   RIGHT CONTENT
========================================================== */

.smm-problem-content {
    max-width: 720px;
}


/* ==========================================================
   SECTION EYEBROW
========================================================== */

.smm-section-eyebrow {
    display: flex;
    align-items: center;

    gap: 11px;

    margin-bottom: 15px;


    color: var(--tdc-orange, #f26322);
}

.smm-section-line {
    display: block;

    width: 32px;
    height: 2px;

    flex: 0 0 32px;

    background: var(--tdc-orange, #f26322);
}


/* ==========================================================
   HEADING
========================================================== */

.smm-problem-content h2 {
    max-width: 700px;

    margin: 0;


    color: var(--tdc-black, #111111);
}

.smm-problem-content h2 span {
    display: block;

    margin-top: 5px;

    color: var(--tdc-orange, #f26322);
}


/* ==========================================================
   INTRO COPY
========================================================== */

.smm-problem-lead {
    max-width: 660px;

    margin: 19px 0 0;


    color: #47423f;
}

.smm-problem-text {
    max-width: 660px;

    margin: 11px 0 0;


    color: var(--tdc-text-muted, #66615e);
}


/* ==========================================================
   PROBLEM FLOW
========================================================== */

.smm-problem-flow {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        20px
        minmax(0, 1fr)
        20px
        minmax(0, 1fr);

    align-items: center;

    gap: 7px;

    margin-top: 25px;
}


/* ==========================================================
   FLOW STEP
========================================================== */

.smm-problem-step {
    display: flex;
    align-items: center;

    gap: 10px;

    min-height: 70px;

    padding: 11px;

    border: 1px solid #e9e3df;
    border-radius: 13px;

    background: #faf9f7;

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease;
}

.smm-problem-step:hover {
    transform: translateY(-3px);

    border-color: rgba(242, 99, 34, .25);

    background: #ffffff;
}


/* NUMBER */

.smm-problem-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    flex: 0 0 32px;

    border-radius: 9px;

    background: rgba(242, 99, 34, .09);


    color: var(--tdc-orange, #f26322);
}


/* LABEL */

.smm-problem-step-label {
    display: block;

    margin-bottom: 3px;


    color: #9c958f;
}


/* TITLE */

.smm-problem-step strong {
    display: block;


    color: var(--tdc-black, #111111);
}


/* ==========================================================
   ARROWS
========================================================== */

.smm-problem-arrow {
    display: flex;
    align-items: center;
    justify-content: center;


    color: var(--tdc-orange, #f26322);
}


/* ==========================================================
   COMMON ISSUES
========================================================== */

.smm-problem-issues {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 8px;

    margin-top: 18px;
}

.smm-problem-issue {
    display: flex;
    align-items: center;

    gap: 9px;

    min-height: 48px;

    padding: 9px 11px;

    border-bottom: 1px solid #ece7e3;
}

.smm-problem-issue > span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 27px;
    height: 27px;

    flex: 0 0 27px;

    border-radius: 50%;

    background: #111111;


    color: #ffffff;
}

.smm-problem-issue p {
    margin: 0;


    color: #5f5955;
}


/* ==========================================================
   SOLUTION / OUR APPROACH
========================================================== */

.smm-problem-solution {
    display: grid;
    grid-template-columns: 45px minmax(0, 1fr);

    align-items: center;

    gap: 15px;

    margin-top: 20px;
    padding: 18px;

    border: 1px solid rgba(242, 99, 34, .16);
    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            rgba(242, 99, 34, .065),
            rgba(242, 99, 34, .015)
        );
}


/* ==========================================================
   SOLUTION MARK
========================================================== */

.smm-problem-solution-mark {
    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 5px;

    width: 45px;
    height: 45px;

    padding: 11px;

    border-radius: 12px;

    background: var(--tdc-orange, #f26322);
}

.smm-problem-solution-mark span {
    display: block;

    height: 2px;

    border-radius: 5px;

    background: #ffffff;
}

.smm-problem-solution-mark span:nth-child(1) {
    width: 100%;
}

.smm-problem-solution-mark span:nth-child(2) {
    width: 70%;
}

.smm-problem-solution-mark span:nth-child(3) {
    width: 45%;
}


/* ==========================================================
   SOLUTION CONTENT
========================================================== */

.smm-problem-solution > div:last-child > span {
    display: block;

    margin-bottom: 4px;


    color: var(--tdc-orange, #f26322);
}

.smm-problem-solution strong {
    display: block;

    margin-bottom: 4px;


    color: var(--tdc-black, #111111);
}

.smm-problem-solution p {
    max-width: 580px;

    margin: 0;


    color: #6c6560;
}


/* ==========================================================
   ANIMATION
========================================================== */

@keyframes smmProblemFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }

}


/* ==========================================================
   LAPTOP
========================================================== */

@media (max-width: 1200px) {

    .smm-problem-grid {
        grid-template-columns:
            minmax(340px, 43%)
            minmax(0, 57%);

        gap: 50px;
    }

    .smm-problem-visual {
        min-height: 580px;
    }

    .smm-problem-content h2 {
    }

    .smm-problem-post-card {
        width: 285px;
    }

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1023px) {

    .smm-problem {
        padding: 38px 0;
    }

    .smm-problem-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .smm-problem-visual {
        width: 100%;
        max-width: 650px;

        min-height: 590px;
    }

    .smm-problem-content {
        max-width: 760px;
    }

    .smm-problem-content h2 {
        max-width: 720px;

    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .smm-problem {
        padding: 30px 0;
    }

    .smm-problem-grid {
        gap: 30px;
    }


    /* ======================================================
       MOBILE VISUAL
       REMOVE FLOATING POSITIONING
    ====================================================== */

    .smm-problem-visual {
        display: flex;
        flex-direction: column;

        width: 100%;
        max-width: 100%;

        min-height: 0;

        gap: 10px;
    }


    /* IMAGE */

    .smm-problem-image {
        position: relative;

        inset: auto;

        order: 1;

        width: 100%;
        height: 420px;

        border-radius: 20px;
    }


    /* Image label stays over image */

    .smm-problem-image-label {
        top: 16px;
        left: 16px;
    }


    /* CONTENT CALENDAR */

    .smm-problem-post-card {
        position: relative;

        right: auto;
        bottom: auto;
        top: auto;
        left: auto;

        order: 2;

        width: 100%;
    }


    /* STRATEGY CARD */

    .smm-problem-strategy-card {
        position: relative;

        top: auto;
        right: auto;
        bottom: auto;
        left: auto;

        order: 3;

        width: 100%;

        animation: none;
    }


    /* ======================================================
       CONTENT
    ====================================================== */

    .smm-problem-content h2 {
    }

    .smm-problem-lead {
    }

    .smm-problem-text {
    }


    /* ======================================================
       PROBLEM FLOW
    ====================================================== */

    .smm-problem-flow {
        grid-template-columns: 1fr;

        gap: 6px;

        margin-top: 20px;
    }

    .smm-problem-step {
        min-height: 62px;
    }

    .smm-problem-arrow {
        height: 20px;

        transform: rotate(90deg);
    }


    /* ======================================================
       ISSUES
    ====================================================== */

    .smm-problem-issues {
        grid-template-columns: 1fr;

        gap: 2px;
    }


    /* ======================================================
       SOLUTION
    ====================================================== */

    .smm-problem-solution {
        grid-template-columns: 40px minmax(0, 1fr);

        gap: 12px;

        padding: 15px;
    }

    .smm-problem-solution-mark {
        width: 40px;
        height: 40px;

        padding: 10px;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .smm-problem-content h2 {
    }

    .smm-problem-image {
        height: 360px;
    }

    .smm-problem-calendar {
        gap: 4px;
    }

    .smm-problem-calendar > div {
        min-height: 58px;

        padding: 7px 2px;
    }

    .smm-problem-calendar strong {
        width: 23px;
        height: 23px;
    }

    .smm-problem-solution strong {
    }

}


/* ==========================================================
   VERY SMALL MOBILE
========================================================== */

@media (max-width: 360px) {

    .smm-problem-image {
        height: 330px;
    }

    .smm-problem-post-card {
        padding: 14px;
    }

    .smm-problem-calendar-key {
        gap: 5px 8px;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .smm-problem-image img,
    .smm-problem-strategy-card,
    .smm-problem-step {
        animation: none !important;
        transition: none !important;
    }

}
/* ==========================================================
   SOCIAL MEDIA MARKETING PAGE
   SECTION 03 — SERVICES
========================================================== */

.smm-services {
    position: relative;
    overflow: hidden;

    padding: 50px 0;

    background: #f8f6f3;
}


/* ==========================================================
   SECTION HEADER
========================================================== */

.smm-services-header {
    display: grid;
    grid-template-columns:
        minmax(0, 60%)
        minmax(300px, 40%);

    align-items: end;

    gap: 60px;

    margin-bottom: 32px;
}


/* ==========================================================
   HEADING
========================================================== */

.smm-services-heading h2 {
    max-width: 760px;

    margin: 0;


    color: var(--tdc-black, #111111);
}

.smm-services-heading h2 span {
    display: block;

    margin-top: 5px;

    color: var(--tdc-orange, #f26322);
}


/* ==========================================================
   HEADER INTRO
========================================================== */

.smm-services-intro {
    max-width: 480px;

    padding-bottom: 3px;
}

.smm-services-intro p {
    margin: 0;


    color: var(--tdc-text-muted, #66615e);
}


/* HEADER LINK */

.smm-services-header-link {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-top: 14px;


    text-decoration: none;

    color: var(--tdc-black, #111111);

    transition:
        color .3s ease,
        gap .3s ease;
}

.smm-services-header-link i {

    color: var(--tdc-orange, #f26322);
}

.smm-services-header-link:hover {
    gap: 13px;

    color: var(--tdc-orange, #f26322);
}


/* ==========================================================
   SERVICES GRID
========================================================== */

.smm-services-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 16px;
}


/* ==========================================================
   SERVICE CARD
========================================================== */

.smm-service-card {
    position: relative;

    display: grid;
    grid-template-columns:
        minmax(190px, 42%)
        minmax(0, 58%);

    min-height: 270px;

    overflow: hidden;

    border: 1px solid #e8e2dd;
    border-radius: 20px;

    background: #ffffff;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.smm-service-card:hover {
    transform: translateY(-5px);

    border-color: rgba(242, 99, 34, .25);

    box-shadow:
        0 20px 45px rgba(17, 17, 17, .08);
}


/* ==========================================================
   IMAGE
========================================================== */

.smm-service-image {
    position: relative;

    min-height: 270px;

    overflow: hidden;

    background: #e5e0dc;
}

.smm-service-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(17, 17, 17, .02),
            rgba(17, 17, 17, .05) 48%,
            rgba(17, 17, 17, .55) 100%
        );

    pointer-events: none;
}

.smm-service-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .7s cubic-bezier(.22, 1, .36, 1);
}

.smm-service-card:hover
.smm-service-image img {
    transform: scale(1.055);
}


/* ==========================================================
   SERVICE NUMBER
========================================================== */

.smm-service-number {
    position: absolute;

    z-index: 4;

    top: 15px;
    left: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;

    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 10px;

    background: rgba(17, 17, 17, .50);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);


    color: #ffffff;
}


/* ==========================================================
   CATEGORY
========================================================== */

.smm-service-category {
    position: absolute;

    z-index: 4;

    left: 15px;
    bottom: 15px;

    display: inline-flex;
    align-items: center;

    min-height: 27px;

    padding: 0 10px;

    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 50px;

    background: rgba(17, 17, 17, .48);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);


    color: #ffffff;
}


/* ==========================================================
   SERVICE BODY
========================================================== */

.smm-service-body {
    display: flex;
    flex-direction: column;

    padding: 24px;
}

.smm-service-body h3 {
    margin: 0;


    color: var(--tdc-black, #111111);
}

.smm-service-body > p {
    margin: 11px 0 0;


    color: #706965;
}


/* ==========================================================
   TAGS
========================================================== */

.smm-service-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 5px;

    margin-top: 15px;
}

.smm-service-tags span {
    display: inline-flex;
    align-items: center;

    min-height: 26px;

    padding: 0 9px;

    border: 1px solid #ebe5e1;
    border-radius: 50px;

    background: #faf8f6;


    color: #77706b;

    transition:
        background .3s ease,
        border-color .3s ease,
        color .3s ease;
}

.smm-service-card:hover
.smm-service-tags span {
    border-color: rgba(242, 99, 34, .16);

    background: rgba(242, 99, 34, .045);
}


/* ==========================================================
   SERVICE LINK
========================================================== */

.smm-service-link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    width: fit-content;

    margin-top: auto;
    padding-top: 17px;


    text-decoration: none;

    color: var(--tdc-black, #111111);

    transition:
        color .3s ease,
        gap .3s ease;
}

.smm-service-link i {

    color: var(--tdc-orange, #f26322);
}

.smm-service-link:hover {
    gap: 12px;

    color: var(--tdc-orange, #f26322);
}


/* ==========================================================
   FEATURED CARD
========================================================== */

.smm-service-card-featured {
    border-color: rgba(242, 99, 34, .18);

    background:
        linear-gradient(
            135deg,
            #ffffff,
            rgba(242, 99, 34, .035)
        );
}

.smm-service-card-featured
.smm-service-number {
    background: var(--tdc-orange, #f26322);

    border-color: var(--tdc-orange, #f26322);
}


/* ==========================================================
   REELS / DARK CARD
========================================================== */

.smm-service-card-dark {
    border-color: #111111;

    background: #111111;
}

.smm-service-card-dark
.smm-service-body h3 {
    color: #ffffff;
}

.smm-service-card-dark
.smm-service-body > p {
    color: rgba(255, 255, 255, .58);
}

.smm-service-card-dark
.smm-service-tags span {
    border-color: rgba(255, 255, 255, .10);

    background: rgba(255, 255, 255, .055);

    color: rgba(255, 255, 255, .65);
}

.smm-service-card-dark
.smm-service-link {
    color: #ffffff;
}

.smm-service-card-dark:hover
.smm-service-tags span {
    border-color: rgba(242, 99, 34, .25);

    background: rgba(242, 99, 34, .10);
}


/* ==========================================================
   REEL BADGE
========================================================== */

.smm-service-reel-badge {
    position: absolute;

    z-index: 5;

    top: 15px;
    right: 15px;

    display: inline-flex;
    align-items: center;

    gap: 6px;

    min-height: 29px;

    padding: 0 10px;

    border-radius: 50px;

    background: var(--tdc-orange, #f26322);


    color: #ffffff;
}

.smm-service-reel-badge i {
}


/* ==========================================================
   ANALYTICS CARD
========================================================== */

.smm-service-card-analytics {
    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #ffffff 55%,
            rgba(242, 99, 34, .045) 100%
        );
}


/* ==========================================================
   BOTTOM STRATEGY STRIP
========================================================== */

.smm-services-bottom {
    display: grid;
    grid-template-columns:
        minmax(270px, 38%)
        minmax(0, 62%);

    align-items: center;

    gap: 35px;

    margin-top: 18px;
    padding: 21px 24px;

    border: 1px solid rgba(17, 17, 17, .07);
    border-radius: 18px;

    background: #111111;
}


/* ==========================================================
   BOTTOM LABEL
========================================================== */

.smm-services-bottom-label > span {
    display: block;

    margin-bottom: 5px;


    color: var(--tdc-orange, #f26322);
}

.smm-services-bottom-label strong {
    display: block;

    max-width: 400px;


    color: #ffffff;
}


/* ==========================================================
   BOTTOM FLOW
========================================================== */

.smm-services-bottom-flow {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 12px;
}

.smm-services-bottom-flow > div {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.smm-services-bottom-flow > div span {

    color: var(--tdc-orange, #f26322);
}

.smm-services-bottom-flow > div strong {

    color: rgba(255, 255, 255, .78);
}

.smm-services-bottom-flow > i {

    color: rgba(255, 255, 255, .24);
}


/* ==========================================================
   LAPTOP
========================================================== */

@media (max-width: 1200px) {

    .smm-services-header {
        grid-template-columns:
            minmax(0, 58%)
            minmax(280px, 42%);

        gap: 45px;
    }

    .smm-services-heading h2 {
    }

    .smm-service-card {
        grid-template-columns:
            minmax(175px, 40%)
            minmax(0, 60%);
    }

    .smm-service-body {
        padding: 20px;
    }

    .smm-service-body h3 {
    }

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1023px) {

    .smm-services {
        padding: 38px 0;
    }

    .smm-services-header {
        grid-template-columns: 1fr;

        gap: 15px;

        margin-bottom: 26px;
    }

    .smm-services-heading h2 {
        max-width: 720px;

    }

    .smm-services-intro {
        max-width: 650px;
    }


    /* Cards become full width */

    .smm-services-grid {
        grid-template-columns: 1fr;

        gap: 13px;
    }

    .smm-service-card {
        grid-template-columns:
            minmax(240px, 38%)
            minmax(0, 62%);

        min-height: 260px;
    }

    .smm-service-image {
        min-height: 260px;
    }


    /* Bottom */

    .smm-services-bottom {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .smm-services-bottom-flow {
        justify-content: flex-start;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .smm-services {
        padding: 30px 0;
    }


    /* ======================================================
       HEADER
    ====================================================== */

    .smm-services-header {
        margin-bottom: 22px;
    }

    .smm-services-heading h2 {
    }

    .smm-services-intro p {
    }


    /* ======================================================
       CARDS
    ====================================================== */

    .smm-services-grid {
        gap: 12px;
    }

    .smm-service-card {
        display: block;

        min-height: 0;

        border-radius: 17px;
    }

    .smm-service-card:hover {
        transform: none;
    }


    /* Image */

    .smm-service-image {
        width: 100%;
        height: 220px;

        min-height: 0;
    }


    /* Body */

    .smm-service-body {
        min-height: 225px;

        padding: 18px;
    }

    .smm-service-body h3 {
    }

    .smm-service-body > p {
    }


    /* ======================================================
       BOTTOM STRATEGY
    ====================================================== */

    .smm-services-bottom {
        margin-top: 13px;

        padding: 18px;
    }

    .smm-services-bottom-flow {
        display: grid;
        grid-template-columns:
            1fr
            15px
            1fr
            15px
            1fr;

        gap: 7px;
    }

    .smm-services-bottom-flow > div {
        padding: 8px;

        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 9px;

        background: rgba(255, 255, 255, .035);
    }


    /*
       4th and 5th steps go onto another row
    */

    .smm-services-bottom-flow > div:nth-of-type(4),
    .smm-services-bottom-flow > div:nth-of-type(5) {
        margin-top: 4px;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .smm-services-heading h2 {
    }

    .smm-service-image {
        height: 200px;
    }

    .smm-service-body {
        min-height: 215px;

        padding: 16px;
    }


    /* Bottom flow becomes horizontal scroll */

    .smm-services-bottom-flow {
        display: flex;

        overflow-x: auto;

        gap: 8px;

        padding-bottom: 3px;

        scrollbar-width: none;
    }

    .smm-services-bottom-flow::-webkit-scrollbar {
        display: none;
    }

    .smm-services-bottom-flow > div {
        min-width: 82px;

        flex: 0 0 auto;
    }

    .smm-services-bottom-flow > i {
        flex: 0 0 auto;
    }

}


/* ==========================================================
   VERY SMALL MOBILE
========================================================== */

@media (max-width: 360px) {

    .smm-service-image {
        height: 185px;
    }

    .smm-service-body h3 {
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .smm-service-card,
    .smm-service-image img,
    .smm-service-link,
    .smm-services-header-link,
    .smm-service-tags span {
        transition: none !important;
    }

}
/* ==========================================================
   SECTION 05 — SOCIAL MEDIA STRATEGY FRAMEWORK

   TYPOGRAPHY CONTROLLED BY GLOBAL CSS
========================================================== */

.smm-process {
    position: relative;
    overflow: hidden;

    padding: 50px 0;

    background: #f8f6f3;
}


/* ==========================================================
   HEADER
========================================================== */

.smm-process-header {
    display: grid;
    grid-template-columns:
        minmax(0, 60%)
        minmax(300px, 40%);

    align-items: end;

    gap: 60px;

    margin-bottom: 30px;
}

.smm-process-header h2 {
    max-width: 760px;
    margin: 0;

    color: var(--tdc-black, #111111);
}

.smm-process-header h2 span {
    display: block;

    color: var(--tdc-orange, #f26322);
}

.smm-process-intro {
    max-width: 480px;
}

.smm-process-intro p {
    margin: 0;

    color: var(--tdc-text-muted, #66615e);
}


/* ==========================================================
   MAIN LAYOUT
========================================================== */

.smm-process-layout {
    display: grid;
    grid-template-columns:
        minmax(350px, 40%)
        minmax(0, 60%);

    align-items: start;

    gap: 32px;
}


/* ==========================================================
   LEFT VISUAL
========================================================== */

.smm-process-visual {
    position: sticky;
    top: 100px;

    min-height: 620px;
}


/* ==========================================================
   IMAGE
========================================================== */

.smm-process-image {
    position: absolute;
    inset: 0 40px 0 0;

    overflow: hidden;

    border-radius: 24px;

    background: #ddd8d4;

    box-shadow:
        0 22px 55px rgba(17, 17, 17, .10);
}

.smm-process-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 35%,
            rgba(17,17,17,.08) 60%,
            rgba(17,17,17,.72) 100%
        );

    pointer-events: none;
}

.smm-process-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;
}

.smm-process-visual:hover
.smm-process-image img {
    transform: scale(1.035);
}


/* ==========================================================
   IMAGE COPY
========================================================== */

.smm-process-image-overlay {
    position: absolute;

    z-index: 4;

    left: 24px;
    right: 70px;
    bottom: 28px;

    color: #ffffff;
}

.smm-process-image-overlay > span {
    display: block;

    margin-bottom: 6px;

    color: var(--tdc-orange, #f26322);
}

.smm-process-image-overlay strong {
    display: block;
}


/* ==========================================================
   FLOATING CARD
========================================================== */

.smm-process-float {
    position: absolute;

    z-index: 6;

    right: 0;
    top: 55px;

    width: 260px;

    padding: 17px;

    border: 1px solid rgba(17,17,17,.08);
    border-radius: 17px;

    background: rgba(255,255,255,.97);

    box-shadow:
        0 22px 55px rgba(17,17,17,.16);
}


/* TOP */

.smm-process-float-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    margin-bottom: 14px;
}

.smm-process-float-top > span:first-child {
    color: #7d7671;
}

.smm-process-live {
    padding: 5px 8px;

    border-radius: 50px;

    background: rgba(242,99,34,.10);

    color: var(--tdc-orange, #f26322);
}


/* ==========================================================
   MINI FLOW
========================================================== */

.smm-process-mini-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 6px;
}

.smm-process-mini-flow > div {
    flex: 1;

    padding: 9px 7px;

    border: 1px solid #ece7e3;
    border-radius: 9px;

    background: #faf9f7;

    text-align: center;
}

.smm-process-mini-flow > div span {
    display: block;

    margin-bottom: 2px;

    color: var(--tdc-orange, #f26322);
}

.smm-process-mini-flow > div strong {
    display: block;

    color: #111111;
}

.smm-process-mini-flow > i {
    flex: 0 0 auto;

    color: #c8c1bc;
}


/* ==========================================================
   PROCESS STEPS
========================================================== */

.smm-process-steps {
    position: relative;

    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;
}


/* ==========================================================
   STEP
========================================================== */

.smm-process-step {
    position: relative;

    display: grid;
    grid-template-columns: 45px minmax(0, 1fr);

    gap: 14px;

    min-height: 205px;

    padding: 18px;

    border: 1px solid #e8e2dd;
    border-radius: 16px;

    background: #ffffff;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.smm-process-step:hover {
    transform: translateY(-3px);

    border-color: rgba(242,99,34,.28);

    box-shadow:
        0 14px 35px rgba(17,17,17,.06);
}


/* ==========================================================
   NUMBER
========================================================== */

.smm-process-step-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    border-radius: 12px;

    background: #111111;

    color: #ffffff;

    transition:
        background .3s ease,
        color .3s ease;
}

.smm-process-step:hover
.smm-process-step-number {
    background: var(--tdc-orange, #f26322);
}


/* ==========================================================
   STEP CONTENT
========================================================== */

.smm-process-step-label {
    display: block;

    margin-bottom: 4px;

    color: var(--tdc-orange, #f26322);
}

.smm-process-step-content h3 {
    margin: 0;

    color: var(--tdc-black, #111111);
}

.smm-process-step-content p {
    margin: 8px 0 0;

    color: var(--tdc-text-muted, #66615e);
}


/* ==========================================================
   TAGS
========================================================== */

.smm-process-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 5px;

    margin-top: 12px;
}

.smm-process-tags span {
    padding: 5px 8px;

    border: 1px solid #eae5e1;
    border-radius: 50px;

    background: #faf8f6;

    color: #756e69;
}


/* ==========================================================
   FINAL STEP
========================================================== */

.smm-process-step-final {
    border-color: rgba(242,99,34,.22);

    background:
        linear-gradient(
            135deg,
            #ffffff,
            rgba(242,99,34,.055)
        );
}

.smm-process-step-final
.smm-process-step-number {
    background: var(--tdc-orange, #f26322);
}


/* ==========================================================
   BOTTOM MESSAGE
========================================================== */

.smm-process-bottom {
    display: grid;
    grid-template-columns:
        45px
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 15px;

    margin-top: 18px;
    padding: 18px 20px;

    border-radius: 16px;

    background: #111111;
}


/* MARK */

.smm-process-bottom-mark {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 45px;
    height: 45px;

    border-radius: 12px;

    background: rgba(242,99,34,.15);

    color: var(--tdc-orange, #f26322);
}


/* COPY */

.smm-process-bottom > div > span {
    display: block;

    margin-bottom: 3px;

    color: var(--tdc-orange, #f26322);
}

.smm-process-bottom strong {
    display: block;

    color: #ffffff;
}


/* CTA */

.smm-process-bottom a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 46px;

    padding: 0 18px;

    border-radius: 50px;

    background: var(--tdc-orange, #f26322);

    text-decoration: none;

    color: #ffffff;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.smm-process-bottom a:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(242,99,34,.25);

    color: #ffffff;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1023px) {

    .smm-process {
        padding: 38px 0;
    }

    .smm-process-header {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .smm-process-intro {
        max-width: 650px;
    }

    .smm-process-layout {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .smm-process-visual {
        position: relative;
        top: auto;

        width: 100%;
        max-width: 650px;

        min-height: 560px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .smm-process {
        padding: 30px 0;
    }


    /* ======================================================
       VISUAL — NORMAL FLOW TO PREVENT OVERLAP
    ====================================================== */

    .smm-process-visual {
        display: flex;
        flex-direction: column;

        min-height: 0;

        gap: 10px;
    }

    .smm-process-image {
        position: relative;
        inset: auto;

        width: 100%;
        height: 390px;

        border-radius: 19px;
    }

    .smm-process-image-overlay {
        left: 18px;
        right: 18px;
        bottom: 20px;
    }

    .smm-process-float {
        position: relative;

        top: auto;
        right: auto;

        width: 100%;
    }


    /* ======================================================
       PROCESS
    ====================================================== */

    .smm-process-steps {
        grid-template-columns: 1fr;

        gap: 8px;
    }

    .smm-process-step {
        min-height: 0;

        padding: 16px;
    }

    .smm-process-step:hover {
        transform: none;
    }


    /* ======================================================
       BOTTOM CTA
    ====================================================== */

    .smm-process-bottom {
        grid-template-columns:
            42px
            minmax(0, 1fr);

        gap: 12px;

        padding: 16px;
    }

    .smm-process-bottom-mark {
        width: 42px;
        height: 42px;
    }

    .smm-process-bottom a {
        grid-column: 1 / -1;

        width: 100%;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .smm-process-image {
        height: 340px;
    }

    .smm-process-step {
        grid-template-columns: 40px minmax(0, 1fr);

        gap: 11px;
    }

    .smm-process-step-number {
        width: 40px;
        height: 40px;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .smm-process-image img,
    .smm-process-step,
    .smm-process-bottom a {
        transition: none !important;
    }

}
/* ==========================================================
   SECTION 04 — SOCIAL MEDIA PLATFORMS

   TYPOGRAPHY IS CONTROLLED GLOBALLY.
========================================================== */

.smm-platforms {
    position: relative;
    overflow: hidden;

    padding: 50px 0;

    background: #ffffff;
}


/* ==========================================================
   HEADER
========================================================== */

.smm-platforms-header {
    display: grid;
    grid-template-columns:
        minmax(0, 60%)
        minmax(300px, 40%);

    align-items: end;

    gap: 60px;

    margin-bottom: 30px;
}

.smm-platforms-header h2 {
    max-width: 760px;
    margin: 0;

    color: var(--tdc-black, #111111);
}

.smm-platforms-header h2 span {
    display: block;

    color: var(--tdc-orange, #f26322);
}

.smm-platforms-intro {
    max-width: 480px;
}

.smm-platforms-intro p {
    margin: 0;

    color: var(--tdc-text-muted, #66615e);
}


/* ==========================================================
   MAIN LAYOUT
========================================================== */

.smm-platforms-layout {
    display: grid;
    grid-template-columns:
        minmax(340px, 38%)
        minmax(0, 62%);

    align-items: stretch;

    gap: 28px;
}


/* ==========================================================
   LEFT VISUAL
========================================================== */

.smm-platforms-visual {
    position: relative;

    min-height: 630px;
}


/* IMAGE */

.smm-platforms-image {
    position: absolute;
    inset: 0 40px 0 0;

    overflow: hidden;

    border-radius: 24px;

    background: #e6e1dd;

    box-shadow:
        0 22px 55px rgba(17, 17, 17, .10);
}

.smm-platforms-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 35%,
            rgba(17, 17, 17, .08) 65%,
            rgba(17, 17, 17, .50) 100%
        );

    pointer-events: none;
}

.smm-platforms-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;
}

.smm-platforms-visual:hover
.smm-platforms-image img {
    transform: scale(1.035);
}


/* ==========================================================
   IMAGE LABEL
========================================================== */

.smm-platforms-image-label {
    position: absolute;

    z-index: 4;

    top: 20px;
    left: 20px;

    display: flex;
    align-items: center;

    gap: 8px;

    padding: 9px 13px;

    border: 1px solid rgba(255,255,255,.20);
    border-radius: 50px;

    background: rgba(17,17,17,.50);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    color: #ffffff;
}

.smm-platforms-image-label > span {
    width: 7px;
    height: 7px;

    flex: 0 0 7px;

    border-radius: 50%;

    background: var(--tdc-orange, #f26322);
}


/* ==========================================================
   FLOATING CARD
========================================================== */

.smm-platforms-float {
    position: absolute;

    z-index: 5;

    right: 0;
    bottom: 35px;

    width: 255px;

    padding: 18px;

    border: 1px solid rgba(17,17,17,.08);
    border-radius: 17px;

    background: #ffffff;

    box-shadow:
        0 22px 55px rgba(17,17,17,.16);
}

.smm-platforms-float > span {
    display: block;

    margin-bottom: 5px;

    color: var(--tdc-orange, #f26322);
}

.smm-platforms-float strong {
    display: block;

    color: var(--tdc-black, #111111);
}

.smm-platforms-float-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 5px;

    margin-top: 13px;
}

.smm-platforms-float-tags span {
    padding: 6px 9px;

    border-radius: 50px;

    background: #f7f4f1;

    color: #716a65;
}


/* ==========================================================
   PLATFORM LIST
========================================================== */

.smm-platform-list {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;
}


/* ==========================================================
   PLATFORM ITEM
========================================================== */

.smm-platform-item {
    position: relative;

    padding: 18px;

    border: 1px solid #e9e4df;
    border-radius: 16px;

    background: #faf9f7;

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.smm-platform-item:hover {
    transform: translateY(-3px);

    border-color: rgba(242,99,34,.25);

    background: #ffffff;

    box-shadow:
        0 14px 35px rgba(17,17,17,.06);
}


/* ==========================================================
   PLATFORM TOP
========================================================== */

.smm-platform-top {
    display: flex;
    align-items: center;

    gap: 12px;
}

.smm-platform-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    flex: 0 0 32px;

    border-radius: 9px;

    background: #111111;

    color: #ffffff;
}


/* ==========================================================
   PLATFORM NAME
========================================================== */

.smm-platform-name {
    display: flex;
    align-items: center;

    gap: 9px;
}

.smm-platform-symbol {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    border-radius: 10px;

    background: rgba(242,99,34,.10);

    color: var(--tdc-orange, #f26322);
}

.smm-platform-name h3 {
    margin: 0;

    color: var(--tdc-black, #111111);
}


/* ==========================================================
   PLATFORM COPY
========================================================== */

.smm-platform-item > p {
    margin: 13px 0 0;

    color: var(--tdc-text-muted, #66615e);
}


/* ==========================================================
   TAGS
========================================================== */

.smm-platform-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 5px;

    margin-top: 13px;
}

.smm-platform-tags span {
    padding: 5px 8px;

    border: 1px solid #e9e3de;
    border-radius: 50px;

    background: #ffffff;

    color: #756e69;
}


/* ==========================================================
   ACTIVE HOVER ACCENT
========================================================== */

.smm-platform-item::after {
    content: "";

    position: absolute;

    left: 18px;
    right: 18px;
    bottom: 0;

    height: 2px;

    border-radius: 10px;

    background: var(--tdc-orange, #f26322);

    transform: scaleX(0);
    transform-origin: left;

    transition: transform .3s ease;
}

.smm-platform-item:hover::after {
    transform: scaleX(1);
}


/* ==========================================================
   BOTTOM JOURNEY
========================================================== */

.smm-platforms-bottom {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 20px;

    margin-top: 18px;
    padding: 18px 22px;

    border-radius: 16px;

    background: #111111;
}

.smm-platforms-bottom > div {
    display: flex;
    align-items: center;

    gap: 10px;
}

.smm-platforms-bottom-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    border-radius: 9px;

    background: rgba(242,99,34,.15);

    color: var(--tdc-orange, #f26322);
}

.smm-platforms-bottom > div > div > span {
    display: block;

    color: var(--tdc-orange, #f26322);
}

.smm-platforms-bottom strong {
    display: block;

    color: #ffffff;
}

.smm-platforms-bottom-arrow {
    color: rgba(255,255,255,.25);
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1023px) {

    .smm-platforms {
        padding: 38px 0;
    }

    .smm-platforms-header {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .smm-platforms-intro {
        max-width: 650px;
    }

    .smm-platforms-layout {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .smm-platforms-visual {
        max-width: 650px;

        min-height: 560px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .smm-platforms {
        padding: 30px 0;
    }


    /* Visual becomes normal document flow */

    .smm-platforms-visual {
        display: flex;
        flex-direction: column;

        min-height: 0;

        gap: 10px;
    }

    .smm-platforms-image {
        position: relative;
        inset: auto;

        width: 100%;
        height: 390px;

        border-radius: 19px;
    }

    .smm-platforms-image-label {
        top: 15px;
        left: 15px;
    }

    .smm-platforms-float {
        position: relative;

        right: auto;
        bottom: auto;

        width: 100%;
    }


    /* Platform cards */

    .smm-platform-list {
        grid-template-columns: 1fr;

        gap: 8px;
    }

    .smm-platform-item {
        padding: 16px;
    }

    .smm-platform-item:hover {
        transform: none;
    }


    /* Bottom journey */

    .smm-platforms-bottom {
        flex-direction: column;
        align-items: stretch;

        gap: 8px;

        padding: 16px;
    }

    .smm-platforms-bottom > div {
        padding: 9px;

        border: 1px solid rgba(255,255,255,.08);
        border-radius: 10px;
    }

    .smm-platforms-bottom-arrow {
        align-self: center;

        transform: rotate(90deg);
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .smm-platforms-image {
        height: 340px;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .smm-platforms-image img,
    .smm-platform-item {
        transition: none !important;
    }

}
/* ==========================================================
   SECTION 07 — WHY CHOOSE THE DIGITAL CAFE

   TYPOGRAPHY CONTROLLED BY GLOBAL CSS
========================================================== */

.smm-why {
    position: relative;
    overflow: hidden;

    padding: 50px 0;

    background: #ffffff;
}


/* ==========================================================
   HEADER
========================================================== */

.smm-why-header {
    display: grid;
    grid-template-columns:
        minmax(0, 60%)
        minmax(300px, 40%);

    align-items: end;

    gap: 60px;

    margin-bottom: 30px;
}

.smm-why-heading h2 {
    max-width: 780px;
    margin: 0;

    color: var(--tdc-black, #111111);
}

.smm-why-heading h2 span {
    display: block;

    color: var(--tdc-orange, #f26322);
}

.smm-why-intro {
    max-width: 480px;
}

.smm-why-intro p {
    margin: 0;

    color: var(--tdc-text-muted, #66615e);
}


/* ==========================================================
   HEADER LINK
========================================================== */

.smm-why-intro-link {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-top: 14px;

    text-decoration: none;

    color: var(--tdc-black, #111111);

    transition:
        gap .3s ease,
        color .3s ease;
}

.smm-why-intro-link i {
    color: var(--tdc-orange, #f26322);
}

.smm-why-intro-link:hover {
    gap: 13px;

    color: var(--tdc-orange, #f26322);
}


/* ==========================================================
   MAIN LAYOUT
========================================================== */

.smm-why-layout {
    display: grid;
    grid-template-columns:
        minmax(360px, 43%)
        minmax(0, 57%);

    align-items: stretch;

    gap: 30px;
}


/* ==========================================================
   LEFT VISUAL
========================================================== */

.smm-why-visual {
    position: relative;

    min-height: 660px;
}


/* ==========================================================
   IMAGE
========================================================== */

.smm-why-image {
    position: absolute;

    inset: 0 45px 0 0;

    overflow: hidden;

    border-radius: 24px;

    background: #e4dfda;

    box-shadow:
        0 22px 55px rgba(17,17,17,.10);
}

.smm-why-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(17,17,17,.01) 25%,
            rgba(17,17,17,.08) 55%,
            rgba(17,17,17,.72) 100%
        );

    pointer-events: none;
}

.smm-why-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;
}

.smm-why-visual:hover
.smm-why-image img {
    transform: scale(1.035);
}


/* ==========================================================
   IMAGE COPY
========================================================== */

.smm-why-image-copy {
    position: absolute;

    z-index: 4;

    left: 24px;
    right: 90px;
    bottom: 27px;
}

.smm-why-image-copy > span {
    display: block;

    margin-bottom: 5px;

    color: var(--tdc-orange, #f26322);
}

.smm-why-image-copy strong {
    display: block;

    color: #ffffff;
}


/* ==========================================================
   FLOATING QUOTE
========================================================== */

.smm-why-float {
    position: absolute;

    z-index: 6;

    top: 55px;
    right: 0;

    width: 280px;

    padding: 19px;

    border: 1px solid rgba(17,17,17,.08);
    border-radius: 18px;

    background: rgba(255,255,255,.97);

    box-shadow:
        0 22px 55px rgba(17,17,17,.16);
}

.smm-why-float-mark {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    margin-bottom: 12px;

    border-radius: 10px;

    background: var(--tdc-orange, #f26322);

    color: #ffffff;
}

.smm-why-float p {
    margin: 0;

    color: #66615e;
}

.smm-why-float strong {
    display: block;

    margin-top: 8px;

    color: #111111;
}


/* ==========================================================
   RIGHT POINTS
========================================================== */

.smm-why-points {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;
}


/* ==========================================================
   POINT
========================================================== */

.smm-why-point {
    position: relative;

    display: grid;
    grid-template-columns:
        42px
        minmax(0, 1fr);

    gap: 13px;

    min-height: 210px;

    padding: 18px;

    overflow: hidden;

    border: 1px solid #e9e4df;
    border-radius: 16px;

    background: #faf9f7;

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.smm-why-point:hover {
    transform: translateY(-3px);

    border-color: rgba(242,99,34,.25);

    background: #ffffff;

    box-shadow:
        0 14px 35px rgba(17,17,17,.06);
}


/* Orange bottom indicator */

.smm-why-point::after {
    content: "";

    position: absolute;

    left: 18px;
    right: 18px;
    bottom: 0;

    height: 2px;

    border-radius: 20px;

    background: var(--tdc-orange, #f26322);

    transform: scaleX(0);
    transform-origin: left;

    transition: transform .3s ease;
}

.smm-why-point:hover::after {
    transform: scaleX(1);
}


/* ==========================================================
   NUMBER
========================================================== */

.smm-why-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 11px;

    background: #111111;

    color: #ffffff;

    transition:
        background .3s ease,
        color .3s ease;
}

.smm-why-point:hover
.smm-why-number {
    background: var(--tdc-orange, #f26322);
}


/* ==========================================================
   POINT CONTENT
========================================================== */

.smm-why-point > div:last-child > span {
    display: block;

    margin-bottom: 4px;

    color: var(--tdc-orange, #f26322);
}

.smm-why-point h3 {
    margin: 0;

    color: var(--tdc-black, #111111);
}

.smm-why-point p {
    margin: 9px 0 0;

    color: var(--tdc-text-muted, #66615e);
}


/* ==========================================================
   BOTTOM CTA
========================================================== */

.smm-why-bottom {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 30px;

    margin-top: 18px;
    padding: 22px 24px;

    border-radius: 18px;

    background: #111111;
}


/* COPY */

.smm-why-bottom-copy > span {
    display: block;

    margin-bottom: 4px;

    color: var(--tdc-orange, #f26322);
}

.smm-why-bottom-copy strong {
    display: block;

    max-width: 700px;

    color: #ffffff;
}


/* ==========================================================
   CTA ACTIONS
========================================================== */

.smm-why-bottom-actions {
    display: flex;
    align-items: center;

    gap: 8px;
}

.smm-why-primary,
.smm-why-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,
        border-color .3s ease;
}


/* PRIMARY */

.smm-why-primary {
    border: 1px solid var(--tdc-orange, #f26322);

    background: var(--tdc-orange, #f26322);

    color: #ffffff;
}

.smm-why-primary:hover {
    transform: translateY(-2px);

    color: #ffffff;
}


/* SECONDARY */

.smm-why-secondary {
    border: 1px solid rgba(255,255,255,.16);

    background: rgba(255,255,255,.06);

    color: #ffffff;
}

.smm-why-secondary:hover {
    transform: translateY(-2px);

    border-color: rgba(255,255,255,.35);

    background: rgba(255,255,255,.10);

    color: #ffffff;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1023px) {

    .smm-why {
        padding: 38px 0;
    }

    .smm-why-header {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .smm-why-intro {
        max-width: 650px;
    }

    .smm-why-layout {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .smm-why-visual {
        width: 100%;
        max-width: 650px;

        min-height: 580px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .smm-why {
        padding: 30px 0;
    }


    /* ======================================================
       VISUAL
       NORMAL FLOW — NO OVERLAP
    ====================================================== */

    .smm-why-visual {
        display: flex;
        flex-direction: column;

        min-height: 0;

        gap: 10px;
    }

    .smm-why-image {
        position: relative;

        inset: auto;

        width: 100%;
        height: 400px;

        border-radius: 19px;
    }

    .smm-why-image-copy {
        left: 18px;
        right: 18px;
        bottom: 20px;
    }


    /* Quote becomes normal card */

    .smm-why-float {
        position: relative;

        top: auto;
        right: auto;

        width: 100%;
    }


    /* ======================================================
       POINTS
    ====================================================== */

    .smm-why-points {
        grid-template-columns: 1fr;

        gap: 8px;
    }

    .smm-why-point {
        min-height: 0;

        padding: 16px;
    }

    .smm-why-point:hover {
        transform: none;
    }


    /* ======================================================
       BOTTOM
    ====================================================== */

    .smm-why-bottom {
        grid-template-columns: 1fr;

        gap: 15px;

        padding: 18px;
    }

    .smm-why-bottom-actions {
        align-items: stretch;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .smm-why-image {
        height: 340px;
    }

    .smm-why-point {
        grid-template-columns:
            38px
            minmax(0, 1fr);

        gap: 11px;
    }

    .smm-why-number {
        width: 38px;
        height: 38px;
    }

    .smm-why-bottom-actions {
        flex-direction: column;
    }

    .smm-why-primary,
    .smm-why-secondary {
        width: 100%;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .smm-why-image img,
    .smm-why-point,
    .smm-why-primary,
    .smm-why-secondary,
    .smm-why-intro-link {
        transition: none !important;
    }

}
/* ==========================================================
   SECTION 08 — WHO WE HELP
   TYPOGRAPHY CONTROLLED BY GLOBAL CSS
========================================================== */

.smm-industries {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    background: #f8f6f3;
}


/* ==========================================================
   HEADER
========================================================== */

.smm-industries-header {
    display: grid;
    grid-template-columns: minmax(0, 60%) minmax(300px, 40%);
    align-items: end;
    gap: 60px;
    margin-bottom: 30px;
}

.smm-industries-header h2 {
    max-width: 760px;
    margin: 0;
    color: var(--tdc-black, #111111);
}

.smm-industries-header h2 span {
    display: block;
    color: var(--tdc-orange, #f26322);
}

.smm-industries-intro {
    max-width: 480px;
}

.smm-industries-intro p {
    margin: 0;
    color: var(--tdc-text-muted, #66615e);
}


/* ==========================================================
   EDITORIAL GRID
========================================================== */

.smm-industries-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 280px;
    gap: 12px;
}


/* ==========================================================
   CARD
========================================================== */

.smm-industry-card {
    position: relative;
    overflow: hidden;

    border-radius: 18px;
    background: #ddd8d4;
}

.smm-industry-large {
    grid-column: span 2;
    grid-row: span 2;
}

.smm-industry-wide {
    grid-column: span 2;
}


/* ==========================================================
   IMAGE
========================================================== */

.smm-industry-image {
    position: absolute;
    inset: 0;
}

.smm-industry-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform .7s ease;
}

.smm-industry-card:hover .smm-industry-image img {
    transform: scale(1.05);
}


/* ==========================================================
   OVERLAY
========================================================== */

.smm-industry-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(17,17,17,.04) 15%,
            rgba(17,17,17,.15) 48%,
            rgba(17,17,17,.85) 100%
        );

    transition: background .3s ease;
}

.smm-industry-card:hover .smm-industry-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(17,17,17,.05) 10%,
            rgba(17,17,17,.22) 45%,
            rgba(17,17,17,.92) 100%
        );
}


/* ==========================================================
   NUMBER
========================================================== */

.smm-industry-number {
    position: absolute;
    z-index: 4;

    top: 16px;
    left: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border: 1px solid rgba(255,255,255,.20);
    border-radius: 10px;

    background: rgba(17,17,17,.42);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    color: #ffffff;
}


/* ==========================================================
   CONTENT
========================================================== */

.smm-industry-content {
    position: absolute;
    z-index: 4;

    left: 18px;
    right: 18px;
    bottom: 18px;

    color: #ffffff;
}

.smm-industry-content > span {
    display: block;
    margin-bottom: 4px;

    color: var(--tdc-orange, #f26322);
}

.smm-industry-content h3 {
    margin: 0;
    color: #ffffff;
}

.smm-industry-content p {
    max-width: 470px;

    margin: 8px 0 0;

    color: rgba(255,255,255,.74);
}


/* ==========================================================
   TAGS
========================================================== */

.smm-industry-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 5px;
    margin-top: 12px;
}

.smm-industry-tags span {
    padding: 6px 9px;

    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50px;

    background: rgba(255,255,255,.08);

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    color: rgba(255,255,255,.82);
}


/* ==========================================================
   ORANGE HOVER LINE
========================================================== */

.smm-industry-card::after {
    content: "";

    position: absolute;
    z-index: 5;

    left: 18px;
    right: 18px;
    bottom: 0;

    height: 3px;

    border-radius: 10px;

    background: var(--tdc-orange, #f26322);

    transform: scaleX(0);
    transform-origin: left;

    transition: transform .35s ease;
}

.smm-industry-card:hover::after {
    transform: scaleX(1);
}


/* ==========================================================
   BOTTOM CTA
========================================================== */

.smm-industries-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;

    align-items: center;
    gap: 30px;

    margin-top: 16px;
    padding: 20px 22px;

    border: 1px solid rgba(17,17,17,.07);
    border-radius: 17px;

    background: #ffffff;
}

.smm-industries-bottom-copy > span {
    display: block;
    margin-bottom: 4px;

    color: var(--tdc-orange, #f26322);
}

.smm-industries-bottom-copy strong {
    display: block;
    max-width: 720px;

    color: var(--tdc-black, #111111);
}


/* ==========================================================
   CTA
========================================================== */

.smm-industries-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 48px;
    padding: 0 19px;

    border: 1px solid var(--tdc-orange, #f26322);
    border-radius: 50px;

    background: var(--tdc-orange, #f26322);

    text-decoration: none;
    white-space: nowrap;

    color: #ffffff;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.smm-industries-cta:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 28px rgba(242,99,34,.22);

    color: #ffffff;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1023px) {

    .smm-industries {
        padding: 38px 0;
    }

    .smm-industries-header {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .smm-industries-intro {
        max-width: 650px;
    }

    .smm-industries-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 300px;
    }

    .smm-industry-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .smm-industry-wide {
        grid-column: span 2;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .smm-industries {
        padding: 30px 0;
    }

    .smm-industries-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;

        gap: 9px;
    }

    .smm-industry-card,
    .smm-industry-large,
    .smm-industry-wide {
        grid-column: auto;
        grid-row: auto;

        min-height: 360px;
    }

    .smm-industry-card:hover .smm-industry-image img {
        transform: none;
    }


    /* Bottom CTA */

    .smm-industries-bottom {
        grid-template-columns: 1fr;

        gap: 14px;
        padding: 17px;
    }

    .smm-industries-cta {
        width: 100%;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .smm-industry-card,
    .smm-industry-large,
    .smm-industry-wide {
        min-height: 330px;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .smm-industry-image img,
    .smm-industry-card::after,
    .smm-industries-cta {
        transition: none !important;
    }

}
/* ==========================================================
   SOCIAL MEDIA MARKETING — FAQ
   TYPOGRAPHY CONTROLLED BY GLOBAL CSS
========================================================== */

.smm-faq {
    position: relative;
    overflow: hidden;

    padding: 50px 0;

    background: #ffffff;
}


/* ==========================================================
   LAYOUT
========================================================== */

.smm-faq-layout {
    display: grid;
    grid-template-columns:
        minmax(300px, 34%)
        minmax(0, 66%);

    align-items: start;

    gap: 70px;
}


/* ==========================================================
   LEFT
========================================================== */

.smm-faq-intro {
    position: sticky;
    top: 100px;
}

.smm-faq-intro h2 {
    max-width: 480px;
    margin: 0;

    color: var(--tdc-black, #111111);
}

.smm-faq-intro h2 span {
    display: block;

    color: var(--tdc-orange, #f26322);
}

.smm-faq-intro > p {
    max-width: 460px;

    margin: 17px 0 0;

    color: var(--tdc-text-muted, #66615e);
}


/* ==========================================================
   HELP CARD
========================================================== */

.smm-faq-help {
    position: relative;
    overflow: hidden;

    margin-top: 25px;
    padding: 22px;

    border-radius: 18px;

    background: #111111;
}

.smm-faq-help::after {
    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    right: -70px;
    bottom: -100px;

    border-radius: 50%;

    background: rgba(242, 99, 34, .12);

    pointer-events: none;
}

.smm-faq-help > span {
    position: relative;
    z-index: 2;

    display: block;

    margin-bottom: 5px;

    color: var(--tdc-orange, #f26322);
}

.smm-faq-help strong {
    position: relative;
    z-index: 2;

    display: block;

    color: #ffffff;
}

.smm-faq-help p {
    position: relative;
    z-index: 2;

    margin: 9px 0 0;

    color: rgba(255,255,255,.62);
}


/* ==========================================================
   HELP CTA
========================================================== */

.smm-faq-help a {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 46px;

    margin-top: 17px;
    padding: 0 18px;

    border-radius: 50px;

    background: var(--tdc-orange, #f26322);

    text-decoration: none;

    color: #ffffff;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.smm-faq-help a:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(242,99,34,.25);

    color: #ffffff;
}


/* ==========================================================
   FAQ LIST
========================================================== */

.smm-faq-list {
    border-top: 1px solid #e7e2de;
}


/* ==========================================================
   FAQ ITEM
========================================================== */

.smm-faq-item {
    border-bottom: 1px solid #e7e2de;

    transition: background .3s ease;
}

.smm-faq-item.active {
    background: #faf8f6;
}


/* ==========================================================
   QUESTION
========================================================== */

.smm-faq-question {
    width: 100%;

    display: grid;
    grid-template-columns:
        40px
        minmax(0, 1fr)
        38px;

    align-items: center;

    gap: 14px;

    padding: 19px 15px;

    border: 0;

    background: transparent;

    text-align: left;

    color: var(--tdc-black, #111111);

    cursor: pointer;
}


/* ==========================================================
   NUMBER
========================================================== */

.smm-faq-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 11px;

    background: #f2efec;

    color: #827a75;

    transition:
        background .3s ease,
        color .3s ease;
}

.smm-faq-item.active
.smm-faq-number {
    background: var(--tdc-orange, #f26322);

    color: #ffffff;
}


/* ==========================================================
   TITLE
========================================================== */

.smm-faq-title {
    color: inherit;
}


/* ==========================================================
   PLUS / MINUS
========================================================== */

.smm-faq-toggle {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border: 1px solid #e5dfda;
    border-radius: 50%;

    background: #ffffff;

    transition:
        border-color .3s ease,
        background .3s ease,
        transform .3s ease;
}


/* horizontal */

.smm-faq-toggle::before {
    content: "";

    position: absolute;

    width: 12px;
    height: 2px;

    background: #111111;
}


/* vertical */

.smm-faq-toggle::after {
    content: "";

    position: absolute;

    width: 2px;
    height: 12px;

    background: #111111;

    transition: transform .3s ease;
}


/* active */

.smm-faq-item.active
.smm-faq-toggle {
    border-color: var(--tdc-orange, #f26322);

    background: var(--tdc-orange, #f26322);
}

.smm-faq-item.active
.smm-faq-toggle::before,
.smm-faq-item.active
.smm-faq-toggle::after {
    background: #ffffff;
}

.smm-faq-item.active
.smm-faq-toggle::after {
    transform: rotate(90deg);
}


/* ==========================================================
   ANSWER
========================================================== */

.smm-faq-answer {
    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows .35s ease;
}

.smm-faq-item.active
.smm-faq-answer {
    grid-template-rows: 1fr;
}

.smm-faq-answer-inner {
    overflow: hidden;

    padding:
        0
        68px
        0
        69px;

    opacity: 0;

    transition:
        opacity .25s ease,
        padding .35s ease;
}

.smm-faq-item.active
.smm-faq-answer-inner {
    padding-bottom: 20px;

    opacity: 1;
}

.smm-faq-answer p {
    max-width: 720px;

    margin: 0;

    color: var(--tdc-text-muted, #66615e);
}


/* ==========================================================
   ANSWER LINK
========================================================== */

.smm-faq-answer-link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-top: 12px;

    text-decoration: none;

    color: var(--tdc-orange, #f26322);

    transition: gap .3s ease;
}

.smm-faq-answer-link:hover {
    gap: 12px;

    color: var(--tdc-orange, #f26322);
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1023px) {

    .smm-faq {
        padding: 38px 0;
    }

    .smm-faq-layout {
        grid-template-columns:
            minmax(260px, 32%)
            minmax(0, 68%);

        gap: 35px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .smm-faq {
        padding: 30px 0;
    }

    .smm-faq-layout {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .smm-faq-intro {
        position: relative;
        top: auto;
    }


    /* Question */

    .smm-faq-question {
        grid-template-columns:
            36px
            minmax(0, 1fr)
            34px;

        gap: 10px;

        padding: 15px 5px;
    }

    .smm-faq-number {
        width: 36px;
        height: 36px;
    }

    .smm-faq-toggle {
        width: 34px;
        height: 34px;
    }


    /* Answer */

    .smm-faq-answer-inner {
        padding-left: 51px;
        padding-right: 44px;
    }

    .smm-faq-item.active
    .smm-faq-answer-inner {
        padding-bottom: 17px;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .smm-faq-help {
        padding: 18px;
    }

    .smm-faq-answer-inner {
        padding-left: 46px;
        padding-right: 10px;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .smm-faq-answer,
    .smm-faq-answer-inner,
    .smm-faq-toggle,
    .smm-faq-help a,
    .smm-faq-answer-link {
        transition: none !important;
    }

}
/* ==========================================================
   SOCIAL MEDIA MARKETING PAGE
   FINAL CTA

   TYPOGRAPHY CONTROLLED BY GLOBAL CSS
========================================================== */

.smm-final-cta {
    position: relative;

    padding: 50px 0;

    overflow: hidden;

    background: #f8f6f3;
}


/* ==========================================================
   MAIN WRAPPER
========================================================== */

.smm-final-cta-wrap {
    position: relative;

    display: grid;
    grid-template-columns:
        minmax(0, 58%)
        minmax(330px, 42%);

    gap: 45px;

    overflow: hidden;

    padding: 50px;

    border-radius: 26px;

    background: #111111;
}


/* ==========================================================
   DECORATION
========================================================== */

.smm-final-circle {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.smm-final-circle-one {
    width: 340px;
    height: 340px;

    top: -220px;
    left: 35%;

    border: 1px solid rgba(255,255,255,.06);
}

.smm-final-circle-two {
    width: 420px;
    height: 420px;

    right: -250px;
    bottom: -270px;

    background: rgba(242,99,34,.07);
}


/* ==========================================================
   LEFT CONTENT
========================================================== */

.smm-final-content {
    position: relative;
    z-index: 3;

    align-self: center;

    max-width: 690px;
}


/* EYEBROW */

.smm-final-eyebrow {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 16px;

    color: rgba(255,255,255,.65);
}

.smm-final-dot {
    width: 8px;
    height: 8px;

    flex: 0 0 8px;

    border-radius: 50%;

    background: var(--tdc-orange, #f26322);

    box-shadow:
        0 0 0 5px rgba(242,99,34,.12);
}


/* ==========================================================
   HEADING
========================================================== */

.smm-final-content h2 {
    max-width: 680px;

    margin: 0;

    color: #ffffff;
}

.smm-final-content h2 span {
    display: block;

    color: var(--tdc-orange, #f26322);
}


/* ==========================================================
   DESCRIPTION
========================================================== */

.smm-final-content > p {
    max-width: 600px;

    margin: 18px 0 0;

    color: rgba(255,255,255,.62);
}


/* ==========================================================
   ACTIONS
========================================================== */

.smm-final-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 9px;

    margin-top: 24px;
}

.smm-final-primary,
.smm-final-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 50px;

    padding: 0 20px;

    border-radius: 50px;

    text-decoration: none;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease,
        border-color .3s ease;
}


/* PRIMARY */

.smm-final-primary {
    border: 1px solid var(--tdc-orange, #f26322);

    background: var(--tdc-orange, #f26322);

    color: #ffffff;
}

.smm-final-primary:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(242,99,34,.25);

    color: #ffffff;
}


/* WHATSAPP */

.smm-final-whatsapp {
    border: 1px solid rgba(255,255,255,.16);

    background: rgba(255,255,255,.06);

    color: #ffffff;
}

.smm-final-whatsapp:hover {
    transform: translateY(-2px);

    border-color: rgba(255,255,255,.30);

    background: rgba(255,255,255,.10);

    color: #ffffff;
}


/* ==========================================================
   RIGHT PANEL
========================================================== */

.smm-final-panel {
    position: relative;
    z-index: 3;

    padding: 24px;

    border: 1px solid rgba(255,255,255,.10);
    border-radius: 20px;

    background: rgba(255,255,255,.06);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


/* ==========================================================
   PANEL TOP
========================================================== */

.smm-final-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 14px;

    color: rgba(255,255,255,.45);
}


/* STATUS */

.smm-final-status {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    padding: 6px 9px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50px;

    background: rgba(255,255,255,.05);

    color: rgba(255,255,255,.65);
}

.smm-final-status > span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--tdc-orange, #f26322);
}


/* ==========================================================
   PANEL HEADING
========================================================== */

.smm-final-panel h3 {
    margin: 0;

    color: #ffffff;
}


/* ==========================================================
   STEPS
========================================================== */

.smm-final-steps {
    display: grid;

    gap: 8px;

    margin-top: 18px;
}

.smm-final-step {
    display: grid;
    grid-template-columns:
        38px
        minmax(0, 1fr);

    gap: 11px;

    padding: 12px;

    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px;

    background: rgba(255,255,255,.035);

    transition:
        border-color .3s ease,
        background .3s ease;
}

.smm-final-step:hover {
    border-color: rgba(242,99,34,.20);

    background: rgba(242,99,34,.05);
}


/* NUMBER */

.smm-final-step-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 10px;

    background: rgba(242,99,34,.13);

    color: var(--tdc-orange, #f26322);
}


/* STEP CONTENT */

.smm-final-step strong {
    display: block;

    color: #ffffff;
}

.smm-final-step p {
    margin: 4px 0 0;

    color: rgba(255,255,255,.50);
}


/* ==========================================================
   DIRECT CONTACT
========================================================== */

.smm-final-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-top: 15px;
    padding-top: 15px;

    border-top: 1px solid rgba(255,255,255,.08);
}

.smm-final-contact > span {
    color: rgba(255,255,255,.45);
}

.smm-final-contact a {
    text-decoration: none;

    color: var(--tdc-orange, #f26322);
}


/* ==========================================================
   BOTTOM TRUST LINE
========================================================== */

.smm-final-trust {
    position: relative;
    z-index: 3;

    grid-column: 1 / -1;

    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    margin-top: 5px;
    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,.08);
}

.smm-final-trust > div {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 4px 15px;

    border-right: 1px solid rgba(255,255,255,.08);

    color: rgba(255,255,255,.58);
}

.smm-final-trust > div:last-child {
    border-right: 0;
}

.smm-final-check {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    flex: 0 0 22px;

    border-radius: 50%;

    background: rgba(242,99,34,.12);

    color: var(--tdc-orange, #f26322);
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1023px) {

    .smm-final-cta {
        padding: 38px 0;
    }

    .smm-final-cta-wrap {
        grid-template-columns: 1fr;

        gap: 28px;

        padding: 38px;
    }

    .smm-final-content {
        max-width: 750px;
    }

    .smm-final-panel {
        max-width: 650px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .smm-final-cta {
        padding: 30px 0;
    }

    .smm-final-cta-wrap {
        gap: 23px;

        padding: 25px 18px;

        border-radius: 20px;
    }


    /* ACTIONS */

    .smm-final-actions {
        align-items: stretch;
    }

    .smm-final-primary,
    .smm-final-whatsapp {
        width: 100%;
    }


    /* PANEL */

    .smm-final-panel {
        padding: 17px;
    }


    /* TRUST */

    .smm-final-trust {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 0;
    }

    .smm-final-trust > div {
        justify-content: flex-start;

        padding: 10px;

        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .smm-final-trust > div:nth-child(2) {
        border-right: 0;
    }

    .smm-final-trust > div:nth-child(3),
    .smm-final-trust > div:nth-child(4) {
        border-bottom: 0;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .smm-final-panel-top {
        align-items: flex-start;
    }

    .smm-final-contact {
        flex-direction: column;
        align-items: flex-start;

        gap: 5px;
    }

    .smm-final-trust {
        grid-template-columns: 1fr;
    }

    .smm-final-trust > div {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.08) !important;
    }

    .smm-final-trust > div:last-child {
        border-bottom: 0 !important;
    }

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .smm-final-primary,
    .smm-final-whatsapp,
    .smm-final-step {
        transition: none !important;
    }

}
