/* =========================================================
   CORE SECTION SETUP
========================================================= */

.match-hero-section {

    background-color: var(--bg-body);

    font-family: var(--font-main);

    padding: 60px 20px;

    display: flex;

    justify-content: center;

    align-items: center;

    box-sizing: border-box;
}


/* =========================================================
   MAIN ROUNDED CARD
========================================================= */

.match-container {

    max-width: 1280px;

    width: 100%;

    background: rgba(185, 203, 248, 0.305);

    border-radius: 24px;

    box-shadow: var(--shadow-md);

    border: 1px solid var(--border-light);

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 60px 50px;

    gap: 40px;

    box-sizing: border-box;
}


/* =========================================================
   LEFT COLUMN
========================================================= */

.match-left {

    flex: 1.1;

    min-width: 0;
}


/* =========================================================
   MAIN HEADING
   P TAG HAI LEKIN H1 JESA SIZE / WEIGHT
========================================================= */

.match-title {

    font-size: 42px;

    font-weight: 800;

    color: var(--text-dark);

    line-height: 1.2;

    margin: 0 0 30px 0;
}


/* =========================================================
   ROTATING BLUE SERVICE BADGE
========================================================= */

.highlight-badge {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    vertical-align: middle;

    color: var(--primary-blue);

    border: 2px solid #93c5fd;

    padding: 2px 16px;

    min-width: 90px;

    height: 48px;

    border-radius: 40px;

    background-color: var(--primary-blue-soft);

    transform: rotate(-1.5deg);

    margin: 0 4px;

    overflow: hidden;

    position: relative;

    box-sizing: border-box;
}


/* =========================================================
   ROTATING TEXT
========================================================= */

.rotating-text {

    display: inline-block;

    white-space: nowrap;

    transform: translateY(0);

    opacity: 1;

    transition:
        transform 0.45s ease,
        opacity 0.35s ease;
}


/* Animation state added by JS */

.rotating-text {

    display: inline-block;

    white-space: nowrap;

    transform: translateY(0);

    opacity: 1;

    will-change: transform, opacity;
}


/* =========================================================
   BENEFITS
========================================================= */

.match-benefits {

    list-style: none;

    padding: 0;

    margin: 0 0 35px 0;
}


.match-benefits li {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 18px;

    font-size: 16px;

    color: var(--text-muted);

    font-weight: 500;
}


.match-benefits li:last-child {

    margin-bottom: 0;
}


.match-benefits li span {

    color: var(--text-dark);
}


.match-benefits li i {

    color: var(--primary-blue);

    font-size: 16px;

    background: var(--primary-blue-soft);

    width: 36px;

    height: 36px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;
}


/* =========================================================
   CTA BUTTON
========================================================= */

.btn-primary-blue {

    display: inline-block;

    background-color: var(--primary-blue);

    color: #ffffff;

    padding: 14px 28px;

    border-radius: 12px;

    font-weight: 700;

    text-decoration: none;

    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);

    transition:
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.btn-primary-blue:hover {

    background-color: var(--primary-blue-hover);

    transform: translateY(-2px);

    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.30);
}


/* =========================================================
   RIGHT COLUMN
========================================================= */

.match-right {

    flex: 0.9;

    display: flex;

    justify-content: center;

    align-items: center;
}


/* =========================================================
   GROW / SHRINK HERO IMAGE
========================================================= */

.match-illustration {

    max-width: 100%;

    height: auto;

    object-fit: contain;

    display: block;

    /* Smooth grow & shrink effect */
    animation: heroImageGrow 8s ease-in-out infinite;
    will-change: transform;
}


/* =========================================================
   GROW → NORMAL → GROW
========================================================= */


@keyframes heroImageGrow {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.025);
    }

    100% {
        transform: scale(1);
    }

}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .match-container {

        flex-direction: column;

        padding: 40px 20px;

        text-align: center;
    }


    .match-title {

        font-size: 32px;
    }


    .match-benefits li {

        justify-content: center;

        text-align: left;
    }


    .match-right {

        margin-top: 20px;

        width: 100%;
    }


    .match-illustration {

        max-width: 520px;

        width: 100%;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .match-hero-section {

        padding: 30px 15px;
    }


    .match-container {

        padding: 35px 18px;

        border-radius: 18px;

        gap: 25px;
    }


    .match-title {

        font-size: 28px;

        line-height: 1.25;

        margin-bottom: 25px;
    }


    .highlight-badge {

        min-width: 82px;

        height: 40px;

        padding: 2px 12px;

        border-width: 1.5px;
    }


    .match-benefits li {

        font-size: 14px;

        gap: 10px;

        margin-bottom: 14px;
    }


    .match-benefits li i {

        width: 32px;

        height: 32px;

        font-size: 14px;
    }


    .btn-primary-blue {

        padding: 12px 22px;

        font-size: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .match-title {

        font-size: 25px;
    }


    .highlight-badge {

        min-width: 76px;

        height: 36px;

        padding: 2px 10px;
    }

}



























/* =========================================================
   BACKLINK BUILDING SERVICES — INTRO SECTION
========================================================= */

.backlink-intro-section {

    width: 100%;

    padding: 75px 20px;

    background: var(--bg-body);

    font-family: var(--font-main);

    box-sizing: border-box;

    overflow: hidden;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.backlink-intro-container {

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    align-items: center;

    gap: 65px;

    box-sizing: border-box;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.backlink-intro-content {

    min-width: 0;
}


/* =========================================================
   SECTION LABEL
========================================================= */

.backlink-section-label {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 7px 13px;

    margin-bottom: 18px;

    border-radius: 30px;

    background: var(--primary-blue-soft);

    border: 1px solid rgba(37, 99, 235, 0.15);

    color: var(--primary-blue);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 0.2px;
}


.backlink-section-label i {

    font-size: 12px;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.backlink-intro-content h2 {

    max-width: 650px;

    margin: 0 0 20px;

    color: var(--text-dark);

    font-size: 38px;

    line-height: 1.2;

    font-weight: 800;

    letter-spacing: -0.7px;
}


.backlink-intro-content h2 span {

    color: var(--primary-blue);

    position: relative;

    white-space: nowrap;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.backlink-intro-text {

    max-width: 650px;

    margin: 0 0 28px;

    color: var(--text-muted);

    font-size: 16px;

    line-height: 1.75;

    font-weight: 400;
}


.backlink-intro-text strong {

    color: var(--text-dark);

    font-weight: 700;
}


/* =========================================================
   MINI STRATEGY POINTS
========================================================= */

.backlink-mini-points {

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 12px;

    max-width: 650px;
}


.backlink-mini-point {

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 11px 13px;

    background: rgba(255, 255, 255, 0.65);

    border: 1px solid var(--border-light);

    border-radius: 12px;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.backlink-mini-point:hover {

    transform: translateY(-3px);

    border-color: rgba(37, 99, 235, 0.25);

    box-shadow:
        0 8px 20px rgba(37, 99, 235, 0.08);
}


/* =========================================================
   MINI ICON
========================================================= */

.backlink-mini-icon {

    width: 34px;

    height: 34px;

    min-width: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    background: var(--primary-blue-soft);

    color: var(--primary-blue);

    font-size: 13px;
}


.backlink-mini-point > span:last-child {

    display: flex;

    flex-direction: column;

    gap: 2px;
}


.backlink-mini-point strong {

    color: var(--text-dark);

    font-size: 13px;

    line-height: 1.2;
}


.backlink-mini-point small {

    color: var(--text-muted);

    font-size: 11px;

    line-height: 1.3;
}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.backlink-visual {

    width: 100%;

    display: flex;

    justify-content: center;

    align-items: center;
}


/* =========================================================
   VISUAL CARD
========================================================= */

.backlink-visual-card {

    position: relative;

    width: 430px;

    height: 340px;

    max-width: 100%;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.95),
            rgba(229,236,252,0.68)
        );

    border: 1px solid rgba(37, 99, 235, 0.12);

    border-radius: 28px;

    box-shadow:
        0 20px 55px rgba(37, 99, 235, 0.10);

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =========================================================
   ORBIT DECORATIONS
========================================================= */

.backlink-orbit {

    position: absolute;

    border: 1px dashed rgba(37, 99, 235, 0.12);

    border-radius: 50%;

    pointer-events: none;
}


.orbit-one {

    width: 250px;

    height: 250px;

    animation: backlinkOrbit 10s linear infinite;
}


.orbit-two {

    width: 325px;

    height: 325px;

    animation: backlinkOrbitReverse 14s linear infinite;
}


@keyframes backlinkOrbit {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes backlinkOrbitReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }

}


/* =========================================================
   AUTHORITY BADGE
========================================================= */

.authority-badge {

    position: absolute;

    top: 22px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 7px 12px;

    background: rgba(255,255,255,0.9);

    border: 1px solid rgba(37,99,235,0.12);

    border-radius: 30px;

    color: var(--primary-blue);

    font-size: 11px;

    font-weight: 700;

    box-shadow: 0 5px 15px rgba(15,23,42,0.06);

    z-index: 5;

    white-space: nowrap;
}


/* =========================================================
   CENTER AUTHORITY HUB
========================================================= */

.authority-center {

    position: relative;

    z-index: 4;

    width: 125px;

    height: 125px;

    border-radius: 50%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background: rgba(255,255,255,0.96);

    border: 1px solid rgba(37,99,235,0.18);

    box-shadow:
        0 12px 35px rgba(37,99,235,0.13);

    animation: authorityFloat 4s ease-in-out infinite;
}


@keyframes authorityFloat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.025);
    }

}


.authority-icon {

    width: 39px;

    height: 39px;

    margin-bottom: 7px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background: var(--primary-blue);

    color: #ffffff;

    font-size: 16px;
}


.authority-center strong {

    color: var(--text-dark);

    font-size: 13px;
}


.authority-center span {

    color: var(--text-muted);

    font-size: 10px;

    margin-top: 2px;
}


/* =========================================================
   LINK NODES
========================================================= */

.link-node {

    position: absolute;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 9px 12px;

    background: rgba(255,255,255,0.94);

    border: 1px solid rgba(37,99,235,0.12);

    border-radius: 11px;

    color: var(--text-dark);

    font-size: 10px;

    font-weight: 700;

    box-shadow:
        0 7px 20px rgba(15,23,42,0.07);

    white-space: nowrap;

    animation: nodeFloat 4.5s ease-in-out infinite;
}


.link-node i {

    color: var(--primary-blue);

    font-size: 11px;
}


@keyframes nodeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

}


/* =========================================================
   NODE POSITIONS
========================================================= */

.node-one {

    top: 88px;

    left: 38px;

    animation-delay: 0.2s;
}


.node-two {

    top: 88px;

    right: 38px;

    animation-delay: 0.8s;
}


.node-three {

    bottom: 65px;

    left: 40px;

    animation-delay: 1.3s;
}


.node-four {

    bottom: 65px;

    right: 40px;

    animation-delay: 1.8s;
}


/* =========================================================
   CONNECTION LINES
========================================================= */

.link-line {

    position: absolute;

    width: 80px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(37,99,235,0.25),
            transparent
        );

    z-index: 1;

    transform-origin: center;
}


.line-one {

    top: 130px;

    left: 102px;

    transform: rotate(25deg);
}


.line-two {

    top: 130px;

    right: 102px;

    transform: rotate(-25deg);
}


.line-three {

    bottom: 105px;

    left: 103px;

    transform: rotate(-25deg);
}


.line-four {

    bottom: 105px;

    right: 103px;

    transform: rotate(25deg);
}


/* =========================================================
   BOTTOM STATUS
========================================================= */

.authority-status {

    position: absolute;

    bottom: 20px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 7px;

    color: var(--text-muted);

    font-size: 10px;

    font-weight: 600;

    white-space: nowrap;
}


.status-dot {

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: var(--primary-blue);

    box-shadow:
        0 0 0 4px rgba(37,99,235,0.08);

    animation: statusPulse 2s ease-in-out infinite;
}


@keyframes statusPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .backlink-intro-container {

        grid-template-columns: 1fr;

        gap: 45px;
    }


    .backlink-intro-content {

        text-align: center;
    }


    .backlink-section-label {

        justify-content: center;
    }


    .backlink-intro-content h2,
    .backlink-intro-text {

        margin-left: auto;

        margin-right: auto;
    }


    .backlink-mini-points {

        margin-left: auto;

        margin-right: auto;

        text-align: left;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .backlink-intro-section {

        padding: 55px 15px;
    }


    .backlink-intro-container {

        gap: 35px;
    }


    .backlink-intro-content h2 {

        font-size: 29px;

        line-height: 1.25;

        letter-spacing: -0.4px;
    }


    .backlink-intro-text {

        font-size: 14px;

        line-height: 1.7;
    }


    .backlink-mini-points {

        grid-template-columns: 1fr;

        gap: 9px;
    }


    .backlink-visual-card {

        width: 100%;

        height: 300px;

        border-radius: 22px;
    }


    .orbit-one {

        width: 210px;

        height: 210px;
    }


    .orbit-two {

        width: 275px;

        height: 275px;
    }


    .authority-center {

        width: 105px;

        height: 105px;
    }


    .authority-icon {

        width: 34px;

        height: 34px;

        font-size: 14px;
    }


    .node-one {

        left: 15px;

        top: 75px;
    }


    .node-two {

        right: 15px;

        top: 75px;
    }


    .node-three {

        left: 15px;

        bottom: 55px;
    }


    .node-four {

        right: 15px;

        bottom: 55px;
    }


    .link-line {

        width: 55px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .backlink-intro-content h2 {

        font-size: 26px;
    }


    .backlink-visual-card {

        height: 280px;
    }


    .link-node {

        padding: 7px 9px;

        font-size: 9px;
    }

}




























/* =========================================================
   BACKLINK BUILDING — WHY IT MATTERS (DARK VERSION)
   Only colours changed – classes / design pattern untouched
========================================================= */

.backlink-growth-section {
    width: 100%;
    padding: 80px 20px;
    background: #0b0d12;                      /* was var(--bg-body) */
    font-family: var(--font-main);
    box-sizing: border-box;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.backlink-growth-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    box-sizing: border-box;
}


/* =========================================================
   INTRO
========================================================= */

.backlink-growth-intro {
    max-width: 760px;
    margin-bottom: 45px;
}

.backlink-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 7px 13px;
    border-radius: 30px;

    background: rgba(59, 130, 246, 0.12);     /* was var(--primary-blue-soft) */
    color: #5b8ef0;                           /* was var(--primary-blue) */

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;

    margin-bottom: 16px;
}

.backlink-growth-intro h2 {
    margin: 0 0 16px;

    font-size: 40px;
    line-height: 1.18;
    font-weight: 800;

    color: #f0f2f6;                           /* was var(--text-dark) */
}

.backlink-growth-intro h2 span {
    color: #5b8ef0;                           /* was var(--primary-blue) */
}

.backlink-growth-intro > p {
    margin: 0;

    max-width: 680px;

    font-size: 16px;
    line-height: 1.7;

    color: #9aa3b5;                           /* was var(--text-muted) */
}


/* =========================================================
   MAIN CONTENT GRID
========================================================= */

.backlink-growth-content {
    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 35px;

    align-items: stretch;
}


/* =========================================================
   AUTHORITY VISUAL CARD
========================================================= */

.backlink-authority-card {
    min-height: 440px;

    border-radius: 26px;

    background:
        radial-gradient(ellipse at 30% 40%, rgba(91, 142, 240, 0.08), transparent 70%),
        radial-gradient(ellipse at 70% 80%, rgba(91, 142, 240, 0.05), transparent 60%),
        #14171e;                              /* was gradient + light bg */

    border: 1px solid rgba(255, 255, 255, 0.06); /* was var(--border-light) */

    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.45);      /* was rgba(37,99,235,0.09) */

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    position: relative;

    overflow: hidden;
}


/* decorative circles */

.backlink-authority-card::before,
.backlink-authority-card::after {
    content: "";

    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(91, 142, 240, 0.07); /* was rgba(37,99,235,0.12) */
}

.backlink-authority-card::before {
    width: 330px;
    height: 330px;
}

.backlink-authority-card::after {
    width: 230px;
    height: 230px;
}


/* =========================================================
   AUTHORITY RING
========================================================= */

.authority-ring {
    width: 210px;
    height: 210px;

    border-radius: 50%;

    border: 2px solid rgba(91, 142, 240, 0.12); /* was rgba(37,99,235,0.18) */

    display: flex;

    align-items: center;
    justify-content: center;

    position: relative;

    z-index: 2;
}

.authority-ring::before {
    content: "";

    position: absolute;

    inset: 14px;

    border-radius: 50%;

    border: 8px solid rgba(91, 142, 240, 0.06); /* was rgba(37,99,235,0.08) */
    border-top-color: #5b8ef0;                 /* was var(--primary-blue) */

    animation: authorityRotate 8s linear infinite;
}

@keyframes authorityRotate {
    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   CENTER
========================================================= */

.authority-center {
    width: 115px;
    height: 115px;

    border-radius: 50%;

    background: #14171e;                      /* was #ffffff */

    display: flex;

    flex-direction: column;

    justify-content: center;
    align-items: center;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.40); /* was rgba(37,99,235,0.13) */

    position: relative;
    z-index: 3;
}

.authority-center strong {
    font-size: 25px;
    color: #5b8ef0;                           /* was var(--primary-blue) */
    font-weight: 800;
}

.authority-center span {
    font-size: 12px;
    color: #9aa3b5;                           /* was var(--text-muted) */
    margin-top: 3px;
}


/* =========================================================
   LABEL
========================================================= */

.authority-label {
    position: relative;
    z-index: 3;

    margin-top: 28px;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 10px 16px;

    background: #14171e;                      /* was #ffffff */

    border: 1px solid rgba(255, 255, 255, 0.06); /* was rgba(37,99,235,0.12) */

    border-radius: 30px;

    color: #f0f2f6;                           /* was var(--text-dark) */

    font-size: 13px;
    font-weight: 700;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35); /* was rgba(0,0,0,0.05) */
}

.authority-label i {
    color: #5b8ef0;                           /* was var(--primary-blue) */
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.backlink-growth-text {
    display: flex;

    flex-direction: column;

    gap: 22px;
}


/* =========================================================
   QUALITY MESSAGE
========================================================= */

.growth-message {
    display: flex;

    gap: 16px;

    padding: 25px;

    border-radius: 20px;

    background: #14171e;                      /* was #ffffff */

    border: 1px solid rgba(255, 255, 255, 0.06); /* was var(--border-light) */

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.40); /* was var(--shadow-sm) */
}

.growth-icon {
    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    border-radius: 13px;

    background: rgba(59, 130, 246, 0.12);     /* was var(--primary-blue-soft) */

    color: #5b8ef0;                           /* was var(--primary-blue) */

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 17px;
}

.growth-message h3 {
    margin: 0 0 7px;

    font-size: 18px;

    color: #f0f2f6;                           /* was var(--text-dark) */
}

.growth-message p {
    margin: 0;

    font-size: 14px;

    line-height: 1.65;

    color: #9aa3b5;                           /* was var(--text-muted) */
}


/* =========================================================
   BENEFITS
========================================================= */

.backlink-benefits {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px;
}

.backlink-benefit {
    display: flex;

    gap: 13px;

    padding: 18px;

    border-radius: 17px;

    background: rgba(20, 23, 30, 0.85);       /* was rgba(255,255,255,0.75) */

    border: 1px solid rgba(255, 255, 255, 0.06); /* was var(--border-light) */

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.backlink-benefit:hover {
    transform: translateY(-4px);

    border-color: rgba(91, 142, 240, 0.20);   /* was rgba(37,99,235,0.25) */

    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.40); /* was rgba(37,99,235,0.08) */
}

.benefit-number {
    font-size: 12px;

    font-weight: 800;

    color: #5b8ef0;                           /* was var(--primary-blue) */

    padding-top: 2px;
}

.backlink-benefit strong {
    display: block;

    font-size: 14px;

    color: #f0f2f6;                           /* was var(--text-dark) */

    margin-bottom: 5px;
}

.backlink-benefit p {
    margin: 0;

    font-size: 12px;

    line-height: 1.55;

    color: #9aa3b5;                           /* was var(--text-muted) */
}


/* =========================================================
   BOTTOM NOTE
========================================================= */

.backlink-bottom-note {
    margin-top: 25px;

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 18px 22px;

    border-radius: 17px;

    background: rgba(59, 130, 246, 0.08);     /* was var(--primary-blue-soft) */

    border: 1px solid rgba(91, 142, 240, 0.08); /* was rgba(37,99,235,0.10) */
}

.note-icon {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    border-radius: 11px;

    background: #14171e;                      /* was #ffffff */

    color: #5b8ef0;                           /* was var(--primary-blue) */

    display: flex;

    align-items: center;
    justify-content: center;
}

.backlink-bottom-note p {
    margin: 0;

    font-size: 14px;

    line-height: 1.55;

    color: #c8cedb;                           /* was var(--text-dark) – slightly softer */
}

.backlink-bottom-note strong {
    color: #5b8ef0;                           /* was var(--primary-blue) */
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.backlink-growth-intro,
.backlink-growth-content,
.backlink-bottom-note {
    opacity: 0;

    transform: translateY(24px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.backlink-growth-section.is-visible
.backlink-growth-intro,
.backlink-growth-section.is-visible
.backlink-growth-content,
.backlink-growth-section.is-visible
.backlink-bottom-note {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .backlink-growth-section {
        padding: 65px 20px;
    }

    .backlink-growth-content {
        grid-template-columns: 1fr;
    }

    .backlink-authority-card {
        min-height: 330px;
    }

    .backlink-growth-intro h2 {
        font-size: 34px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .backlink-growth-section {
        padding: 55px 15px;
    }

    .backlink-growth-intro {
        margin-bottom: 28px;
    }

    .backlink-growth-intro h2 {
        font-size: 28px;
        line-height: 1.22;
    }

    .backlink-growth-intro > p {
        font-size: 14px;
        line-height: 1.65;
    }

    .backlink-authority-card {
        min-height: 285px;
        border-radius: 21px;
    }

    .authority-ring {
        width: 170px;
        height: 170px;
    }

    .authority-center {
        width: 95px;
        height: 95px;
    }

    .authority-center strong {
        font-size: 21px;
    }

    .backlink-benefits {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .growth-message {
        padding: 18px;
    }

    .backlink-benefit {
        padding: 16px;
    }

    .backlink-bottom-note {
        align-items: flex-start;
        padding: 16px;
    }

    .backlink-bottom-note p {
        font-size: 13px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .authority-ring::before {
        animation: none;
    }

    .backlink-growth-intro,
    .backlink-growth-content,
    .backlink-bottom-note {
        opacity: 1;
        transform: none;
        transition: none;
    }

}


























/* =========================================================
   BACKLINK SEO PROBLEM SECTION
========================================================= */

.backlink-problem-section {

    width: 100%;

    padding: 85px 20px;

    background: var(--bg-body);

    box-sizing: border-box;

    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.backlink-problem-container {

    width: 100%;

    max-width: 1280px;

    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.backlink-problem-header {

    max-width: 720px;

    margin-bottom: 42px;
}


.backlink-problem-label {

    display: inline-flex;

    align-items: center;

    padding: 7px 13px;

    margin-bottom: 15px;

    border-radius: 30px;

    background: var(--primary-blue-soft);

    color: var(--primary-blue);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}


.backlink-problem-header h2 {

    margin: 0 0 14px;

    color: var(--text-dark);

    font-size: clamp(30px, 4vw, 44px);

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -0.7px;
}


/* Red highlight for "Not Ranking" */

.problem-heading-red {
    color: #ef4444;
}

.backlink-problem-header p {

    margin: 0;

    max-width: 650px;

    color: var(--text-muted);

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   SLIDER
========================================================= */

.problem-slider {

    width: 100%;

    overflow-x: auto;

    overflow-y: hidden;

    cursor: grab;

    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;

    overscroll-behavior-x: contain;

    touch-action: pan-y;
}


.problem-slider::-webkit-scrollbar {

    display: none;
}


.problem-slider.is-dragging {

    cursor: grabbing;

    user-select: none;
}


/* =========================================================
   TRACK
========================================================= */

.problem-track {

    display: flex;

    align-items: stretch;

    gap: 18px;

    width: max-content;
}


/* =========================================================
   PROBLEM CARD
========================================================= */

.problem-card {

    position: relative;

    width: 285px;

    min-height: 245px;

    padding: 27px;

    flex: 0 0 285px;

    box-sizing: border-box;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.82);

    border: 1px solid var(--border-light);

    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.problem-card:hover {

    transform: translateY(-5px);

    border-color: rgba(37, 99, 235, 0.25);

    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.12);
}


/* =========================================================
   NUMBER
========================================================= */

.problem-number {

    position: absolute;

    top: 20px;

    right: 22px;

    font-size: 12px;

    font-weight: 800;

    color: #9ca3af;

    letter-spacing: 1px;
}


/* =========================================================
   ICON
========================================================= */

.problem-icon {

    width: 46px;

    height: 46px;

    margin-bottom: 22px;

    border-radius: 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(239, 68, 68, 0.10);

    color: #ef4444;

    font-size: 18px;
}


/* =========================================================
   CARD TITLE
========================================================= */

.problem-card h3 {

    margin: 0 0 10px;

    color: var(--text-dark);

    font-size: 18px;

    line-height: 1.3;

    font-weight: 750;
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.problem-card p {

    margin: 0;

    color: var(--text-muted);

    font-size: 14px;

    line-height: 1.65;
}


/* =========================================================
   BOTTOM HINT
========================================================= */

.problem-slider-bottom {

    margin-top: 20px;

    display: flex;

    align-items: center;

    justify-content: flex-end;
}


.slider-hint {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #8a94a6;

    font-size: 12px;

    font-weight: 600;
}


.slider-hint i {

    color: var(--primary-blue);

    font-size: 13px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .problem-card {

        width: 270px;

        flex-basis: 270px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .backlink-problem-section {

        padding: 65px 15px;
    }


    .backlink-problem-header {

        margin-bottom: 30px;
    }


    .backlink-problem-header h2 {

        font-size: 29px;

        line-height: 1.2;
    }


    .backlink-problem-header p {

        font-size: 14px;

        line-height: 1.65;
    }


    .problem-track {

        gap: 14px;
    }


    .problem-card {

        width: calc(100vw - 42px);

        max-width: 330px;

        flex-basis: calc(100vw - 42px);

        min-height: 225px;

        padding: 23px;

        border-radius: 18px;
    }


    .problem-icon {

        width: 42px;

        height: 42px;

        margin-bottom: 18px;
    }


    .problem-card h3 {

        font-size: 17px;
    }


    .problem-card p {

        font-size: 13.5px;
    }


    .problem-slider-bottom {

        justify-content: center;
    }

}


























/* =========================================================
   WHY BUSINESSES TRUST TEKIFAY
   BACKLINK BUILDING SECTION — DARK VERSION
   Only colours changed – classes / design pattern untouched
========================================================= */

.trust-backlink-section {

    width: 100%;

    padding: 90px 20px;

    background: #0b0d12;                      /* was var(--bg-body) */

    font-family: var(--font-main);

    box-sizing: border-box;

    overflow: hidden;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.trust-backlink-container {

    width: 100%;

    max-width: 1180px;

    margin: 0 auto;

    box-sizing: border-box;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.trust-section-heading {

    width: 100%;

    max-width: 760px;

    margin: 0 auto 45px;

    text-align: center;
}


.trust-eyebrow {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 7px 14px;

    margin-bottom: 15px;

    border-radius: 30px;

    background: rgba(59, 130, 246, 0.12);     /* was var(--primary-blue-soft) */

    color: #5b8ef0;                           /* was var(--primary-blue) */

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.2px;

    line-height: 1;
}


.trust-section-heading h2 {

    margin: 0;

    color: #f0f2f6;                           /* was var(--text-dark) */

    font-size: 40px;

    line-height: 1.18;

    font-weight: 800;

    letter-spacing: -0.5px;
}


.trust-section-heading h2 span {

    color: #5b8ef0;                           /* was var(--primary-blue) */
}


.trust-section-heading p {

    max-width: 570px;

    margin: 14px auto 0;

    color: #9aa3b5;                           /* was var(--text-muted) */

    font-size: 15px;

    line-height: 1.7;

    font-weight: 500;
}


/* =========================================================
   INTERACTIVE AREA
========================================================= */

.trust-interactive {

    display: grid;

    grid-template-columns: minmax(300px, 0.9fr)
                           minmax(0, 1.35fr);

    gap: 22px;

    align-items: stretch;

    width: 100%;
}


/* =========================================================
   LEFT SERVICE PANEL
========================================================= */

.trust-service-panel {

    position: relative;

    width: 100%;

    height: 540px;

    min-width: 0;

    padding: 10px;

    box-sizing: border-box;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.06); /* was var(--border-light) */

    border-radius: 22px;

    background: rgba(20, 23, 30, 0.60);       /* was rgba(185,203,248,0.20) */

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.40); /* was var(--shadow-sm) */
}


/* =========================================================
   SERVICE LIST
========================================================= */

.trust-service-list {

    width: 100%;

    height: 100%;

    padding: 4px;

    box-sizing: border-box;

    overflow-y: auto;

    overflow-x: hidden;

    scroll-behavior: auto;

    overscroll-behavior: contain;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: thin;

    scrollbar-color:
        rgba(91, 142, 240, 0.35)              /* was rgba(37,99,235,0.35) */
        transparent;
}


/* Chrome / Edge / Safari */

.trust-service-list::-webkit-scrollbar {

    width: 5px;
}


.trust-service-list::-webkit-scrollbar-track {

    background: transparent;
}


.trust-service-list::-webkit-scrollbar-thumb {

    background: rgba(91, 142, 240, 0.35);     /* was rgba(37,99,235,0.35) */

    border-radius: 20px;
}


.trust-service-list::-webkit-scrollbar-thumb:hover {

    background: rgba(91, 142, 240, 0.55);     /* was rgba(37,99,235,0.55) */
}


/* =========================================================
   SERVICE CARD
========================================================= */

.trust-service {

    width: 100%;

    min-height: 112px;

    margin: 0 0 9px;

    padding: 16px;

    display: flex;

    align-items: center;

    gap: 13px;

    box-sizing: border-box;

    border: 1px solid transparent;

    border-radius: 16px;

    background: #1a1e28;                      /* was rgba(255,255,255,0.72) */

    color: #f0f2f6;                           /* was var(--text-dark) */

    font-family: inherit;

    text-align: left;

    cursor: pointer;

    user-select: none;

    -webkit-tap-highlight-color: transparent;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.trust-service:last-child {

    margin-bottom: 0;
}


.trust-service:hover {

    transform: translateX(3px);

    background: #222838;                      /* was #ffffff */

    border-color:
        rgba(91, 142, 240, 0.18);             /* was rgba(37,99,235,0.18) */

    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.30);       /* was rgba(37,99,235,0.06) */
}


.trust-service.active {

    background: #222838;                      /* was #ffffff */

    border-color:
        rgba(91, 142, 240, 0.28);             /* was rgba(37,99,235,0.28) */

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.40);       /* was rgba(37,99,235,0.10) */

    transform: translateX(4px);
}


/* =========================================================
   SERVICE ICON
========================================================= */

.trust-service-icon {

    width: 43px;

    height: 43px;

    min-width: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 13px;

    background: rgba(59, 130, 246, 0.12);     /* was var(--primary-blue-soft) */

    color: #5b8ef0;                           /* was var(--primary-blue) */

    font-size: 16px;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


.trust-service:hover
.trust-service-icon {

    transform: scale(1.04);
}


.trust-service.active
.trust-service-icon {

    background: #5b8ef0;                      /* was var(--primary-blue) */

    color: #ffffff;
}


/* =========================================================
   SERVICE TEXT
========================================================= */

.trust-service-text {

    min-width: 0;

    flex: 1;

    display: flex;

    flex-direction: column;

    gap: 4px;
}


.trust-service-text strong {

    display: block;

    color: #f0f2f6;                           /* was var(--text-dark) */

    font-size: 14px;

    line-height: 1.35;

    font-weight: 750;
}


.trust-service-text small {

    display: block;

    color: #9aa3b5;                           /* was var(--text-muted) */

    font-size: 11px;

    line-height: 1.4;

    font-weight: 500;
}


/* =========================================================
   SERVICE ARROW
========================================================= */

.trust-service-arrow {

    width: 28px;

    height: 28px;

    min-width: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #9aa3b5;                           /* was var(--text-muted) */

    font-size: 11px;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


.trust-service:hover
.trust-service-arrow {

    transform: translateX(2px);
}


.trust-service.active
.trust-service-arrow {

    background: rgba(59, 130, 246, 0.12);     /* was var(--primary-blue-soft) */

    color: #5b8ef0;                           /* was var(--primary-blue) */
}


/* =========================================================
   SCROLL HINT
========================================================= */

.trust-scroll-hint {

    position: absolute;

    left: 50%;

    bottom: 12px;

    z-index: 5;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 7px 12px;

    border: 1px solid rgba(255, 255, 255, 0.06); /* was var(--border-light) */

    border-radius: 20px;

    background: rgba(20, 23, 30, 0.90);       /* was rgba(255,255,255,0.94) */

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.30);       /* was rgba(0,0,0,0.06) */

    color: #9aa3b5;                           /* was var(--text-muted) */

    font-size: 10px;

    white-space: nowrap;

    pointer-events: none;
}


/* =========================================================
   RIGHT CONTENT PANEL
========================================================= */

.trust-content-panel {

    position: relative;

    width: 100%;

    min-width: 0;

    min-height: 540px;

    padding: 55px;

    display: flex;

    align-items: center;

    box-sizing: border-box;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.06); /* was var(--border-light) */

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            #14171e,                          /* was rgba(255,255,255,0.96) */
            #1a1e28                           /* was rgba(239,246,255,0.82) */
        );

    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.50); /* was var(--shadow-md) */
}


/* =========================================================
   CONTENT INNER
========================================================= */

.trust-content-inner {

    position: relative;

    z-index: 2;

    width: 100%;

    opacity: 1;

    transform: translateY(0);

    will-change: opacity, transform;
}


/* =========================================================
   SMOOTH CONTENT CHANGE
========================================================= */

.trust-content-inner.content-changing {

    animation:
        trustContentChange
        0.55s
        cubic-bezier(.22, .61, .36, 1)
        both;
}


@keyframes trustContentChange {

    0% {

        opacity: 0;

        transform: translateY(16px);
    }

    45% {

        opacity: 0.55;

        transform: translateY(6px);
    }

    100% {

        opacity: 1;

        transform: translateY(0);
    }
}


/* =========================================================
   CONTENT TOP
========================================================= */

.trust-content-top {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 22px;
}


.trust-content-icon {

    width: 54px;

    height: 54px;

    min-width: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 16px;

    background: #5b8ef0;                      /* was var(--primary-blue) */

    color: #ffffff;

    font-size: 20px;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.40);      /* was rgba(37,99,235,0.20) */

    transition:
        transform 0.3s ease;
}


.trust-content-inner.content-changing
.trust-content-icon {

    transform: scale(0.94);
}


.trust-content-label {

    display: block;

    color: #5b8ef0;                           /* was var(--primary-blue) */

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.4px;

    line-height: 1.3;
}


/* =========================================================
   CONTENT HEADING
========================================================= */

.trust-content-inner h3 {

    max-width: 600px;

    margin: 0 0 18px;

    color: #f0f2f6;                           /* was var(--text-dark) */

    font-size: 31px;

    line-height: 1.2;

    font-weight: 800;

    letter-spacing: -0.3px;
}


/* =========================================================
   CONTENT DESCRIPTION
========================================================= */

.trust-content-inner p {

    max-width: 650px;

    margin: 0;

    color: #9aa3b5;                           /* was var(--text-muted) */

    font-size: 16px;

    line-height: 1.8;

    font-weight: 500;
}


/* =========================================================
   CONTENT POINTS
========================================================= */

.trust-points {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 25px;
}


.trust-points span {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 8px 11px;

    border-radius: 9px;

    background: rgba(59, 130, 246, 0.08);     /* was rgba(37,99,235,0.07) */

    color: #f0f2f6;                           /* was var(--text-dark) */

    font-size: 12px;

    line-height: 1.3;

    font-weight: 600;
}


.trust-points i {

    color: #5b8ef0;                           /* was var(--primary-blue) */

    font-size: 11px;
}


/* =========================================================
   CONTENT BUTTON
========================================================= */

.trust-content-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    margin-top: 28px;

    padding: 12px 18px;

    border-radius: 10px;

    background: #5b8ef0;                      /* was var(--primary-blue) */

    color: #ffffff;

    font-size: 13px;

    font-weight: 700;

    line-height: 1;

    text-decoration: none;

    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.40);       /* was rgba(37,99,235,0.16) */

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}


.trust-content-btn:hover {

    transform: translateY(-2px);

    box-shadow:
        0 10px 22px rgba(0, 0, 0, 0.50);      /* was rgba(37,99,235,0.22) */
}


/* =========================================================
   DECORATIVE BACKGROUND
========================================================= */

.trust-content-decoration {

    position: absolute;

    right: -50px;

    bottom: -55px;

    width: 230px;

    height: 230px;

    border: 1px solid rgba(91, 142, 240, 0.08); /* was rgba(37,99,235,0.10) */

    border-radius: 50%;

    pointer-events: none;

    user-select: none;
}


.trust-content-decoration span {

    position: absolute;

    border: 1px solid rgba(91, 142, 240, 0.06); /* was rgba(37,99,235,0.08) */

    border-radius: 50%;
}


.trust-content-decoration span:nth-child(1) {

    inset: 25px;
}


.trust-content-decoration span:nth-child(2) {

    inset: 50px;
}


.trust-content-decoration span:nth-child(3) {

    inset: 75px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .trust-backlink-section {

        padding: 75px 18px;
    }


    .trust-interactive {

        grid-template-columns:
            minmax(260px, 0.9fr)
            minmax(0, 1.15fr);

        gap: 16px;
    }


    .trust-service-panel {

        height: 500px;
    }


    .trust-content-panel {

        min-height: 500px;

        padding: 38px;
    }


    .trust-content-inner h3 {

        font-size: 27px;
    }


    .trust-content-inner p {

        font-size: 15px;

        line-height: 1.7;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .trust-backlink-section {

        padding: 65px 15px;
    }


    .trust-section-heading {

        margin-bottom: 28px;
    }


    .trust-eyebrow {

        padding: 6px 12px;

        font-size: 10px;
    }


    .trust-section-heading h2 {

        font-size: 29px;

        line-height: 1.2;

        letter-spacing: -0.3px;
    }


    .trust-section-heading p {

        margin-top: 11px;

        font-size: 14px;

        line-height: 1.6;
    }


    /* ---------------------------------------------
       MOBILE INTERACTIVE LAYOUT
    --------------------------------------------- */

    .trust-interactive {

        display: flex;

        flex-direction: column;

        gap: 14px;

        width: 100%;
    }


    /* ---------------------------------------------
       MOBILE SERVICE PANEL
       EXACTLY 3 CARDS VISIBLE
    --------------------------------------------- */

    .trust-service-panel {

        width: 100%;

        height: 250px;

        min-height: 250px;

        padding: 7px;

        border-radius: 18px;

        box-sizing: border-box;
    }


    .trust-service-list {

        width: 100%;

        height: 100%;

        padding: 3px;

        box-sizing: border-box;

        overflow-x: hidden;

        overflow-y: auto;

        scroll-behavior: smooth;

        overscroll-behavior-y: contain;

        -webkit-overflow-scrolling: touch;
    }


    /* ---------------------------------------------
       MOBILE SERVICE CARD
    --------------------------------------------- */

    .trust-service {

        width: 100%;

        height: 74px;

        min-height: 74px;

        margin-bottom: 7px;

        padding: 10px 11px;

        border-radius: 13px;

        gap: 10px;

        box-sizing: border-box;
    }


    .trust-service:last-child {

        margin-bottom: 0;
    }


    .trust-service:hover {

        transform: none;
    }


    .trust-service.active {

        transform: none;

        box-shadow:
            0 6px 18px rgba(0, 0, 0, 0.30);   /* was rgba(37,99,235,0.09) */
    }


    /* ---------------------------------------------
       MOBILE ICON
    --------------------------------------------- */

    .trust-service-icon {

        width: 36px;

        height: 36px;

        min-width: 36px;

        border-radius: 10px;

        font-size: 14px;
    }


    /* ---------------------------------------------
       MOBILE SERVICE TEXT
    --------------------------------------------- */

    .trust-service-text {

        gap: 2px;
    }


    .trust-service-text strong {

        font-size: 12px;

        line-height: 1.3;
    }


    .trust-service-text small {

        font-size: 10px;

        line-height: 1.3;
    }


    /* ---------------------------------------------
       MOBILE ARROW
    --------------------------------------------- */

    .trust-service-arrow {

        display: none;
    }


    /* ---------------------------------------------
       MOBILE SCROLL HINT
    --------------------------------------------- */

    .trust-scroll-hint {

        display: none;
    }


    /* ---------------------------------------------
       MOBILE CONTENT PANEL
    --------------------------------------------- */

    .trust-content-panel {

        width: 100%;

        min-height: 360px;

        height: auto;

        padding: 30px 23px;

        border-radius: 18px;

        align-items: flex-start;

        box-sizing: border-box;
    }


    .trust-content-top {

        gap: 11px;

        margin-bottom: 18px;
    }


    .trust-content-icon {

        width: 46px;

        height: 46px;

        min-width: 46px;

        border-radius: 13px;

        font-size: 17px;
    }


    .trust-content-label {

        font-size: 9px;

        letter-spacing: 1.1px;
    }


    .trust-content-inner h3 {

        max-width: 100%;

        margin-bottom: 13px;

        font-size: 24px;

        line-height: 1.22;
    }


    .trust-content-inner p {

        max-width: 100%;

        font-size: 14px;

        line-height: 1.7;
    }


    .trust-points {

        gap: 7px;

        margin-top: 19px;
    }


    .trust-points span {

        padding: 7px 9px;

        font-size: 10px;
    }


    .trust-content-btn {

        margin-top: 21px;

        padding: 11px 15px;

        font-size: 12px;
    }


    /* ---------------------------------------------
       MOBILE DECORATION
    --------------------------------------------- */

    .trust-content-decoration {

        width: 160px;

        height: 160px;

        right: -55px;

        bottom: -55px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .trust-backlink-section {

        padding: 55px 12px;
    }


    .trust-section-heading h2 {

        font-size: 26px;
    }


    .trust-section-heading p {

        font-size: 13px;
    }


    /* ---------------------------------------------
       KEEP EXACTLY 3 CARDS
    --------------------------------------------- */

    .trust-service-panel {

        height: 250px;

        min-height: 250px;

        padding: 7px;
    }


    .trust-service {

        height: 74px;

        min-height: 74px;

        margin-bottom: 7px;

        padding: 10px;
    }


    .trust-service-icon {

        width: 34px;

        height: 34px;

        min-width: 34px;

        font-size: 13px;
    }


    .trust-service-text strong {

        font-size: 11px;
    }


    .trust-service-text small {

        font-size: 9px;
    }


    .trust-content-panel {

        min-height: 350px;

        padding: 26px 19px;
    }


    .trust-content-inner h3 {

        font-size: 22px;
    }


    .trust-content-inner p {

        font-size: 13px;

        line-height: 1.65;
    }

}


/* =========================================================
   REDUCED MOTION
   ACCESSIBILITY + PERFORMANCE
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .trust-service,
    .trust-service-icon,
    .trust-service-arrow,
    .trust-content-btn {

        transition: none;
    }


    .trust-content-inner.content-changing {

        animation: none;

        opacity: 1;

        transform: none;
    }


    .trust-service-list {

        scroll-behavior: auto;
    }

}
























/* =========================================================
   RESULTS / STATS COUNTER SECTION
========================================================= */

.backlink-results-section {

    width: 100%;
    padding: 90px 20px;

    background: var(--bg-body);

    font-family: var(--font-main);

    box-sizing: border-box;
    overflow: hidden;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.backlink-results-container {

    width: 100%;
    max-width: 1180px;

    margin: 0 auto;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.backlink-results-heading {

    max-width: 760px;

    margin: 0 auto 42px;

    text-align: center;
}


.backlink-results-eyebrow {

    display: inline-flex;

    align-items: center;
    gap: 7px;

    padding: 7px 13px;

    border-radius: 30px;

    background: var(--primary-blue-soft);

    color: var(--primary-blue);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.2px;

    margin-bottom: 15px;
}


.backlink-results-heading h2 {

    margin: 0;

    font-size: 40px;

    line-height: 1.18;

    font-weight: 800;

    color: var(--text-dark);
}


.backlink-results-heading h2 span {

    color: var(--primary-blue);
}


.backlink-results-heading p {

    max-width: 620px;

    margin: 15px auto 0;

    font-size: 15px;

    line-height: 1.7;

    color: var(--text-muted);
}


/* =========================================================
   STATS GRID
========================================================= */

.backlink-stats-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;
}


/* =========================================================
   STAT CARD
========================================================= */

.backlink-stat-card {

    position: relative;

    min-width: 0;

    padding: 27px 23px 24px;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.96),
            rgba(239,246,255,0.72)
        );

    border: 1px solid var(--border-light);

    box-shadow: var(--shadow-sm);

    overflow: hidden;

    box-sizing: border-box;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.backlink-stat-card:hover {

    transform: translateY(-5px);

    border-color:
        rgba(37, 99, 235, 0.22);

    box-shadow:
        0 16px 35px
        rgba(37, 99, 235, 0.10);
}


/* =========================================================
   CARD DECORATION
========================================================= */

.backlink-stat-card::after {

    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    right: -48px;
    bottom: -48px;

    border-radius: 50%;

    border: 1px solid
        rgba(37, 99, 235, 0.08);

    pointer-events: none;
}


.backlink-stat-card::before {

    content: "";

    position: absolute;

    width: 65px;
    height: 65px;

    right: -32px;
    bottom: -32px;

    border-radius: 50%;

    border: 1px solid
        rgba(37, 99, 235, 0.07);

    pointer-events: none;
}


/* =========================================================
   STAT ICON
========================================================= */

.backlink-stat-icon {

    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: var(--primary-blue-soft);

    color: var(--primary-blue);

    font-size: 16px;

    margin-bottom: 20px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}


.backlink-stat-card:hover
.backlink-stat-icon {

    transform: rotate(-5deg) scale(1.06);

    background: var(--primary-blue);

    color: #ffffff;
}


/* =========================================================
   STAT NUMBER
========================================================= */

.backlink-stat-number {

    font-size: 38px;

    line-height: 1;

    font-weight: 850;

    color: var(--primary-blue);

    letter-spacing: -1.5px;

    margin-bottom: 12px;
}


/* =========================================================
   STAT TITLE
========================================================= */

.backlink-stat-card h3 {

    margin: 0;

    min-height: 48px;

    font-size: 14px;

    line-height: 1.45;

    font-weight: 750;

    color: var(--text-dark);
}


/* =========================================================
   SMALL LINE
========================================================= */

.backlink-stat-line {

    display: block;

    width: 34px;
    height: 2px;

    margin: 16px 0 11px;

    border-radius: 10px;

    background: var(--primary-blue);
}


/* =========================================================
   STAT DESCRIPTION
========================================================= */

.backlink-stat-card p {

    margin: 0;

    font-size: 11px;

    line-height: 1.55;

    color: var(--text-muted);
}


/* =========================================================
   BOTTOM TRUST STRIP
========================================================= */

.backlink-results-footer {

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 18px;

    padding: 13px 16px;

    border-radius: 14px;

    background: rgba(185, 203, 248, 0.16);

    border: 1px solid var(--border-light);

    flex-wrap: wrap;
}


.backlink-results-footer div {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 5px 10px;

    font-size: 11px;

    font-weight: 650;

    color: var(--text-muted);
}


.backlink-results-footer i {

    color: var(--primary-blue);

    font-size: 11px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .backlink-results-section {

        padding: 75px 20px;
    }


    .backlink-stats-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 14px;
    }


    .backlink-stat-card {

        padding: 25px 22px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .backlink-results-section {

        padding: 65px 15px;
    }


    .backlink-results-heading {

        margin-bottom: 28px;
    }


    .backlink-results-eyebrow {

        font-size: 10px;

        padding: 6px 11px;
    }


    .backlink-results-heading h2 {

        font-size: 28px;

        line-height: 1.23;
    }


    .backlink-results-heading p {

        font-size: 13px;

        line-height: 1.65;
    }


    .backlink-stats-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;
    }


    .backlink-stat-card {

        padding: 20px 16px;

        border-radius: 16px;
    }


    .backlink-stat-icon {

        width: 37px;
        height: 37px;

        border-radius: 10px;

        font-size: 14px;

        margin-bottom: 17px;
    }


    .backlink-stat-number {

        font-size: 30px;

        margin-bottom: 9px;
    }


    .backlink-stat-card h3 {

        min-height: 0;

        font-size: 12px;

        line-height: 1.4;
    }


    .backlink-stat-line {

        margin: 12px 0 8px;

        width: 28px;
    }


    .backlink-stat-card p {

        font-size: 9.5px;

        line-height: 1.45;
    }


    .backlink-results-footer {

        gap: 4px;

        margin-top: 12px;

        padding: 8px;

    }


    .backlink-results-footer div {

        font-size: 9px;

        padding: 4px 6px;

        gap: 4px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .backlink-results-heading h2 {

        font-size: 25px;
    }


    .backlink-stats-grid {

        gap: 8px;
    }


    .backlink-stat-card {

        padding: 18px 13px;
    }


    .backlink-stat-number {

        font-size: 27px;
    }


    .backlink-stat-card h3 {

        font-size: 11px;
    }


    .backlink-stat-card p {

        font-size: 9px;
    }

}




















/* =========================================================
   #5. THE TEKIFAY BACKLINK ADVANTAGE SECTION — DARK VERSION
   Only colours changed – classes / design pattern untouched
========================================================= */

.backlink-advantage-section {

    width: 100%;

    padding: 90px 20px;

    background: #0b0e1a;                      /* was var(--bg-body) */

    font-family: var(--font-main);

    box-sizing: border-box;

    overflow: hidden;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.backlink-advantage-container {

    width: 100%;

    max-width: 1180px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        0.78fr 1.22fr;

    gap: 45px;

    align-items: center;
}


/* =========================================================
   LEFT INTRO
========================================================= */

.backlink-advantage-intro {

    max-width: 430px;
}


.backlink-advantage-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 7px 13px;

    margin-bottom: 17px;

    border-radius: 30px;

    background: rgba(59, 130, 246, 0.12);     /* was var(--primary-blue-soft) */

    color: #5b8ef0;                           /* was var(--primary-blue) */

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.2px;
}


.backlink-advantage-intro h2 {

    margin: 0;

    font-size: 40px;

    line-height: 1.18;

    font-weight: 800;

    letter-spacing: -0.8px;

    color: #f0f2f6;                           /* was var(--text-dark) */
}


.backlink-advantage-intro h2 span {

    color: #5b8ef0;                           /* was var(--primary-blue) */
}


.backlink-advantage-intro > p {

    margin: 17px 0 0;

    font-size: 15px;

    line-height: 1.75;

    color: #9aa3b5;                           /* was var(--text-muted) */
}


/* =========================================================
   CTA BUTTON
========================================================= */

.backlink-advantage-btn {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 26px;

    padding: 13px 18px;

    border-radius: 11px;

    background: #5b8ef0;                      /* was var(--primary-blue) */

    color: #ffffff;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    box-shadow:
        0 8px 20px
        rgba(0, 0, 0, 0.40);                  /* was rgba(37,99,235,0.20) */

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


.backlink-advantage-btn:hover {

    transform: translateY(-2px);

    background: #4a7cf7;                      /* was var(--primary-blue-hover) */

    box-shadow:
        0 12px 25px
        rgba(0, 0, 0, 0.50);                  /* was rgba(37,99,235,0.26) */
}


.backlink-advantage-btn i {

    font-size: 11px;

    transition:
        transform 0.25s ease;
}


.backlink-advantage-btn:hover i {

    transform: translateX(4px);
}


/* =========================================================
   ADVANTAGE GRID
========================================================= */

.backlink-advantage-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 13px;
}


/* =========================================================
   ADVANTAGE CARD
========================================================= */

.backlink-advantage-card {

    position: relative;

    display: grid;

    grid-template-columns:
        42px 48px 1fr;

    align-items: center;

    gap: 12px;

    min-height: 126px;

    padding: 18px;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #161c2b,                          /* was rgba(255,255,255,0.96) */
            #111624                           /* was rgba(239,246,255,0.70) */
        );

    border: 1px solid rgba(255, 255, 255, 0.06); /* was var(--border-light) */

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.40); /* was var(--shadow-sm) */

    overflow: hidden;

    box-sizing: border-box;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.backlink-advantage-card:hover {

    transform: translateY(-4px);

    border-color:
        rgba(91, 142, 240, 0.25);             /* was rgba(37,99,235,0.22) */

    box-shadow:
        0 14px 30px
        rgba(0, 0, 0, 0.50);                  /* was rgba(37,99,235,0.09) */
}


/* =========================================================
   CARD NUMBER
========================================================= */

.backlink-advantage-number {

    align-self: start;

    padding-top: 3px;

    font-size: 10px;

    font-weight: 800;

    color: rgba(91, 142, 240, 0.50);          /* was rgba(37,99,235,0.42) */

    letter-spacing: 0.5px;
}


/* =========================================================
   CARD ICON
========================================================= */

.backlink-advantage-icon {

    width: 44px;

    height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 13px;

    background: rgba(59, 130, 246, 0.12);     /* was var(--primary-blue-soft) */

    color: #5b8ef0;                           /* was var(--primary-blue) */

    font-size: 16px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}


.backlink-advantage-card:hover
.backlink-advantage-icon {

    transform:
        rotate(-5deg)
        scale(1.06);

    background: #5b8ef0;                      /* was var(--primary-blue) */

    color: #ffffff;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.backlink-advantage-content {

    min-width: 0;
}


.backlink-advantage-content h3 {

    margin: 0 0 6px;

    font-size: 14px;

    line-height: 1.3;

    font-weight: 750;

    color: #f0f2f6;                           /* was var(--text-dark) */
}


.backlink-advantage-content p {

    margin: 0;

    font-size: 10.5px;

    line-height: 1.55;

    color: #9aa3b5;                           /* was var(--text-muted) */
}


/* =========================================================
   DECORATIVE LINE
========================================================= */

.backlink-advantage-card::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 2px;

    background: #5b8ef0;                      /* was var(--primary-blue) */

    transition:
        width 0.35s ease;
}


.backlink-advantage-card:hover::after {

    width: 100%;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .backlink-advantage-container {

        grid-template-columns: 1fr;

        gap: 30px;
    }


    .backlink-advantage-intro {

        max-width: 700px;

        margin: 0 auto;

        text-align: center;
    }


    .backlink-advantage-intro h2 {

        font-size: 34px;
    }


    .backlink-advantage-grid {

        max-width: 800px;

        width: 100%;

        margin: 0 auto;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .backlink-advantage-section {

        padding: 65px 15px;
    }


    .backlink-advantage-container {

        gap: 25px;
    }


    .backlink-advantage-eyebrow {

        font-size: 9px;

        margin-bottom: 13px;
    }


    .backlink-advantage-intro h2 {

        font-size: 28px;

        line-height: 1.22;
    }


    .backlink-advantage-intro > p {

        font-size: 13px;

        line-height: 1.65;

        margin-top: 13px;
    }


    .backlink-advantage-btn {

        margin-top: 20px;

        padding: 11px 15px;

        font-size: 11px;
    }


    .backlink-advantage-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 9px;
    }


    .backlink-advantage-card {

        display: block;

        min-height: 0;

        padding: 16px 13px;

        border-radius: 14px;
    }


    .backlink-advantage-number {

        margin-bottom: 9px;

        font-size: 9px;
    }


    .backlink-advantage-icon {

        width: 36px;

        height: 36px;

        border-radius: 10px;

        font-size: 13px;

        margin-bottom: 11px;
    }


    .backlink-advantage-content h3 {

        font-size: 11.5px;

        line-height: 1.35;

        margin-bottom: 5px;
    }


    .backlink-advantage-content p {

        font-size: 9px;

        line-height: 1.45;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .backlink-advantage-intro h2 {

        font-size: 25px;
    }


    .backlink-advantage-grid {

        gap: 8px;
    }


    .backlink-advantage-card {

        padding: 14px 11px;
    }


    .backlink-advantage-content h3 {

        font-size: 10.5px;
    }


    .backlink-advantage-content p {

        font-size: 8.5px;
    }

}



























/* =========================================================
   #6 SERVICES SECTION
   OUR BACKLINK BUILDING SERVICES IN JAIPUR
========================================================= */

.backlink-services-section {

    width: 100%;

    padding: 85px 20px;

    background: var(--bg-body);

    font-family: var(--font-main);

    box-sizing: border-box;

    overflow: hidden;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.backlink-services-container {

    width: 100%;

    max-width: 1180px;

    margin: 0 auto;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.backlink-services-heading {

    max-width: 760px;

    margin: 0 auto 38px;

    text-align: center;
}


.backlink-services-eyebrow {

    display: inline-flex;

    padding: 7px 14px;

    border-radius: 30px;

    background: var(--primary-blue-soft);

    color: var(--primary-blue);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.4px;

    margin-bottom: 13px;
}


.backlink-services-heading h2 {

    margin: 0;

    font-size: 39px;

    line-height: 1.2;

    font-weight: 800;

    color: var(--text-dark);
}


.backlink-services-heading p {

    max-width: 650px;

    margin: 13px auto 0;

    font-size: 15px;

    line-height: 1.7;

    color: var(--text-muted);
}


/* =========================================================
   TABS WRAPPER
========================================================= */

.backlink-tabs-wrapper {

    width: 100%;

    margin-bottom: 18px;

    overflow: hidden;
}


/* =========================================================
   TABS
========================================================= */

.backlink-tabs {

    display: flex;

    align-items: center;

    gap: 8px;

    overflow-x: auto;

    padding: 5px 3px 12px;

    scrollbar-width: none;

    scroll-behavior: smooth;

    -webkit-overflow-scrolling: touch;

    cursor: grab;
}


.backlink-tabs:active {

    cursor: grabbing;
}


.backlink-tabs::-webkit-scrollbar {

    display: none;
}


/* =========================================================
   TAB BUTTON
========================================================= */

.backlink-tab {

    position: relative;

    flex: 0 0 auto;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 11px 15px;

    border: 1px solid var(--border-light);

    border-radius: 11px;

    background: rgba(255,255,255,0.75);

    color: var(--text-muted);

    font-family: inherit;

    font-size: 12px;

    font-weight: 700;

    white-space: nowrap;

    cursor: pointer;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.backlink-tab i {

    font-size: 12px;

    color: var(--primary-blue);

    transition: color 0.3s ease;
}


.backlink-tab:hover {

    transform: translateY(-2px);

    border-color: rgba(37,99,235,0.25);

    color: var(--text-dark);

    background: #ffffff;
}


.backlink-tab.active {

    color: #ffffff;

    background: var(--primary-blue);

    border-color: var(--primary-blue);

    box-shadow:
        0 8px 20px rgba(37,99,235,0.18);
}


.backlink-tab.active i {

    color: #ffffff;
}


/* =========================================================
   ACTIVE TAB LINE
========================================================= */

.backlink-tab.active::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: -8px;

    width: 5px;

    height: 5px;

    border-radius: 50%;

    background: var(--primary-blue);

    transform: translateX(-50%);
}


/* =========================================================
   SERVICE CONTENT BOX
========================================================= */

.backlink-service-content {

    position: relative;

    display: grid;

    grid-template-columns: 1.35fr 0.8fr;

    gap: 30px;

    min-height: 285px;

    padding: 40px;

    border: 1px solid var(--border-light);

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.96),
            rgba(239,246,255,0.82)
        );

    box-shadow: var(--shadow-md);

    overflow: hidden;
}


/* =========================================================
   LEFT SERVICE INFO
========================================================= */

.backlink-service-info {

    position: relative;

    display: flex;

    align-items: flex-start;

    gap: 17px;

    z-index: 2;
}


.backlink-service-number {

    position: absolute;

    top: -4px;

    right: 10px;

    font-size: 75px;

    line-height: 1;

    font-weight: 900;

    color: rgba(37,99,235,0.045);

    pointer-events: none;
}


.backlink-service-icon {

    width: 56px;

    height: 56px;

    min-width: 56px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 16px;

    background: var(--primary-blue);

    color: #ffffff;

    font-size: 20px;

    box-shadow:
        0 10px 25px rgba(37,99,235,0.20);
}


.backlink-service-copy {

    position: relative;

    z-index: 2;

    max-width: 650px;
}


.backlink-service-label {

    display: block;

    margin-bottom: 8px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

    color: var(--primary-blue);
}


.backlink-service-copy h3 {

    margin: 0 0 13px;

    font-size: 29px;

    line-height: 1.25;

    font-weight: 800;

    color: var(--text-dark);
}


.backlink-service-copy p {

    margin: 0;

    font-size: 15px;

    line-height: 1.75;

    color: var(--text-muted);
}


/* =========================================================
   RIGHT BENEFITS
========================================================= */

.backlink-service-benefits {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 24px;

    border-radius: 17px;

    background: rgba(37,99,235,0.055);

    border: 1px solid rgba(37,99,235,0.09);
}


.benefit-label {

    margin-bottom: 16px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.4px;

    color: var(--primary-blue);
}


.benefit-list {

    display: flex;

    flex-direction: column;

    gap: 11px;
}


.benefit-list span {

    display: flex;

    align-items: center;

    gap: 9px;

    font-size: 12px;

    font-weight: 600;

    color: var(--text-dark);
}


.benefit-list i {

    width: 21px;

    height: 21px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--primary-blue-soft);

    color: var(--primary-blue);

    font-size: 9px;

    flex-shrink: 0;
}


/* =========================================================
   CONTENT ANIMATION
========================================================= */

.backlink-service-content.is-changing
.backlink-service-info {

    animation: serviceContentIn 0.45s ease both;
}


.backlink-service-content.is-changing
.backlink-service-benefits {

    animation: serviceBenefitsIn 0.5s ease both;
}


@keyframes serviceContentIn {

    from {

        opacity: 0;

        transform: translateX(18px);
    }

    to {

        opacity: 1;

        transform: translateX(0);
    }
}


@keyframes serviceBenefitsIn {

    from {

        opacity: 0;

        transform: translateX(12px);
    }

    to {

        opacity: 1;

        transform: translateX(0);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .backlink-services-section {

        padding: 70px 18px;
    }


    .backlink-services-heading h2 {

        font-size: 33px;
    }


    .backlink-service-content {

        grid-template-columns: 1fr;

        gap: 20px;

        padding: 30px;
    }


    .backlink-service-benefits {

        padding: 20px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .backlink-services-section {

        padding: 58px 14px;
    }


    .backlink-services-heading {

        margin-bottom: 26px;
    }


    .backlink-services-heading h2 {

        font-size: 27px;

        line-height: 1.25;
    }


    .backlink-services-heading p {

        font-size: 13px;

        line-height: 1.6;
    }


    /* MOBILE TABS */

    .backlink-tabs {

        gap: 7px;

        padding-bottom: 12px;

        touch-action: pan-x;
    }


    .backlink-tab {

        padding: 10px 12px;

        font-size: 11px;

        border-radius: 10px;
    }


    .backlink-tab i {

        font-size: 11px;
    }


    /* CONTENT */

    .backlink-service-content {

        display: block;

        min-height: 0;

        padding: 25px 20px;

        border-radius: 18px;
    }


    .backlink-service-info {

        gap: 12px;
    }


    .backlink-service-icon {

        width: 44px;

        height: 44px;

        min-width: 44px;

        border-radius: 12px;

        font-size: 16px;
    }


    .backlink-service-number {

        right: 0;

        font-size: 55px;
    }


    .backlink-service-copy {

        max-width: none;
    }


    .backlink-service-label {

        font-size: 9px;

        margin-bottom: 6px;
    }


    .backlink-service-copy h3 {

        font-size: 22px;

        margin-bottom: 10px;
    }


    .backlink-service-copy p {

        font-size: 13px;

        line-height: 1.7;
    }


    .backlink-service-benefits {

        margin-top: 22px;

        padding: 17px;

        border-radius: 14px;
    }


    .benefit-list {

        gap: 9px;
    }


    .benefit-list span {

        font-size: 11px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .backlink-services-heading h2 {

        font-size: 25px;
    }


    .backlink-tab {

        padding: 9px 11px;

        font-size: 10px;
    }


    .backlink-service-copy h3 {

        font-size: 20px;
    }


    .backlink-service-copy p {

        font-size: 12px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .backlink-service-content.is-changing
    .backlink-service-info,

    .backlink-service-content.is-changing
    .backlink-service-benefits {

        animation: none;
    }

}

























/* =========================================================
   INDUSTRIES WE SERVE
   HORIZONTAL INTERACTIVE MARQUEE
========================================================= */

.industry-marquee-section {

    width: 100%;

    padding: 85px 20px;

    background: var(--bg-body);

    font-family: var(--font-main);

    overflow: hidden;

    box-sizing: border-box;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.industry-marquee-container {

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.industry-marquee-heading {

    max-width: 720px;

    margin: 0 auto 42px;

    text-align: center;
}


.industry-eyebrow {

    display: inline-flex;

    padding: 7px 14px;

    border-radius: 30px;

    background: var(--primary-blue-soft);

    color: var(--primary-blue);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.3px;

    margin-bottom: 15px;
}


.industry-marquee-heading h2 {

    margin: 0;

    color: var(--text-dark);

    font-size: 40px;

    line-height: 1.2;

    font-weight: 800;
}


.industry-marquee-heading h2 span {

    color: var(--primary-blue);
}


.industry-marquee-heading p {

    max-width: 600px;

    margin: 14px auto 0;

    color: var(--text-muted);

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   SLIDER VIEWPORT
========================================================= */

.industry-slider {

    width: 100%;

    overflow: hidden;

    position: relative;

    cursor: grab;

    user-select: none;

    touch-action: pan-y;

    padding: 10px 0 18px;

    box-sizing: border-box;
}


.industry-slider::before,
.industry-slider::after {

    content: "";

    position: absolute;

    top: 0;

    bottom: 0;

    width: 80px;

    z-index: 5;

    pointer-events: none;
}


.industry-slider::before {

    left: 0;

    background: linear-gradient(
        to right,
        var(--bg-body),
        transparent
    );
}


.industry-slider::after {

    right: 0;

    background: linear-gradient(
        to left,
        var(--bg-body),
        transparent
    );
}


.industry-slider.is-dragging {

    cursor: grabbing;
}


/* =========================================================
   TRACK
========================================================= */

.industry-track {

    display: flex;

    align-items: stretch;

    gap: 16px;

    width: max-content;

    will-change: transform;
}


/* =========================================================
   INDUSTRY CARD
========================================================= */

.industry-card {

    flex: 0 0 255px;

    min-height: 96px;

    padding: 18px;

    display: flex;

    align-items: center;

    gap: 14px;

    box-sizing: border-box;

    background: rgba(255,255,255,0.78);

    border: 1px solid var(--border-light);

    border-radius: 17px;

    box-shadow:
        0 8px 24px rgba(0,0,0,0.045);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.industry-card:hover {

    transform: translateY(-5px);

    background: #ffffff;

    border-color: rgba(37,99,235,0.25);

    box-shadow:
        0 14px 30px rgba(37,99,235,0.10);
}


/* =========================================================
   ICON
========================================================= */

.industry-icon {

    width: 48px;

    height: 48px;

    min-width: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background: var(--primary-blue-soft);

    color: var(--primary-blue);

    font-size: 18px;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}


.industry-card:hover .industry-icon {

    background: var(--primary-blue);

    color: #ffffff;
}


/* =========================================================
   CARD TEXT
========================================================= */

.industry-card h3 {

    margin: 0 0 4px;

    color: var(--text-dark);

    font-size: 14px;

    line-height: 1.35;

    font-weight: 800;
}


.industry-card span {

    display: block;

    color: var(--text-muted);

    font-size: 10.5px;

    line-height: 1.45;
}


/* =========================================================
   BOTTOM HINT
========================================================= */

.industry-slider-hint {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    margin-top: 12px;

    color: var(--text-muted);

    font-size: 10px;
}


.industry-slider-hint i {

    color: var(--primary-blue);

    font-size: 11px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .industry-marquee-section {

        padding: 70px 18px;
    }


    .industry-marquee-heading h2 {

        font-size: 34px;
    }


    .industry-card {

        flex-basis: 230px;

        min-height: 90px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .industry-marquee-section {

        padding: 60px 15px;
    }


    .industry-marquee-heading {

        margin-bottom: 28px;
    }


    .industry-eyebrow {

        font-size: 9px;

        padding: 6px 11px;
    }


    .industry-marquee-heading h2 {

        font-size: 27px;

        line-height: 1.25;
    }


    .industry-marquee-heading p {

        font-size: 13px;

        line-height: 1.6;

        margin-top: 10px;
    }


    .industry-slider {

        padding: 8px 0 15px;
    }


    .industry-slider::before,
    .industry-slider::after {

        width: 35px;
    }


    .industry-track {

        gap: 11px;
    }


    .industry-card {

        flex-basis: 205px;

        min-height: 82px;

        padding: 13px;

        gap: 11px;

        border-radius: 14px;
    }


    .industry-icon {

        width: 39px;

        height: 39px;

        min-width: 39px;

        border-radius: 11px;

        font-size: 14px;
    }


    .industry-card h3 {

        font-size: 12px;
    }


    .industry-card span {

        font-size: 9px;
    }


    .industry-slider-hint {

        font-size: 9px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .industry-marquee-heading h2 {

        font-size: 25px;
    }


    .industry-card {

        flex-basis: 190px;
    }

}























/* =========================================================
   8. CASE STUDY / ACHIEVEMENT SECTION
========================================================= */

.achievement-section {

    width: 100%;

    padding: 85px 20px;

    background: var(--bg-body);

    font-family: var(--font-main);

    box-sizing: border-box;

    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.achievement-container {

    width: 100%;

    max-width: 1180px;

    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.achievement-heading {

    max-width: 760px;

    margin: 0 auto 42px;

    text-align: center;
}


.achievement-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 7px 13px;

    margin-bottom: 14px;

    border-radius: 30px;

    background: var(--primary-blue-soft);

    color: var(--primary-blue);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.2px;
}


.achievement-heading h2 {

    margin: 0;

    font-size: 40px;

    line-height: 1.18;

    font-weight: 800;

    color: var(--text-dark);
}


.achievement-heading h2 span {

    color: var(--primary-blue);
}


.achievement-heading p {

    max-width: 650px;

    margin: 15px auto 0;

    font-size: 15px;

    line-height: 1.7;

    color: var(--text-muted);
}


/* =========================================================
   MAIN DASHBOARD
========================================================= */

.achievement-dashboard {

    display: grid;

    grid-template-columns: 0.78fr 1.55fr;

    gap: 18px;

    padding: 18px;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.96),
            rgba(239,246,255,0.72)
        );

    border: 1px solid var(--border-light);

    box-shadow: var(--shadow-md);

    box-sizing: border-box;
}


/* =========================================================
   INTRO PANEL
========================================================= */

.achievement-intro {

    position: relative;

    overflow: hidden;

    padding: 32px;

    border-radius: 18px;

    background: #ffffff;

    border: 1px solid rgba(37,99,235,0.10);

    display: flex;

    flex-direction: column;

    justify-content: center;

    box-sizing: border-box;
}


.achievement-intro::after {

    content: "";

    position: absolute;

    width: 150px;

    height: 150px;

    right: -70px;

    bottom: -70px;

    border-radius: 50%;

    border: 1px solid rgba(37,99,235,0.10);

    box-shadow:
        0 0 0 25px rgba(37,99,235,0.025),
        0 0 0 50px rgba(37,99,235,0.018);

    pointer-events: none;
}


.achievement-live {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    width: fit-content;

    margin-bottom: 17px;

    padding: 6px 10px;

    border-radius: 20px;

    background: rgba(37,99,235,0.07);

    color: var(--primary-blue);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}


.achievement-live span {

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: #22c55e;

    box-shadow: 0 0 0 4px rgba(34,197,94,0.12);

    animation: achievementPulse 2s infinite;
}


@keyframes achievementPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.45;
    }
}


.achievement-intro h3 {

    margin: 0;

    font-size: 27px;

    line-height: 1.25;

    font-weight: 800;

    color: var(--text-dark);
}


.achievement-intro h3 strong {

    display: block;

    color: var(--primary-blue);
}


.achievement-intro > p {

    margin: 15px 0 24px;

    font-size: 13px;

    line-height: 1.7;

    color: var(--text-muted);
}


/* =========================================================
   MINI TRUST BADGE
========================================================= */

.achievement-mini {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 10px;

    width: fit-content;

    padding: 9px 12px;

    border-radius: 11px;

    background: rgba(37,99,235,0.055);

}


.achievement-mini > i {

    color: var(--primary-blue);

    font-size: 15px;
}


.achievement-mini div {

    display: flex;

    flex-direction: column;

    gap: 2px;
}


.achievement-mini strong {

    font-size: 11px;

    color: var(--text-dark);
}


.achievement-mini small {

    font-size: 9px;

    color: var(--text-muted);
}


/* =========================================================
   STATS GRID
========================================================= */

.achievement-stats {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;
}


/* =========================================================
   STAT CARD
========================================================= */

.achievement-stat {

    position: relative;

    overflow: hidden;

    padding: 22px;

    min-height: 175px;

    border-radius: 17px;

    background: rgba(255,255,255,0.82);

    border: 1px solid rgba(37,99,235,0.08);

    box-sizing: border-box;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.achievement-stat::after {

    content: "";

    position: absolute;

    width: 90px;

    height: 90px;

    right: -40px;

    bottom: -45px;

    border-radius: 50%;

    background: rgba(37,99,235,0.035);

}


.achievement-stat:hover {

    transform: translateY(-4px);

    border-color: rgba(37,99,235,0.18);

    box-shadow:
        0 12px 28px rgba(37,99,235,0.08);
}


/* =========================================================
   STAT ICON
========================================================= */

.achievement-stat-icon {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background: var(--primary-blue-soft);

    color: var(--primary-blue);

    font-size: 14px;

    margin-bottom: 13px;
}


/* =========================================================
   COUNTER
========================================================= */

.achievement-number {

    display: flex;

    align-items: baseline;

    gap: 2px;

    margin-bottom: 5px;
}


.achievement-number .counter {

    font-size: 31px;

    line-height: 1;

    font-weight: 850;

    letter-spacing: -1px;

    color: var(--text-dark);
}


.achievement-number b {

    font-size: 18px;

    font-weight: 800;

    color: var(--primary-blue);
}


.achievement-stat h3 {

    margin: 0 0 5px;

    font-size: 13px;

    font-weight: 750;

    color: var(--text-dark);
}


.achievement-stat p {

    margin: 0;

    font-size: 10px;

    line-height: 1.5;

    color: var(--text-muted);
}


/* =========================================================
   BOTTOM RESULTS
========================================================= */

.achievement-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-top: 18px;

    padding: 21px 25px;

    border-radius: 18px;

    background: #ffffff;

    border: 1px solid var(--border-light);

    box-shadow: var(--shadow-sm);

    box-sizing: border-box;
}


.achievement-bottom-title {

    flex-shrink: 0;
}


.achievement-bottom-title > span {

    display: block;

    margin-bottom: 5px;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.3px;

    color: var(--primary-blue);
}


.achievement-bottom-title h3 {

    margin: 0;

    font-size: 17px;

    line-height: 1.35;

    color: var(--text-dark);
}


.achievement-bottom-title h3 strong {

    color: var(--primary-blue);
}


/* =========================================================
   RESULT POINTS
========================================================= */

.achievement-points {

    display: flex;

    flex-wrap: wrap;

    justify-content: flex-end;

    gap: 8px;
}


.achievement-point {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 8px 10px;

    border-radius: 9px;

    background: rgba(37,99,235,0.055);

    color: var(--text-dark);

    font-size: 10px;

    font-weight: 650;
}


.achievement-point i {

    color: var(--primary-blue);

    font-size: 10px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .achievement-dashboard {

        grid-template-columns: 1fr;
    }


    .achievement-intro {

        padding: 25px;
    }


    .achievement-intro h3 {

        font-size: 25px;
    }


    .achievement-bottom {

        align-items: flex-start;

        flex-direction: column;

        gap: 15px;
    }


    .achievement-points {

        justify-content: flex-start;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .achievement-section {

        padding: 60px 15px;
    }


    .achievement-heading {

        margin-bottom: 28px;
    }


    .achievement-heading h2 {

        font-size: 28px;
    }


    .achievement-heading p {

        font-size: 13px;

        line-height: 1.6;
    }


    .achievement-dashboard {

        gap: 10px;

        padding: 10px;

        border-radius: 19px;
    }


    .achievement-intro {

        padding: 22px;

        border-radius: 15px;
    }


    .achievement-intro h3 {

        font-size: 22px;
    }


    .achievement-intro > p {

        font-size: 12px;

        margin: 12px 0 18px;
    }


    .achievement-stats {

        gap: 8px;
    }


    .achievement-stat {

        min-height: 145px;

        padding: 16px;

        border-radius: 14px;
    }


    .achievement-stat-icon {

        width: 34px;

        height: 34px;

        margin-bottom: 11px;

        font-size: 12px;
    }


    .achievement-number .counter {

        font-size: 26px;
    }


    .achievement-number b {

        font-size: 15px;
    }


    .achievement-stat h3 {

        font-size: 11px;
    }


    .achievement-stat p {

        font-size: 9px;
    }


    .achievement-bottom {

        padding: 18px;

        border-radius: 15px;
    }


    .achievement-bottom-title h3 {

        font-size: 15px;
    }


    .achievement-points {

        width: 100%;

        gap: 6px;
    }


    .achievement-point {

        flex: 1 1 calc(50% - 6px);

        justify-content: flex-start;

        font-size: 9px;

        padding: 7px 8px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .achievement-heading h2 {

        font-size: 25px;
    }


    .achievement-stat {

        min-height: 135px;

        padding: 13px;
    }


    .achievement-number .counter {

        font-size: 23px;
    }


    .achievement-stat h3 {

        font-size: 10px;
    }

}






















/* =========================================================
   QUALITY AT EVERY STEP
========================================================= */

.quality-process-section {

    width: 100%;
    padding: 90px 20px;

    background: var(--bg-body);

    font-family: var(--font-main);

    box-sizing: border-box;
    overflow: hidden;
}


.quality-process-container {

    width: 100%;
    max-width: 1180px;

    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.quality-process-heading {

    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;
}


.quality-process-eyebrow {

    display: inline-flex;

    padding: 7px 14px;

    border-radius: 30px;

    background: var(--primary-blue-soft);

    color: var(--primary-blue);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.4px;

    margin-bottom: 15px;
}


.quality-process-heading h2 {

    margin: 0;

    color: var(--text-dark);

    font-size: 40px;

    line-height: 1.2;

    font-weight: 800;
}


.quality-process-heading p {

    max-width: 610px;

    margin: 15px auto 0;

    color: var(--text-muted);

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   PROCESS WRAPPER
========================================================= */

.quality-process {

    position: relative;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}


/* =========================================================
   CONNECTING LINE — DESKTOP
========================================================= */

.quality-process::before {

    content: "";

    position: absolute;

    top: 32px;

    left: 8%;

    right: 8%;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            rgba(37,99,235,0.10),
            rgba(37,99,235,0.35),
            rgba(37,99,235,0.10)
        );

    z-index: 0;
}


/* =========================================================
   STEP CARD
========================================================= */

.quality-step {

    position: relative;

    z-index: 1;

    min-width: 0;

    padding: 28px 22px 25px;

    border-radius: 20px;

    background: rgba(255,255,255,0.82);

    border: 1px solid var(--border-light);

    box-shadow: var(--shadow-sm);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease,
        border-color 0.45s ease;

    box-sizing: border-box;
}


.quality-step:hover {

    transform: translateY(-7px);

    border-color: rgba(37,99,235,0.25);

    box-shadow:
        0 18px 40px rgba(37,99,235,0.10);
}


/* =========================================================
   NUMBER
========================================================= */

.quality-step-number {

    position: absolute;

    top: 12px;

    right: 15px;

    color: rgba(37,99,235,0.10);

    font-size: 34px;

    line-height: 1;

    font-weight: 900;

    pointer-events: none;
}


/* =========================================================
   ICON
========================================================= */

.quality-step-icon {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 22px;

    border-radius: 17px;

    background: var(--primary-blue-soft);

    color: var(--primary-blue);

    font-size: 20px;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}


.quality-step.active .quality-step-icon {

    background: var(--primary-blue);

    color: #ffffff;

    transform: scale(1.05);
}


/* =========================================================
   TEXT
========================================================= */

.quality-step-label {

    display: block;

    margin-bottom: 7px;

    color: var(--primary-blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.2px;
}


.quality-step h3 {

    margin: 0 0 10px;

    color: var(--text-dark);

    font-size: 18px;

    line-height: 1.3;

    font-weight: 800;
}


.quality-step p {

    margin: 0;

    color: var(--text-muted);

    font-size: 13px;

    line-height: 1.65;
}


/* =========================================================
   MOBILE ARROW
========================================================= */

.quality-step-arrow {

    display: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .quality-process {

        grid-template-columns: repeat(2, 1fr);
    }

    .quality-process::before {

        display: none;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .quality-process-section {

        padding: 65px 15px;
    }


    .quality-process-heading {

        margin-bottom: 35px;
    }


    .quality-process-heading h2 {

        font-size: 29px;
    }


    .quality-process-heading p {

        font-size: 14px;

        line-height: 1.6;
    }


    /* ---------------------------------------------
       MOBILE PROCESS
    --------------------------------------------- */

    .quality-process {

        display: flex;

        flex-direction: column;

        gap: 0;

        max-width: 500px;

        margin: 0 auto;
    }


    .quality-process::before {

        display: block;

        top: 35px;

        bottom: 35px;

        left: 27px;

        right: auto;

        width: 2px;

        height: auto;

        background:
            linear-gradient(
                180deg,
                rgba(37,99,235,0.10),
                rgba(37,99,235,0.35),
                rgba(37,99,235,0.10)
            );
    }


    /* ---------------------------------------------
       MOBILE CARD
    --------------------------------------------- */

    .quality-step {

        width: 100%;

        min-height: 150px;

        margin-bottom: 20px;

        padding: 22px 18px 22px 78px;

        border-radius: 18px;

        opacity: 0.72;

        transform: translateX(0);

        transition:
            opacity 0.5s ease,
            transform 0.5s ease,
            box-shadow 0.5s ease,
            border-color 0.5s ease;
    }


    .quality-step:last-child {

        margin-bottom: 0;
    }


    /* ACTIVE STEP */

    .quality-step.active {

        opacity: 1;

        transform: translateX(4px);

        border-color: rgba(37,99,235,0.28);

        box-shadow:
            0 14px 35px rgba(37,99,235,0.10);
    }


    /* ---------------------------------------------
       MOBILE ICON
    --------------------------------------------- */

    .quality-step-icon {

        position: absolute;

        left: 8px;

        top: 18px;

        width: 40px;

        height: 40px;

        min-width: 40px;

        margin: 0;

        border-radius: 12px;

        font-size: 15px;

        z-index: 3;
    }


    .quality-step.active .quality-step-icon {

        transform: scale(1.08);
    }


    /* ---------------------------------------------
       NUMBER
    --------------------------------------------- */

    .quality-step-number {

        top: 12px;

        right: 13px;

        font-size: 27px;
    }


    /* ---------------------------------------------
       TEXT
    --------------------------------------------- */

    .quality-step-label {

        font-size: 9px;

        margin-bottom: 5px;
    }


    .quality-step h3 {

        font-size: 17px;

        margin-bottom: 7px;
    }


    .quality-step p {

        font-size: 12px;

        line-height: 1.6;

        padding-right: 5px;
    }


    /* ---------------------------------------------
       ARROW
    --------------------------------------------- */

    .quality-step-arrow {

        position: absolute;

        display: flex;

        align-items: center;

        justify-content: center;

        left: 18px;

        bottom: -19px;

        width: 20px;

        height: 20px;

        border-radius: 50%;

        background: var(--bg-body);

        color: var(--primary-blue);

        font-size: 9px;

        z-index: 5;

        transition:
            transform 0.35s ease,
            color 0.35s ease;
    }


    .quality-step.active .quality-step-arrow {

        animation: processArrowMove 1.5s ease-in-out infinite;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .quality-process-section {

        padding: 55px 13px;
    }


    .quality-process-heading h2 {

        font-size: 26px;
    }


    .quality-step {

        min-height: 145px;

        padding-left: 72px;

        padding-right: 15px;
    }


    .quality-step h3 {

        font-size: 16px;
    }


    .quality-step p {

        font-size: 11.5px;
    }

}


/* =========================================================
   ARROW ANIMATION
========================================================= */

@keyframes processArrowMove {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(4px);

    }

}

























/* =========================================================
   ABOUT TEKIFAY
   YOUR BACKLINK & AUTHORITY GROWTH PARTNER
========================================================= */

.about-tekifay-section {

    width: 100%;

    padding: 90px 20px;

    background: var(--bg-body);

    font-family: var(--font-main);

    box-sizing: border-box;

    overflow: hidden;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.about-tekifay-container {

    width: 100%;

    max-width: 1180px;

    margin: 0 auto;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.about-tekifay-heading {

    max-width: 760px;

    margin: 0 auto 48px;

    text-align: center;
}


.about-tekifay-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 7px 14px;

    margin-bottom: 15px;

    border-radius: 30px;

    background: var(--primary-blue-soft);

    color: var(--primary-blue);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.3px;
}


.about-tekifay-heading h2 {

    margin: 0;

    color: var(--text-dark);

    font-size: 40px;

    line-height: 1.18;

    font-weight: 800;
}


.about-tekifay-heading h2 span {

    color: var(--primary-blue);
}


.about-tekifay-heading p {

    max-width: 610px;

    margin: 14px auto 0;

    color: var(--text-muted);

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   MAIN ABOUT GRID
========================================================= */

.about-tekifay-main {

    display: grid;

    grid-template-columns: 1.08fr 0.92fr;

    gap: 28px;

    align-items: stretch;
}


/* =========================================================
   LEFT INTRO
========================================================= */

.about-tekifay-intro {

    padding: 38px 35px;

    border-radius: 24px;

    background: #ffffff;

    border: 1px solid var(--border-light);

    box-shadow: var(--shadow-sm);
}


.about-intro-badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 20px;

    color: var(--primary-blue);

    font-size: 11px;

    font-weight: 750;
}


.about-intro-badge span {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: var(--primary-blue);

    box-shadow:
        0 0 0 5px rgba(37,99,235,0.08);
}


.about-tekifay-intro h3 {

    max-width: 600px;

    margin: 0 0 18px;

    color: var(--text-dark);

    font-size: 29px;

    line-height: 1.25;

    font-weight: 800;
}


.about-tekifay-intro h3 span {

    color: var(--primary-blue);
}


.about-tekifay-intro > p {

    margin: 0 0 14px;

    color: var(--text-muted);

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   KEY POINTS
========================================================= */

.about-key-points {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 9px;

    margin-top: 23px;
}


.about-key-point {

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 10px 11px;

    border-radius: 10px;

    background: rgba(37,99,235,0.045);

    color: var(--text-dark);

    font-size: 11px;

    font-weight: 650;
}


.about-key-point i {

    width: 20px;

    height: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 6px;

    background: var(--primary-blue);

    color: #ffffff;

    font-size: 8px;
}


/* =========================================================
   AUTHORITY CARD
========================================================= */

.about-authority-card {

    position: relative;

    overflow: hidden;

    padding: 31px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f4f8ff 100%
        );

    border: 1px solid rgba(37,99,235,0.14);

    box-shadow: var(--shadow-md);

    box-sizing: border-box;
}


.about-card-glow {

    position: absolute;

    width: 190px;

    height: 190px;

    right: -90px;

    top: -90px;

    border-radius: 50%;

    background: rgba(37,99,235,0.08);

    pointer-events: none;
}


/* =========================================================
   AUTHORITY CARD HEADER
========================================================= */

.about-authority-header {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 13px;

    padding-bottom: 24px;

    border-bottom: 1px solid var(--border-light);
}


.about-authority-icon {

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 15px;

    background: var(--primary-blue);

    color: #ffffff;

    font-size: 18px;

    box-shadow:
        0 10px 25px rgba(37,99,235,0.20);
}


.about-authority-header div:last-child {

    display: flex;

    flex-direction: column;

    gap: 3px;
}


.about-authority-header span {

    color: var(--primary-blue);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.2px;
}


.about-authority-header strong {

    color: var(--text-dark);

    font-size: 16px;

    font-weight: 800;
}


/* =========================================================
   AUTHORITY FLOW
========================================================= */

.about-authority-flow {

    position: relative;

    padding: 25px 0 20px;
}


.authority-flow-item {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 12px;

    border-radius: 13px;

    background: rgba(255,255,255,0.72);

    border: 1px solid transparent;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.authority-flow-item:hover,
.authority-flow-item.active {

    background: #ffffff;

    border-color: rgba(37,99,235,0.12);

    transform: translateX(4px);
}


.authority-flow-icon {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 11px;

    background: var(--primary-blue-soft);

    color: var(--primary-blue);

    font-size: 14px;
}


.authority-flow-item div:last-child {

    display: flex;

    flex-direction: column;

    gap: 3px;
}


.authority-flow-item strong {

    color: var(--text-dark);

    font-size: 13px;

    font-weight: 800;
}


.authority-flow-item small {

    color: var(--text-muted);

    font-size: 10px;
}


.authority-flow-line {

    width: 1px;

    height: 18px;

    margin-left: 30px;

    background: rgba(37,99,235,0.20);
}


/* =========================================================
   AUTHORITY FOOTER
========================================================= */

.about-authority-footer {

    display: flex;

    align-items: center;

    gap: 9px;

    padding-top: 17px;

    border-top: 1px solid var(--border-light);

    color: var(--text-muted);

    font-size: 10px;

    line-height: 1.4;
}


.about-authority-footer i {

    color: var(--primary-blue);

    font-size: 13px;
}


/* =========================================================
   FEATURE GRID
========================================================= */

.about-feature-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 13px;

    margin-top: 15px;
}


.about-feature-card {

    display: flex;

    align-items: flex-start;

    gap: 11px;

    min-width: 0;

    padding: 18px 15px;

    border-radius: 15px;

    background: #ffffff;

    border: 1px solid var(--border-light);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.about-feature-card:hover {

    transform: translateY(-4px);

    border-color: rgba(37,99,235,0.18);

    box-shadow:
        0 12px 25px rgba(37,99,235,0.08);
}


.about-feature-icon {

    width: 35px;

    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 10px;

    background: var(--primary-blue-soft);

    color: var(--primary-blue);

    font-size: 13px;
}


.about-feature-card h3 {

    margin: 0 0 4px;

    color: var(--text-dark);

    font-size: 11px;

    line-height: 1.35;

    font-weight: 800;
}


.about-feature-card p {

    margin: 0;

    color: var(--text-muted);

    font-size: 10px;

    line-height: 1.45;
}


/* =========================================================
   BOTTOM STATEMENT
========================================================= */

.about-tekifay-bottom {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 11px;

    max-width: 720px;

    margin: 20px auto 0;

    padding: 13px 17px;

    border-radius: 13px;

    background: rgba(37,99,235,0.045);

    border: 1px solid rgba(37,99,235,0.08);
}


.about-bottom-icon {

    width: 32px;

    height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 9px;

    background: var(--primary-blue);

    color: #ffffff;

    font-size: 12px;
}


.about-tekifay-bottom div:last-child {

    display: flex;

    flex-direction: column;

    gap: 2px;
}


.about-tekifay-bottom strong {

    color: var(--text-dark);

    font-size: 11px;
}


.about-tekifay-bottom span {

    color: var(--text-muted);

    font-size: 9px;

    line-height: 1.4;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .about-tekifay-main {

        grid-template-columns: 1fr;
    }


    .about-feature-grid {

        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .about-tekifay-section {

        padding: 62px 15px;
    }


    .about-tekifay-heading {

        margin-bottom: 30px;
    }


    .about-tekifay-heading h2 {

        font-size: 29px;
    }


    .about-tekifay-heading p {

        font-size: 13px;

        line-height: 1.6;
    }


    .about-tekifay-main {

        display: flex;

        flex-direction: column;

        gap: 13px;
    }


    .about-tekifay-intro {

        padding: 27px 21px;

        border-radius: 18px;
    }


    .about-tekifay-intro h3 {

        font-size: 23px;

        margin-bottom: 14px;
    }


    .about-tekifay-intro > p {

        font-size: 12px;

        line-height: 1.7;
    }


    .about-key-points {

        grid-template-columns: 1fr;

        gap: 7px;

        margin-top: 18px;
    }


    .about-key-point {

        font-size: 10px;

        padding: 9px 10px;
    }


    .about-authority-card {

        padding: 23px 19px;

        border-radius: 18px;
    }


    .about-authority-header {

        padding-bottom: 18px;
    }


    .about-authority-icon {

        width: 44px;

        height: 44px;

        border-radius: 12px;

        font-size: 16px;
    }


    .about-authority-header strong {

        font-size: 14px;
    }


    .about-authority-flow {

        padding: 19px 0 16px;
    }


    .authority-flow-item {

        padding: 10px;
    }


    .authority-flow-icon {

        width: 35px;

        height: 35px;
    }


    .about-feature-grid {

        grid-template-columns: 1fr 1fr;

        gap: 8px;

        margin-top: 10px;
    }


    .about-feature-card {

        padding: 13px 10px;

        gap: 8px;

        border-radius: 12px;
    }


    .about-feature-icon {

        width: 29px;

        height: 29px;

        border-radius: 8px;

        font-size: 11px;
    }


    .about-feature-card h3 {

        font-size: 9.5px;
    }


    .about-feature-card p {

        font-size: 9.5px;
    }


    .about-tekifay-bottom {

        align-items: flex-start;

        justify-content: flex-start;

        margin-top: 10px;

        padding: 11px 12px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .about-tekifay-heading h2 {

        font-size: 26px;
    }


    .about-tekifay-intro h3 {

        font-size: 21px;
    }


    .about-feature-card {

        display: block;
    }


    .about-feature-icon {

        margin-bottom: 7px;
    }

}
























/* =========================================================
   MONTHLY BACKLINK PACKAGE
========================================================= */

.backlink-package-section {
    width: 100%;
    padding: 85px 20px;
    background: var(--bg-body);
    font-family: var(--font-main);
    box-sizing: border-box;
    overflow: hidden;
}

.backlink-package-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.package-heading {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}

.package-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 13px;
    border-radius: 30px;
    background: var(--primary-blue-soft);
    color: var(--primary-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.1px;
}

.package-heading h2 {
    margin: 14px 0 12px;
    font-size: 38px;
    line-height: 1.2;
    color: var(--text-dark);
    font-weight: 800;
}

.package-heading h2 span {
    color: var(--primary-blue);
}

.package-heading p {
    max-width: 600px;
    margin: auto;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.package-layout {
    display: grid;
    grid-template-columns: 0.78fr 1.45fr;
    gap: 20px;
    align-items: stretch;
}


/* =========================================================
   INTRO CARD
========================================================= */

.package-intro {
    position: relative;
    padding: 32px;
    border-radius: 22px;
    background: linear-gradient(
        145deg,
        #ffffff,
        #f3f7ff
    );
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.package-intro::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -70px;
    bottom: -70px;
    border-radius: 50%;
    border: 25px solid rgba(37, 99, 235, 0.05);
}

.package-badge {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: var(--primary-blue);
    color: #fff;
    font-size: 19px;
    margin-bottom: 20px;
}

.package-intro h3 {
    margin: 0 0 13px;
    font-size: 25px;
    line-height: 1.25;
    color: var(--text-dark);
}

.package-intro h3 span {
    color: var(--primary-blue);
}

.package-intro p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.package-mini-stats {
    display: flex;
    gap: 10px;
    margin-top: 28px;
}

.package-mini-stats div {
    flex: 1;
    padding: 13px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.06);
}

.package-mini-stats strong {
    display: block;
    color: var(--primary-blue);
    font-size: 18px;
    font-weight: 800;
}

.package-mini-stats small {
    color: var(--text-muted);
    font-size: 10px;
}


/* =========================================================
   FEATURES GRID
========================================================= */

.package-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
    border-radius: 22px;
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--border-light);
}


/* =========================================================
   FEATURE
========================================================= */

.package-feature {
    position: relative;
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #edf1f7;
    cursor: pointer;
    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.package-feature:hover {
    transform: translateY(-2px);
    border-color: rgba(37,99,235,.22);
    box-shadow: 0 8px 22px rgba(15,23,42,.07);
}

.package-feature.active {
    border-color: rgba(37,99,235,.28);
    background: #f8fbff;
}


/* =========================================================
   NUMBER
========================================================= */

.feature-number {
    font-size: 9px;
    font-weight: 800;
    color: #94a3b8;
    min-width: 18px;
}


/* =========================================================
   ICON
========================================================= */

.feature-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: var(--primary-blue-soft);
    color: var(--primary-blue);
    font-size: 14px;
    transition: .25s ease;
}

.package-feature:hover .feature-icon,
.package-feature.active .feature-icon {
    background: var(--primary-blue);
    color: #fff;
}


/* =========================================================
   NAME
========================================================= */

.feature-name {
    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
    color: var(--text-dark);
}


/* =========================================================
   CTA
========================================================= */

.package-cta {
    margin-top: 20px;
    padding: 15px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-radius: 16px;
    background: #0f172a;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 11px;
}

.cta-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255,255,255,.1);
    color: #fff;
}

.cta-content strong {
    display: block;
    color: #fff;
    font-size: 13px;
}

.cta-content small {
    display: block;
    margin-top: 3px;
    color: #94a3b8;
    font-size: 10px;
}

.package-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 9px;
    background: var(--primary-blue);
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    transition: .25s ease;
}

.package-cta-btn:hover {
    transform: translateY(-2px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .package-layout {
        grid-template-columns: 1fr;
    }

    .package-intro {
        padding: 25px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .backlink-package-section {
        padding: 58px 14px;
    }

    .package-heading {
        margin-bottom: 25px;
    }

    .package-heading h2 {
        font-size: 27px;
    }

    .package-heading p {
        font-size: 13px;
        line-height: 1.6;
    }

    /* Compact intro */
    .package-intro {
        padding: 19px;
        border-radius: 17px;
    }

    .package-badge {
        width: 40px;
        height: 40px;
        border-radius: 11px;
        font-size: 15px;
        margin-bottom: 12px;
    }

    .package-intro h3 {
        font-size: 21px;
        margin-bottom: 8px;
    }

    .package-intro p {
        font-size: 12px;
        line-height: 1.55;
    }

    .package-mini-stats {
        margin-top: 15px;
    }

    .package-mini-stats div {
        padding: 9px;
    }

    .package-mini-stats strong {
        font-size: 15px;
    }

    .package-mini-stats small {
        font-size: 9px;
    }


    /* 2-column compact features */
    .package-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 7px;
        padding: 7px;
        border-radius: 17px;
    }

    .package-feature {
        min-height: 62px;
        padding: 8px;
        gap: 7px;
        border-radius: 11px;
    }

    .feature-number {
        display: none;
    }

    .feature-icon {
        width: 31px;
        height: 31px;
        min-width: 31px;
        border-radius: 8px;
        font-size: 11px;
    }

    .feature-name {
        font-size: 10px;
        line-height: 1.3;
    }


    /* CTA */
    .package-cta {
        margin-top: 12px;
        padding: 12px;
        border-radius: 13px;
        flex-direction: column;
        align-items: stretch;
    }

    .cta-content strong {
        font-size: 11px;
    }

    .cta-content small {
        font-size: 9px;
    }

    .package-cta-btn {
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .package-heading h2 {
        font-size: 24px;
    }

    .feature-name {
        font-size: 9px;
    }

    .feature-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
    }

}






























/* =========================================================
   TOOLS & PLATFORMS SECTION
========================================================= */

.tools-section {

    width: 100%;

    padding: 85px 0;

    background: var(--bg-body);

    font-family: var(--font-main);

    overflow: hidden;

    box-sizing: border-box;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.tools-container {

    width: 100%;

    max-width: 1400px;

    margin: 0 auto;

    box-sizing: border-box;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.tools-header {

    width: 100%;

    max-width: 700px;

    margin: 0 auto 42px;

    padding: 0 20px;

    text-align: center;

    box-sizing: border-box;
}


.tools-eyebrow {

    display: inline-block;

    margin-bottom: 11px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.7px;

    text-transform: uppercase;

    color: var(--primary-blue);
}


.tools-header h2 {

    margin: 0 0 13px;

    font-size: 38px;

    line-height: 1.2;

    font-weight: 800;

    color: var(--text-dark);
}


.tools-header p {

    margin: 0;

    font-size: 15px;

    line-height: 1.7;

    color: var(--text-muted);
}


/* =========================================================
   SLIDER
========================================================= */

.tools-slider {

    width: 100%;

    overflow: hidden;

    box-sizing: border-box;
}


/* =========================================================
   TRACK VIEWPORT
========================================================= */

.tools-track-wrap {

    position: relative;

    width: 100%;

    overflow: hidden;

    cursor: grab;

    user-select: none;

    -webkit-user-select: none;

    touch-action: pan-y;

    box-sizing: border-box;
}


.tools-track-wrap.is-dragging {

    cursor: grabbing;
}


/* =========================================================
   TRACK
========================================================= */

.tools-track {

    display: flex;

    align-items: center;

    gap: 18px;

    width: max-content;

    will-change: transform;

    transform: translate3d(0, 0, 0);

    backface-visibility: hidden;

    -webkit-backface-visibility: hidden;
}


/* =========================================================
   TOOL CARD
========================================================= */

.tool-card {

    width: 190px;

    min-width: 190px;

    height: 94px;

    padding: 14px 17px;

    display: flex;

    align-items: center;

    gap: 13px;

    flex-shrink: 0;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid rgba(37, 99, 235, 0.12);

    border-radius: 15px;

    box-shadow:
        0 7px 22px rgba(30, 64, 175, 0.055);

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}


.tool-card:hover {

    transform: translateY(-3px);

    border-color: rgba(37, 99, 235, 0.25);

    box-shadow:
        0 12px 28px rgba(30, 64, 175, 0.10);
}


/* =========================================================
   TOOL LOGO
========================================================= */

.tool-card img {

    width: 45px;

    height: 45px;

    min-width: 45px;

    object-fit: contain;

    display: block;

    pointer-events: none;

    user-select: none;

    -webkit-user-drag: none;

    border-radius: 8px;

    border: 1px solid rgba(37, 99, 235, 0.12);

    padding: 4px;

    box-sizing: border-box;

    background: #ffffff;
}


/* =========================================================
   TOOL NAME
========================================================= */

.tool-card span {

    min-width: 0;

    font-size: 13px;

    line-height: 1.35;

    font-weight: 700;

    color: var(--text-dark);
}


/* =========================================================
   EDGE FADE
========================================================= */

.tools-track-wrap::before,
.tools-track-wrap::after {

    content: "";

    position: absolute;

    top: 0;

    bottom: 0;

    width: 75px;

    z-index: 5;

    pointer-events: none;
}


.tools-track-wrap::before {

    left: 0;

    background:
        linear-gradient(
            to right,
            var(--bg-body),
            rgba(248,250,252,0)
        );
}


.tools-track-wrap::after {

    right: 0;

    background:
        linear-gradient(
            to left,
            var(--bg-body),
            rgba(248,250,252,0)
        );
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .tools-section {

        padding: 70px 0;
    }


    .tools-header {

        margin-bottom: 35px;
    }


    .tools-header h2 {

        font-size: 32px;
    }


    .tool-card {

        width: 175px;

        min-width: 175px;

        height: 88px;
    }


    .tool-card img {

        width: 40px;

        height: 40px;

        min-width: 40px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .tools-section {

        padding: 60px 0;
    }


    .tools-header {

        padding: 0 18px;

        margin-bottom: 30px;
    }


    .tools-eyebrow {

        font-size: 10px;

        letter-spacing: 1.4px;
    }


    .tools-header h2 {

        font-size: 28px;

        line-height: 1.22;
    }


    .tools-header p {

        font-size: 13px;

        line-height: 1.65;
    }


    .tools-track {

        gap: 12px;
    }


    .tool-card {

        width: 155px;

        min-width: 155px;

        height: 78px;

        padding: 11px 13px;

        gap: 10px;

        border-radius: 13px;
    }


    .tool-card img {

        width: 35px;

        height: 35px;

        min-width: 35px;

        padding: 3px;

        border-radius: 7px;
    }


    .tool-card span {

        font-size: 11.5px;

        line-height: 1.3;
    }


    .tools-track-wrap::before,
    .tools-track-wrap::after {

        width: 30px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .tools-header h2 {

        font-size: 25px;
    }


    .tool-card {

        width: 145px;

        min-width: 145px;

        height: 74px;

        padding: 10px 11px;
    }


    .tool-card img {

        width: 32px;

        height: 32px;

        min-width: 32px;
    }


    .tool-card span {

        font-size: 11px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .tools-track {

        transform: none !important;
    }

}

























/* =========================================================
   #12 FINAL CTA SECTION
========================================================= */

.final-backlink-cta {
    position: relative;
    width: 100%;
    padding: 90px 20px;
    background: var(--bg-body);
    font-family: var(--font-main);
    box-sizing: border-box;
    overflow: hidden;
}


/* =========================================================
   MAIN CTA CONTAINER
========================================================= */

.final-cta-container {
    position: relative;
    max-width: 1180px;
    min-height: 420px;
    margin: 0 auto;
    padding: 60px 65px 25px;
    border-radius: 28px;
    background:
        linear-gradient(
            135deg,
            #0f172a 0%,
            #172554 55%,
            #1e3a8a 100%
        );
    box-sizing: border-box;
    overflow: hidden;
    box-shadow:
        0 25px 60px rgba(15, 23, 42, 0.18);
}


/* =========================================================
   BACKGROUND GLOW
========================================================= */

.final-cta-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
}

.final-glow-one {
    width: 330px;
    height: 330px;
    right: -120px;
    top: -150px;
    background: rgba(37, 99, 235, 0.25);
}

.final-glow-two {
    width: 240px;
    height: 240px;
    left: -120px;
    bottom: -140px;
    background: rgba(59, 130, 246, 0.15);
}


/* =========================================================
   CONTENT
========================================================= */

.final-cta-content {
    position: relative;
    z-index: 5;
    max-width: 650px;
}

.final-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 13px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 30px;
    background: rgba(255,255,255,.07);
    color: #bfdbfe;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.final-cta-content h2 {
    margin: 18px 0 14px;
    max-width: 680px;
    color: #ffffff;
    font-size: 42px;
    line-height: 1.16;
    font-weight: 800;
}

.final-cta-content h2 span {
    color: #60a5fa;
}

.final-cta-content p {
    max-width: 590px;
    margin: 0;
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   CTA BUTTONS
========================================================= */

.final-cta-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}


/* Main buttons */

.final-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 55px;
    padding: 8px 12px;
    border-radius: 12px;
    text-decoration: none;
    box-sizing: border-box;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.final-btn:hover {
    transform: translateY(-3px);
}


/* Button Icon */

.final-btn-icon {
    width: 37px;
    height: 37px;
    min-width: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    font-size: 14px;
}


/* Button Text */

.final-btn span:not(.final-btn-icon) {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.final-btn strong {
    font-size: 11px;
    font-weight: 800;
}

.final-btn small {
    font-size: 9px;
}


/* Primary */

.final-btn-primary {
    background: #ffffff;
    color: #0f172a;
    box-shadow:
        0 12px 28px rgba(0,0,0,.15);
}

.final-btn-primary .final-btn-icon {
    background: #eff6ff;
    color: #2563eb;
}

.final-btn-primary small {
    color: #64748b;
}

.final-btn-primary .final-arrow {
    color: #2563eb;
}


/* WhatsApp */

.final-btn-whatsapp {
    background: #16a34a;
    color: #ffffff;
}

.final-btn-whatsapp .final-btn-icon {
    background: rgba(255,255,255,.13);
}

.final-btn-whatsapp small {
    color: #dcfce7;
}

.final-btn-whatsapp .final-arrow {
    color: #dcfce7;
}


/* Arrow */

.final-arrow {
    margin-left: 4px;
    font-size: 10px;
}


/* =========================================================
   CALL LINK
========================================================= */

.final-call-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 12px 13px;
    color: #dbeafe;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    transition: .25s ease;
}

.final-call-link:hover {
    background: rgba(255,255,255,.07);
    color: #ffffff;
}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.final-cta-visual {
    position: absolute;
    width: 400px;
    height: 400px;
    right: -35px;
    top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   ORBITS
========================================================= */

.cta-orbit {
    position: absolute;
    border: 1px solid rgba(147,197,253,.12);
    border-radius: 50%;
}

.orbit-one {
    width: 360px;
    height: 360px;
}

.orbit-two {
    width: 275px;
    height: 275px;
}

.orbit-three {
    width: 195px;
    height: 195px;
}


/* =========================================================
   RANKING CARD
========================================================= */

.cta-ranking-card {
    position: relative;
    z-index: 3;
    width: 275px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 19px;
    background: rgba(255,255,255,.09);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow:
        0 25px 50px rgba(0,0,0,.22);
    animation: ctaFloat 4s ease-in-out infinite;
}

@keyframes ctaFloat {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}


/* Card Top */

.ranking-card-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ranking-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(96,165,250,.15);
    color: #93c5fd;
}

.ranking-card-top small {
    display: block;
    color: #93c5fd;
    font-size: 8px;
    letter-spacing: 1px;
}

.ranking-card-top strong {
    display: block;
    margin-top: 2px;
    color: #ffffff;
    font-size: 11px;
}


/* =========================================================
   MINI CHART
========================================================= */

.ranking-chart {
    height: 100px;
    margin-top: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    padding: 0 4px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.ranking-chart span {
    width: 22px;
    border-radius: 5px 5px 0 0;
    background: linear-gradient(
        to top,
        #2563eb,
        #60a5fa
    );
    animation: chartGrow 1.2s ease both;
}

.ranking-chart span:nth-child(2) {
    animation-delay: .08s;
}

.ranking-chart span:nth-child(3) {
    animation-delay: .16s;
}

.ranking-chart span:nth-child(4) {
    animation-delay: .24s;
}

.ranking-chart span:nth-child(5) {
    animation-delay: .32s;
}

.ranking-chart span:nth-child(6) {
    animation-delay: .4s;
}

@keyframes chartGrow {
    from {
        transform: scaleY(0);
        transform-origin: bottom;
    }

    to {
        transform: scaleY(1);
    }
}


/* =========================================================
   RESULT
========================================================= */

.ranking-result {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
}

.ranking-result div {
    padding: 9px;
    border-radius: 9px;
    background: rgba(255,255,255,.06);
}

.ranking-result strong {
    display: block;
    color: #ffffff;
    font-size: 14px;
}

.ranking-result small {
    color: #94a3b8;
    font-size: 8px;
}


/* =========================================================
   FOOTER INFO
========================================================= */

.final-cta-footer {
    position: absolute;
    z-index: 5;
    left: 65px;
    right: 65px;
    bottom: 23px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.1);
}

.final-business {
    display: flex;
    align-items: center;
    gap: 10px;
}

.business-logo {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(255,255,255,.08);
    color: #93c5fd;
}

.final-business strong {
    display: block;
    color: #ffffff;
    font-size: 11px;
}

.final-business span {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 3px;
    color: #94a3b8;
    font-size: 9px;
}

.business-hours {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 10px;
}

.business-hours i {
    color: #60a5fa;
}

.business-hours strong {
    margin-left: 4px;
    color: #dbeafe;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .final-cta-container {
        padding-left: 42px;
        padding-right: 42px;
    }

    .final-cta-visual {
        right: -100px;
        opacity: .45;
    }

    .final-cta-content {
        max-width: 650px;
    }

    .final-cta-footer {
        left: 42px;
        right: 42px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .final-backlink-cta {
        padding: 55px 14px;
    }

    .final-cta-container {
        min-height: auto;
        padding: 32px 20px 20px;
        border-radius: 21px;
    }


    /* Hide visual on mobile
       Keeps CTA compact */
    .final-cta-visual {
        display: none;
    }


    .final-cta-content {
        max-width: 100%;
    }


    .final-cta-eyebrow {
        font-size: 9px;
        padding: 6px 10px;
    }


    .final-cta-content h2 {
        margin: 14px 0 10px;
        font-size: 28px;
        line-height: 1.2;
    }


    .final-cta-content p {
        font-size: 13px;
        line-height: 1.65;
    }


    /* Buttons stack */

    .final-cta-buttons {
        margin-top: 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }


    .final-btn {
        width: 100%;
        min-height: 53px;
        padding: 7px 9px;
        border-radius: 10px;
    }


    .final-btn-icon {
        width: 31px;
        height: 31px;
        min-width: 31px;
        font-size: 12px;
    }


    .final-btn strong {
        font-size: 9px;
    }


    .final-btn small {
        font-size: 7px;
    }


    .final-arrow {
        display: none;
    }


    .final-call-link {
        grid-column: 1 / -1;
        justify-content: center;
        min-height: 42px;
        box-sizing: border-box;
        font-size: 10px;
    }


    /* Footer */

    .final-cta-footer {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 25px;
        padding-top: 15px;
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }


    .final-business strong {
        font-size: 10px;
    }


    .final-business span {
        font-size: 8px;
    }


    .business-hours {
        flex-direction: column;
        align-items: flex-end;
        gap: 3px;
        font-size: 8px;
        text-align: right;
    }


    .business-hours strong {
        display: block;
        margin: 2px 0 0;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .final-cta-content h2 {
        font-size: 25px;
    }

    .final-cta-container {
        padding: 28px 16px 17px;
    }

    .final-btn strong {
        font-size: 8px;
    }

    .final-btn small {
        display: none;
    }

    .final-business {
        gap: 7px;
    }

    .business-logo {
        width: 30px;
        height: 30px;
    }

}



























/* =========================================================
   #14 FAQ SECTION
========================================================= */

.faq-section {

    width: 100%;

    padding: 90px 20px;

    background: var(--bg-body);

    font-family: var(--font-main);

    box-sizing: border-box;

    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.faq-container {

    width: 100%;

    max-width: 920px;

    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.faq-header {

    text-align: center;

    max-width: 680px;

    margin: 0 auto 45px;
}


.faq-eyebrow {

    display: inline-flex;

    align-items: center;

    padding: 7px 13px;

    margin-bottom: 14px;

    border-radius: 30px;

    background: var(--primary-blue-soft);

    color: var(--primary-blue);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.faq-header h2 {

    margin: 0;

    color: var(--text-dark);

    font-size: 40px;

    line-height: 1.2;

    font-weight: 800;
}


.faq-header h2 span {

    color: var(--primary-blue);
}


.faq-header p {

    max-width: 600px;

    margin: 15px auto 0;

    color: var(--text-muted);

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   FAQ LIST
========================================================= */

.faq-list {

    display: flex;

    flex-direction: column;

    gap: 11px;
}


/* =========================================================
   FAQ ITEM
========================================================= */

.faq-item {

    background: #ffffff;

    border: 1px solid var(--border-light);

    border-radius: 15px;

    overflow: hidden;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.faq-item.active {

    border-color: rgba(37, 99, 235, 0.28);

    box-shadow:
        0 10px 30px rgba(37, 99, 235, 0.07);
}


/* =========================================================
   QUESTION BUTTON
========================================================= */

.faq-question {

    width: 100%;

    min-height: 70px;

    padding: 16px 18px;

    display: grid;

    grid-template-columns: 40px 1fr 34px;

    align-items: center;

    gap: 12px;

    border: 0;

    background: transparent;

    color: var(--text-dark);

    font-family: inherit;

    text-align: left;

    cursor: pointer;
}


/* =========================================================
   NUMBER
========================================================= */

.faq-number {

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: var(--primary-blue-soft);

    color: var(--primary-blue);

    font-size: 10px;

    font-weight: 800;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}


.faq-item.active .faq-number {

    background: var(--primary-blue);

    color: #ffffff;
}


/* =========================================================
   QUESTION TEXT
========================================================= */

.faq-question-text {

    font-size: 14px;

    line-height: 1.45;

    font-weight: 750;

    color: var(--text-dark);
}


/* =========================================================
   PLUS ICON
========================================================= */

.faq-icon {

    width: 32px;

    height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #f8fafc;

    color: var(--text-muted);

    font-size: 11px;

    transition:
        transform 0.35s ease,
        background 0.3s ease,
        color 0.3s ease;
}


.faq-item.active .faq-icon {

    transform: rotate(45deg);

    background: var(--primary-blue-soft);

    color: var(--primary-blue);
}


/* =========================================================
   ANSWER
========================================================= */

.faq-answer {

    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows 0.4s ease;
}


.faq-item.active .faq-answer {

    grid-template-rows: 1fr;
}


.faq-answer-inner {

    min-height: 0;

    overflow: hidden;
}


.faq-answer p {

    margin: 0;

    padding: 0 68px 22px;

    color: var(--text-muted);

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.faq-bottom {

    margin-top: 25px;

    padding: 20px 22px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border: 1px solid var(--border-light);

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            var(--primary-blue-soft)
        );
}


.faq-bottom-text {

    display: flex;

    flex-direction: column;

    gap: 4px;
}


.faq-bottom-text strong {

    color: var(--text-dark);

    font-size: 14px;

    font-weight: 800;
}


.faq-bottom-text span {

    color: var(--text-muted);

    font-size: 12px;
}


.faq-cta {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    flex-shrink: 0;

    padding: 11px 16px;

    border-radius: 9px;

    background: var(--primary-blue);

    color: #ffffff;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.faq-cta:hover {

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(37, 99, 235, 0.2);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .faq-section {

        padding: 65px 15px;
    }


    .faq-header {

        margin-bottom: 30px;
    }


    .faq-header h2 {

        font-size: 29px;

        line-height: 1.25;
    }


    .faq-header p {

        font-size: 13px;

        line-height: 1.65;
    }


    .faq-list {

        gap: 8px;
    }


    .faq-item {

        border-radius: 13px;
    }


    .faq-question {

        min-height: 64px;

        padding: 13px 12px;

        grid-template-columns: 34px 1fr 30px;

        gap: 9px;
    }


    .faq-number {

        width: 30px;

        height: 30px;

        border-radius: 8px;

        font-size: 9px;
    }


    .faq-question-text {

        font-size: 12px;

        line-height: 1.45;
    }


    .faq-icon {

        width: 28px;

        height: 28px;

        font-size: 10px;
    }


    .faq-answer p {

        padding: 0 14px 17px 51px;

        font-size: 12px;

        line-height: 1.7;
    }


    .faq-bottom {

        margin-top: 18px;

        padding: 17px;

        flex-direction: column;

        align-items: stretch;

        gap: 13px;
    }


    .faq-bottom-text strong {

        font-size: 13px;
    }


    .faq-bottom-text span {

        font-size: 11px;

        line-height: 1.5;
    }


    .faq-cta {

        justify-content: center;

        width: 100%;

        box-sizing: border-box;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .faq-section {

        padding: 55px 12px;
    }


    .faq-header h2 {

        font-size: 26px;
    }


    .faq-question {

        grid-template-columns: 30px 1fr 28px;

        padding: 11px 10px;

        gap: 8px;
    }


    .faq-number {

        width: 28px;

        height: 28px;

        font-size: 8px;
    }


    .faq-question-text {

        font-size: 11.5px;
    }


    .faq-answer p {

        padding-left: 46px;

        font-size: 11.5px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .faq-answer {

        transition: none;
    }

    .faq-icon {

        transition: none;
    }

}