/* =====================================================
   REDSPY — EMPLOYEE INVESTIGATION INTRO
   PREMIUM CARD PRESENTATION
===================================================== */

.employee-intro {
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #faf8f3 100%
        );
}


/* -----------------------------------------------------
   INTRODUCTION TEXT
------------------------------------------------------ */

.employee-intro .section-title {
    max-width: 950px;
    margin: 0 auto 58px;
    text-align: center;
}

.employee-intro .section-title span {
    display: block;

    margin-bottom: 16px;

    font-family: Arial, sans-serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 4px;

    color: #c69a3b;
}

.employee-intro .section-title h2 {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(40px, 5vw, 60px);

    line-height: 1.08;

    color: #171010;
}

.employee-intro .section-title p {
    max-width: 850px;

    margin: 24px auto 0;

    font-family: Arial, sans-serif;

    font-size: 16px;

    line-height: 1.8;

    color: #625d59;
}


/* -----------------------------------------------------
   THREE CARD GRID
------------------------------------------------------ */

.employee-intro .intro-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;

    max-width: 1250px;

    margin: 0 auto;
}


/* -----------------------------------------------------
   PREMIUM CARD
------------------------------------------------------ */

.employee-intro .intro-card {

    position: relative;

    padding: 36px 32px 34px;

    min-height: 275px;

    background:
        linear-gradient(
            145deg,
            #1a080b 0%,
            #27090e 100%
        );

    border:
        1px solid
        rgba(198,154,59,0.42);

    border-radius: 15px;

    overflow: hidden;

    box-shadow:
        0 14px 35px
        rgba(25,8,10,0.10);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


/* GOLD TOP ACCENT */

.employee-intro .intro-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            #c69a3b,
            #e1c06d,
            #8f1728
        );
}


/* -----------------------------------------------------
   NUMBER
------------------------------------------------------ */

.employee-intro .intro-number {

    position: absolute;

    top: 22px;
    right: 25px;

    font-family: Arial, sans-serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    color:
        rgba(211,170,84,0.55);
}


/* -----------------------------------------------------
   ICON
------------------------------------------------------ */

.employee-intro .intro-icon {

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border:
        1px solid
        rgba(198,154,59,0.65);

    border-radius: 50%;

    background:
        rgba(198,154,59,0.08);

    color: #d3aa54;

    font-size: 20px;
}


/* -----------------------------------------------------
   CARD HEADING
------------------------------------------------------ */

.employee-intro .intro-card h3 {

    margin: 0 0 13px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 22px;

    line-height: 1.25;

    color: #ffffff;
}


/* -----------------------------------------------------
   CARD TEXT
------------------------------------------------------ */

.employee-intro .intro-card p {

    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 14px;

    line-height: 1.7;

    color: #c8bfbc;
}


/* -----------------------------------------------------
   HOVER
------------------------------------------------------ */

.employee-intro .intro-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(198,154,59,0.85);

    box-shadow:
        0 22px 45px
        rgba(25,8,10,0.18);
}

.employee-intro .intro-card:hover .intro-icon {

    background: #97192b;

    color: #ffffff;

    border-color: #d3aa54;
}


/* -----------------------------------------------------
   TABLET
------------------------------------------------------ */

@media (max-width: 950px) {

    .employee-intro .intro-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* -----------------------------------------------------
   MOBILE
------------------------------------------------------ */

@media (max-width: 650px) {

    .employee-intro {
        padding-left: 20px;
        padding-right: 20px;
    }

    .employee-intro .intro-grid {
        grid-template-columns: 1fr;
    }

    .employee-intro .intro-card {
        min-height: auto;
    }

    .employee-intro .section-title h2 {
        font-size: 38px;
    }

}

/* =====================================================
   UNDERSTANDING EMPLOYEE INVESTIGATION
   PREMIUM REDSPY OVERVIEW SECTION
===================================================== */

.employee-overview {
    background: #faf8f3;
    padding: 100px 0;
}

.employee-overview .overview-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

/* -----------------------------------------------------
   IMAGE
------------------------------------------------------ */

.employee-overview .overview-image {
    position: relative;
}

.employee-overview .overview-image::before {
    content: "";
    position: absolute;
    top: -14px;
    left: -14px;
    width: 90px;
    height: 90px;
    border-top: 3px solid #c69a3b;
    border-left: 3px solid #c69a3b;
    z-index: 1;
}

.employee-overview .overview-image::after {
    content: "";
    position: absolute;
    right: -14px;
    bottom: -14px;
    width: 90px;
    height: 90px;
    border-right: 3px solid #8f1728;
    border-bottom: 3px solid #8f1728;
    z-index: 1;
}

.employee-overview .overview-image img {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;

    border-radius: 4px;

    box-shadow:
        0 25px 55px rgba(25, 8, 10, 0.18);
}

/* -----------------------------------------------------
   CONTENT
------------------------------------------------------ */

.employee-overview .overview-content {
    padding: 10px 0;
}

.employee-overview .overview-content > span {
    display: inline-block;

    margin-bottom: 18px;

    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;

    letter-spacing: 4px;

    color: #c69a3b;
}

.employee-overview .overview-content h2 {
    margin: 0 0 24px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(38px, 4vw, 54px);
    line-height: 1.12;

    color: #171010;
}

.employee-overview .overview-content p {
    margin: 0 0 18px;

    font-family: Arial, sans-serif;

    font-size: 16px;
    line-height: 1.8;

    color: #625d59;
}

/* -----------------------------------------------------
   CHECK POINTS
------------------------------------------------------ */

.employee-overview .overview-points {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 14px 25px;

    margin-top: 30px;
}

.employee-overview .overview-points .point {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 13px 0;

    border-bottom:
        1px solid
        rgba(198,154,59,0.22);
}

.employee-overview .overview-points .point i {
    flex: 0 0 24px;

    color: #c69a3b;

    font-size: 18px;
}

.employee-overview .overview-points .point span {
    font-family: Arial, sans-serif;

    font-size: 14px;
    font-weight: 600;

    color: #292323;
}

/* -----------------------------------------------------
   TABLET
------------------------------------------------------ */

@media (max-width: 950px) {

    .employee-overview {
        padding: 80px 0;
    }

    .employee-overview .overview-wrapper {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .employee-overview .overview-image img {
        height: 480px;
    }

}

/* -----------------------------------------------------
   MOBILE
------------------------------------------------------ */

@media (max-width: 650px) {

    .employee-overview {
        padding: 65px 20px;
    }

    .employee-overview .overview-wrapper {
        gap: 35px;
    }

    .employee-overview .overview-image img {
        height: 330px;
    }

    .employee-overview .overview-content h2 {
        font-size: 36px;
    }

    .employee-overview .overview-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .employee-overview .overview-points {
        grid-template-columns: 1fr;
    }

}

/* =====================================================
   COMMON WORKPLACE CONCERNS
   PREMIUM REDSPY RISK CARD SECTION
===================================================== */

.employee-investigation .risk-section {
    background: #ffffff;
}


/* -----------------------------------------------------
   RISK GRID
------------------------------------------------------ */

.risk-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;

    max-width: 1250px;

    margin: 55px auto 0;
}


/* -----------------------------------------------------
   RISK CARD
------------------------------------------------------ */

.risk-card {

    position: relative;

    padding: 34px 30px 32px;

    min-height: 225px;

    background:
        linear-gradient(
            145deg,
            #1a080b 0%,
            #290b10 100%
        );

    border:
        1px solid
        rgba(198,154,59,0.35);

    border-radius: 14px;

    overflow: hidden;

    box-shadow:
        0 14px 35px
        rgba(25,8,10,0.10);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


/* -----------------------------------------------------
   GOLD TOP LINE
------------------------------------------------------ */

.risk-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            #c69a3b,
            #e1c06d,
            #8f1728
        );
}


/* -----------------------------------------------------
   ICON
------------------------------------------------------ */

.risk-card > i {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    margin-bottom: 22px;

    border:
        1px solid
        rgba(198,154,59,0.65);

    border-radius: 50%;

    background:
        rgba(198,154,59,0.08);

    color: #d3aa54;

    font-size: 20px;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}


/* -----------------------------------------------------
   CARD HEADING
------------------------------------------------------ */

.risk-card h3 {

    margin: 0 0 12px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 23px;

    line-height: 1.25;

    color: #ffffff;
}


/* -----------------------------------------------------
   CARD TEXT
------------------------------------------------------ */

.risk-card p {

    margin: 0;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 14px;

    line-height: 1.7;

    color: #c8bfbc;
}


/* -----------------------------------------------------
   HOVER EFFECT
------------------------------------------------------ */

.risk-card:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(198,154,59,0.85);

    box-shadow:
        0 24px 50px
        rgba(25,8,10,0.20);
}


.risk-card:hover > i {

    background: #97192b;

    color: #ffffff;

    border-color: #d3aa54;
}


/* -----------------------------------------------------
   SECTION TITLE — THIS SECTION ONLY
------------------------------------------------------ */

.risk-grid {

    position: relative;
}


/* -----------------------------------------------------
   TABLET
------------------------------------------------------ */

@media (max-width: 950px) {

    .risk-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 22px;
    }

}


/* -----------------------------------------------------
   MOBILE
------------------------------------------------------ */

@media (max-width: 650px) {

    .risk-grid {

        grid-template-columns: 1fr;

        gap: 20px;

        margin-top: 40px;
    }

    .risk-card {

        min-height: auto;

        padding: 30px 25px;
    }

    .risk-card h3 {

        font-size: 21px;
    }

}

/* =====================================================
   INDUSTRIES WE SERVE
   PREMIUM REDSPY INDUSTRY CARDS
===================================================== */

.industries-section {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}


/* -----------------------------------------------------
   INDUSTRIES GRID
------------------------------------------------------ */

.industries-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;

    max-width: 1250px;

    margin: 55px auto 0;
}


/* -----------------------------------------------------
   INDUSTRY CARD
------------------------------------------------------ */

.industry-card {

    position: relative;

    min-height: 155px;

    padding: 30px 24px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            #17080a 0%,
            #290b10 100%
        );

    border:
        1px solid
        rgba(198,154,59,0.38);

    border-radius: 14px;

    overflow: hidden;

    box-shadow:
        0 12px 30px
        rgba(20,7,9,0.10);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


/* -----------------------------------------------------
   GOLD TOP ACCENT
------------------------------------------------------ */

.industry-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            #8f1728,
            #d3aa54,
            #8f1728
        );
}


/* -----------------------------------------------------
   SUBTLE GOLD GLOW
------------------------------------------------------ */

.industry-card::after {

    content: "";

    position: absolute;

    width: 110px;
    height: 110px;

    right: -45px;
    bottom: -55px;

    border-radius: 50%;

    background:
        rgba(198,154,59,0.06);

    pointer-events: none;
}


/* -----------------------------------------------------
   INDUSTRY ICON
------------------------------------------------------ */

.industry-card > i {

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 50%;

    border:
        1px solid
        rgba(211,170,84,0.65);

    background:
        rgba(211,170,84,0.08);

    color: #d3aa54;

    font-size: 22px;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}


/* -----------------------------------------------------
   INDUSTRY TITLE
------------------------------------------------------ */

.industry-card h3 {

    position: relative;

    z-index: 2;

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 19px;

    line-height: 1.35;

    font-weight: 600;

    color: #ffffff;
}


/* -----------------------------------------------------
   HOVER
------------------------------------------------------ */

.industry-card:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(211,170,84,0.90);

    box-shadow:
        0 22px 45px
        rgba(20,7,9,0.20);
}


.industry-card:hover > i {

    background:
        #97192b;

    color:
        #ffffff;

    transform:
        scale(1.08);
}


/* -----------------------------------------------------
   TABLET
------------------------------------------------------ */

@media (max-width: 1050px) {

    .industries-grid {

        grid-template-columns:
            repeat(3, 1fr);

        gap: 20px;
    }

}


/* -----------------------------------------------------
   SMALL TABLET
------------------------------------------------------ */

@media (max-width: 780px) {

    .industries-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 18px;
    }

}


/* -----------------------------------------------------
   MOBILE
------------------------------------------------------ */

@media (max-width: 520px) {

    .industries-grid {

        grid-template-columns: 1fr;

        gap: 18px;

        margin-top: 40px;
    }

    .industry-card {

        min-height: 140px;

        padding: 26px 20px;
    }

    .industry-card h3 {

        font-size: 18px;
    }

}

/* =====================================================
   WORKPLACE INTEGRITY FRAMEWORK
   PREMIUM REDSPY FRAMEWORK CARDS
===================================================== */

.integrity-framework {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}


/* -----------------------------------------------------
   FRAMEWORK BOX
------------------------------------------------------ */

.integrity-framework .framework-box {

    max-width: 1250px;

    margin: 0 auto;

    padding: 70px 55px 75px;

    background:
        linear-gradient(
            145deg,
            #fffdf9 0%,
            #f8f4ed 100%
        );

    border:
        1px solid
        rgba(198,154,59,0.28);

    border-radius: 22px;

    box-shadow:
        0 18px 50px
        rgba(25,10,12,0.08);

    position: relative;

    overflow: hidden;
}


/* -----------------------------------------------------
   GOLD DECORATIVE LINE
------------------------------------------------------ */

.integrity-framework .framework-box::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            #8e182a,
            #d3aa54,
            #8e182a
        );
}


/* -----------------------------------------------------
   SECTION TITLE
------------------------------------------------------ */

.integrity-framework .section-title {

    text-align: center;

    max-width: 850px;

    margin: 0 auto 55px;
}


.integrity-framework .section-title span {

    display: inline-block;

    margin-bottom: 18px;

    color: #c69a3b;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 4px;

    text-transform: uppercase;
}


.integrity-framework .section-title h2 {

    margin: 0;

    color: #171114;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(36px, 4vw, 54px);

    line-height: 1.15;

    font-weight: 700;
}


/* -----------------------------------------------------
   FRAMEWORK GRID
------------------------------------------------------ */

.framework-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;
}


/* -----------------------------------------------------
   FRAMEWORK CARD
------------------------------------------------------ */

.framework-card {

    position: relative;

    min-height: 275px;

    padding: 38px 26px 32px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    justify-content: flex-start;

    background: #ffffff;

    border:
        1px solid
        rgba(198,154,59,0.30);

    border-radius: 16px;

    box-shadow:
        0 10px 28px
        rgba(20,7,9,0.07);

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


/* -----------------------------------------------------
   CARD GOLD TOP LINE
------------------------------------------------------ */

.framework-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #c69a3b,
            transparent
        );
}


/* -----------------------------------------------------
   CARD NUMBER / DECORATIVE GLOW
------------------------------------------------------ */

.framework-card::after {

    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    right: -65px;
    bottom: -65px;

    border-radius: 50%;

    background:
        rgba(198,154,59,0.055);

    pointer-events: none;
}


/* -----------------------------------------------------
   FRAMEWORK ICON
------------------------------------------------------ */

.framework-card > i {

    width: 70px;
    height: 70px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #8e182a,
            #5e0e1b
        );

    border:
        2px solid
        rgba(211,170,84,0.75);

    color: #d9b45c;

    font-size: 25px;

    box-shadow:
        0 8px 20px
        rgba(120,20,35,0.18);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


/* -----------------------------------------------------
   CARD TITLE
------------------------------------------------------ */

.framework-card h3 {

    margin: 0 0 14px;

    color: #1b1113;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 23px;

    line-height: 1.25;

    font-weight: 700;
}


/* -----------------------------------------------------
   CARD DESCRIPTION
------------------------------------------------------ */

.framework-card p {

    margin: 0;

    color: #5d6268;

    font-family:
        Inter,
        Arial,
        sans-serif;

    font-size: 15px;

    line-height: 1.75;
}


/* -----------------------------------------------------
   HOVER EFFECT
------------------------------------------------------ */

.framework-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(198,154,59,0.75);

    box-shadow:
        0 20px 42px
        rgba(20,7,9,0.13);
}


.framework-card:hover > i {

    transform:
        scale(1.08);

    box-shadow:
        0 12px 28px
        rgba(120,20,35,0.28);
}


/* -----------------------------------------------------
   TABLET
------------------------------------------------------ */

@media (max-width: 1050px) {

    .integrity-framework .framework-box {

        padding:
            60px 35px 65px;
    }

    .framework-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* -----------------------------------------------------
   MOBILE
------------------------------------------------------ */

@media (max-width: 600px) {

    .integrity-framework .framework-box {

        padding:
            50px 20px 55px;

        border-radius: 16px;
    }

    .integrity-framework .section-title {

        margin-bottom: 40px;
    }

    .integrity-framework .section-title h2 {

        font-size: 34px;
    }

    .framework-grid {

        grid-template-columns: 1fr;

        gap: 18px;
    }

    .framework-card {

        min-height: auto;

        padding: 32px 24px;
    }

}

/* =====================================================
   EMPLOYEE INVESTIGATION SERVICES
   PREMIUM SERVICE BLOCKS
===================================================== */

.employee-services {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}


/* -----------------------------------------------------
   SECTION INTRODUCTION
------------------------------------------------------ */

.employee-services > .container > .section-title {

    max-width: 900px;

    margin: 0 auto 65px;

    text-align: center;
}


.employee-services > .container > .section-title > span {

    display: inline-block;

    margin-bottom: 18px;

    color: #c69a3b;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 4px;

    text-transform: uppercase;
}


.employee-services > .container > .section-title > h2 {

    margin: 0 0 22px;

    color: #171114;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(36px, 4vw, 56px);

    line-height: 1.12;

    font-weight: 700;
}


.employee-services > .container > .section-title > p {

    max-width: 780px;

    margin: 0 auto;

    color: #5e6268;

    font-size: 17px;

    line-height: 1.8;
}


/* =====================================================
   SERVICE BLOCK
===================================================== */

.employee-services .service-block {

    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: center;

    gap: 65px;

    max-width: 1250px;

    margin: 0 auto 70px;

    padding: 35px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #faf7f1 100%
        );

    border:
        1px solid
        rgba(198,154,59,0.25);

    border-radius: 22px;

    box-shadow:
        0 18px 45px
        rgba(30,10,14,0.07);

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


/* GOLD TOP EDGE */

.employee-services .service-block::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            #8e182a,
            #d3aa54,
            #8e182a
        );
}


/* -----------------------------------------------------
   ALTERNATING SERVICE BLOCK
------------------------------------------------------ */

.employee-services .service-block.reverse {

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);
}


/* -----------------------------------------------------
   SERVICE IMAGE
------------------------------------------------------ */

.employee-services .service-image {

    position: relative;

    width: 100%;

    min-height: 360px;

    overflow: hidden;

    border-radius: 16px;

    background: #17090c;

    box-shadow:
        0 14px 35px
        rgba(20,7,9,0.16);
}


.employee-services .service-image img {

    display: block;

    width: 100%;

    height: 100%;

    min-height: 360px;

    object-fit: cover;

    object-position: center;

    transition:
        transform .6s ease;
}


/* IMAGE OVERLAY */

.employee-services .service-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(65,8,18,0.12),
            rgba(0,0,0,0.20)
        );

    pointer-events: none;
}


/* IMAGE HOVER */

.employee-services .service-block:hover
.service-image img {

    transform: scale(1.035);
}


/* -----------------------------------------------------
   SERVICE CONTENT
------------------------------------------------------ */

.employee-services .service-content {

    padding: 15px 15px 15px 5px;
}


.employee-services .service-content > span {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 52px;
    height: 52px;

    margin-bottom: 20px;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #8e182a,
            #5d0d19
        );

    color: #d8b35d;

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 1px;

    border:
        1px solid
        rgba(211,170,84,0.75);

    box-shadow:
        0 8px 22px
        rgba(120,20,35,0.18);
}


/* -----------------------------------------------------
   SERVICE HEADING
------------------------------------------------------ */

.employee-services .service-content h2 {

    margin: 0 0 18px;

    color: #1a1113;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(29px, 3vw, 42px);

    line-height: 1.18;

    font-weight: 700;
}


/* -----------------------------------------------------
   SERVICE DESCRIPTION
------------------------------------------------------ */

.employee-services .service-content > p {

    margin: 0 0 25px;

    color: #5d6268;

    font-size: 16px;

    line-height: 1.8;
}


/* -----------------------------------------------------
   TYPICAL SITUATIONS
------------------------------------------------------ */

.employee-services .service-content h4 {

    margin: 0 0 14px;

    color: #8e182a;

    font-family:
        Inter,
        Arial,
        sans-serif;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* -----------------------------------------------------
   SERVICE LIST
------------------------------------------------------ */

.employee-services .service-content ul {

    margin: 0 0 28px;

    padding: 0;

    list-style: none;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px 18px;
}


.employee-services .service-content li {

    position: relative;

    padding-left: 22px;

    color: #41464c;

    font-size: 14px;

    line-height: 1.5;
}


.employee-services .service-content li::before {

    content: "✓";

    position: absolute;

    left: 0;
    top: 0;

    color: #c69a3b;

    font-weight: 700;
}


/* -----------------------------------------------------
   SERVICE BUTTONS
------------------------------------------------------ */

.employee-services .service-content .btn-primary,
.employee-services .service-content .btn-secondary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 48px;

    padding: 0 25px;

    border-radius: 30px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: .3px;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}


.employee-services .service-content .btn-primary {

    background: #8e182a;

    color: #ffffff;

    border: 1px solid #8e182a;
}


.employee-services .service-content .btn-secondary {

    background: transparent;

    color: #8e182a;

    border:
        1px solid
        #8e182a;
}


.employee-services .service-content
.btn-primary:hover {

    transform: translateY(-3px);

    box-shadow:
        0 10px 24px
        rgba(142,24,42,0.22);
}


.employee-services .service-content
.btn-secondary:hover {

    transform: translateY(-3px);

    background: #8e182a;

    color: #ffffff;

    box-shadow:
        0 10px 24px
        rgba(142,24,42,0.18);
}


/* -----------------------------------------------------
   SERVICE BLOCK HOVER
------------------------------------------------------ */

.employee-services .service-block:hover {

    transform: translateY(-5px);

    box-shadow:
        0 25px 55px
        rgba(30,10,14,0.11);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {

    .employee-services .service-block,
    .employee-services .service-block.reverse {

        grid-template-columns: 1fr;

        gap: 35px;

        padding: 25px;
    }

    .employee-services .service-image {

        min-height: 320px;
    }

    .employee-services .service-image img {

        min-height: 320px;
    }

    .employee-services .service-content {

        padding: 5px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .employee-services > .container > .section-title {

        margin-bottom: 45px;
    }

    .employee-services > .container > .section-title > h2 {

        font-size: 34px;
    }

    .employee-services > .container > .section-title > p {

        font-size: 15px;
    }

    .employee-services .service-block,
    .employee-services .service-block.reverse {

        margin-bottom: 35px;

        padding: 18px;

        border-radius: 16px;

        gap: 25px;
    }

    .employee-services .service-image {

        min-height: 250px;

        border-radius: 12px;
    }

    .employee-services .service-image img {

        min-height: 250px;
    }

    .employee-services .service-content h2 {

        font-size: 29px;
    }

    .employee-services .service-content ul {

        grid-template-columns: 1fr;
    }

}

/* =====================================================
   SERVICE HIGHLIGHTS
   PREMIUM REDSPY CARD GRID
===================================================== */

.employee-highlights {
    position: relative;
    background: #fbfaf8;
    overflow: hidden;
}


/* -----------------------------------------------------
   HIGHLIGHTS CONTAINER
------------------------------------------------------ */

.employee-highlights .container {
    max-width: 1250px;
}


/* -----------------------------------------------------
   4-CARD GRID
------------------------------------------------------ */

.employee-highlights .highlights-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 28px;

    max-width: 1120px;

    margin: 0 auto;
}


/* -----------------------------------------------------
   PREMIUM CARD
------------------------------------------------------ */

.employee-highlights .highlight-card {

    position: relative;

    min-height: 245px;

    padding: 42px 40px 38px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #faf7f1 100%
        );

    border: 1px solid
        rgba(198,154,59,0.28);

    border-radius: 18px;

    text-align: center;

    box-shadow:
        0 14px 35px
        rgba(25,8,12,0.07);

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


/* GOLD TOP LINE */

.employee-highlights .highlight-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            #8e182a,
            #d2aa54,
            #8e182a
        );
}


/* SUBTLE CORNER DETAIL */

.employee-highlights .highlight-card::after {

    content: "";

    position: absolute;

    width: 110px;
    height: 110px;

    right: -55px;
    bottom: -55px;

    border-radius: 50%;

    border: 1px solid
        rgba(198,154,59,0.16);

    pointer-events: none;
}


/* -----------------------------------------------------
   ICON
------------------------------------------------------ */

.employee-highlights .highlight-card > i {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 62px;
    height: 62px;

    margin-bottom: 22px;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #cda84d,
            #a77d27
        );

    color: #ffffff;

    font-size: 25px;

    box-shadow:
        0 9px 22px
        rgba(167,125,39,0.22);

    transition:
        transform .3s ease;
}


/* -----------------------------------------------------
   CARD HEADING
------------------------------------------------------ */

.employee-highlights .highlight-card h3 {

    margin: 0 0 13px;

    color: #1b1113;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 25px;

    line-height: 1.25;

    font-weight: 700;
}


/* -----------------------------------------------------
   CARD TEXT
------------------------------------------------------ */

.employee-highlights .highlight-card p {

    max-width: 440px;

    margin: 0 auto;

    color: #62666b;

    font-size: 15px;

    line-height: 1.75;
}


/* -----------------------------------------------------
   HOVER
------------------------------------------------------ */

.employee-highlights .highlight-card:hover {

    transform: translateY(-7px);

    border-color:
        rgba(198,154,59,0.55);

    box-shadow:
        0 22px 48px
        rgba(30,10,14,0.12);
}


.employee-highlights .highlight-card:hover > i {

    transform:
        translateY(-3px)
        scale(1.05);
}


/* =====================================================
   PREMIUM ALTERNATING ACCENT
===================================================== */

.employee-highlights
.highlight-card:nth-child(2)::before,
.employee-highlights
.highlight-card:nth-child(3)::before {

    background:
        linear-gradient(
            90deg,
            #d2aa54,
            #8e182a,
            #d2aa54
        );
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 800px) {

    .employee-highlights .highlights-grid {

        grid-template-columns: 1fr;

        max-width: 650px;

        gap: 22px;
    }

    .employee-highlights .highlight-card {

        min-height: auto;

        padding: 35px 30px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 500px) {

    .employee-highlights .highlight-card {

        padding: 30px 22px;

        border-radius: 15px;
    }

    .employee-highlights .highlight-card > i {

        width: 56px;
        height: 56px;

        font-size: 22px;
    }

    .employee-highlights .highlight-card h3 {

        font-size: 22px;
    }

    .employee-highlights .highlight-card p {

        font-size: 14px;
    }
}

/* =========================================================
   WORKPLACE INVESTIGATION METHODOLOGY
   PREMIUM REDSPY TIMELINE
========================================================= */

.investigation-methodology {
    position: relative;
    background: #fbfaf8;
    overflow: hidden;
}


/* ---------------------------------------------------------
   SECTION CONTAINER
--------------------------------------------------------- */

.investigation-methodology .container {
    max-width: 1200px;
}


/* ---------------------------------------------------------
   SECTION INTRO
--------------------------------------------------------- */

.investigation-methodology .section-title {
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}

.investigation-methodology .section-title span {
    display: block;
    margin-bottom: 18px;

    color: #c69a3b;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 4px;
    text-transform: uppercase;
}

.investigation-methodology .section-title h2 {
    margin: 0 auto 24px;

    color: #171114;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(38px, 4vw, 54px);

    line-height: 1.15;
    font-weight: 700;
}

.investigation-methodology .section-title p {
    max-width: 800px;
    margin: 0 auto;

    color: #62666b;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   TIMELINE
========================================================= */

.investigation-methodology .timeline {
    position: relative;

    max-width: 1050px;

    margin: 0 auto;

    padding: 10px 0 30px;
}


/* ---------------------------------------------------------
   CENTRAL GOLD LINE
--------------------------------------------------------- */

.investigation-methodology .timeline::before {

    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    left: 50%;

    width: 2px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            to bottom,
            transparent,
            #c69a3b 7%,
            #8e182a 50%,
            #c69a3b 93%,
            transparent
        );
}


/* =========================================================
   TIMELINE ITEM
========================================================= */

.investigation-methodology .timeline-item {

    position: relative;

    display: flex;

    width: 100%;

    min-height: 150px;

    margin-bottom: 38px;

    align-items: center;
}


/* ---------------------------------------------------------
   ALTERNATING SIDES
--------------------------------------------------------- */

.investigation-methodology
.timeline-item:nth-child(odd) {

    justify-content: flex-start;
}

.investigation-methodology
.timeline-item:nth-child(even) {

    justify-content: flex-end;
}


/* =========================================================
   TIMELINE CARD
========================================================= */

.investigation-methodology
.timeline-content {

    position: relative;

    width: calc(50% - 55px);

    padding: 30px 34px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #faf7f1
        );

    border: 1px solid
        rgba(198,154,59,0.28);

    border-radius: 16px;

    box-shadow:
        0 14px 34px
        rgba(28,10,14,0.07);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


/* ---------------------------------------------------------
   CARD GOLD TOP EDGE
--------------------------------------------------------- */

.investigation-methodology
.timeline-content::before {

    content: "";

    position: absolute;

    top: 0;
    left: 25px;
    right: 25px;

    height: 3px;

    border-radius: 0 0 5px 5px;

    background:
        linear-gradient(
            90deg,
            #8e182a,
            #c69a3b,
            #8e182a
        );
}


/* ---------------------------------------------------------
   CARD CONNECTOR
--------------------------------------------------------- */

.investigation-methodology
.timeline-item:nth-child(odd)
.timeline-content::after {

    content: "";

    position: absolute;

    top: 50%;
    right: -56px;

    width: 56px;
    height: 1px;

    background: #c69a3b;
}


.investigation-methodology
.timeline-item:nth-child(even)
.timeline-content::after {

    content: "";

    position: absolute;

    top: 50%;
    left: -56px;

    width: 56px;
    height: 1px;

    background: #c69a3b;
}


/* =========================================================
   TIMELINE ICON
========================================================= */

.investigation-methodology
.timeline-icon {

    position: absolute;

    left: 50%;
    top: 50%;

    z-index: 5;

    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #d1aa55,
            #a77d27
        );

    border: 5px solid #fbfaf8;

    color: #ffffff;

    font-size: 22px;

    box-shadow:
        0 8px 22px
        rgba(167,125,39,0.28);
}


/* =========================================================
   CARD HEADING
========================================================= */

.investigation-methodology
.timeline-content h3 {

    margin: 0 0 12px;

    color: #1b1113;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 23px;

    line-height: 1.3;

    font-weight: 700;
}


/* =========================================================
   CARD TEXT
========================================================= */

.investigation-methodology
.timeline-content p {

    margin: 0;

    color: #62666b;

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================================
   HOVER
========================================================= */

.investigation-methodology
.timeline-content:hover {

    transform: translateY(-5px);

    border-color:
        rgba(198,154,59,0.55);

    box-shadow:
        0 22px 45px
        rgba(30,10,14,0.12);
}


/* =========================================================
   ICON HOVER
========================================================= */

.investigation-methodology
.timeline-item:hover
.timeline-icon {

    background:
        linear-gradient(
            145deg,
            #8e182a,
            #64101d
        );

    box-shadow:
        0 10px 28px
        rgba(142,24,42,0.28);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .investigation-methodology .timeline::before {

        left: 31px;

        transform: none;
    }

    .investigation-methodology
    .timeline-item {

        justify-content: flex-start !important;

        padding-left: 75px;

        min-height: 130px;
    }

    .investigation-methodology
    .timeline-icon {

        left: 31px;
    }

    .investigation-methodology
    .timeline-content {

        width: calc(100% - 20px);
    }

    .investigation-methodology
    .timeline-item:nth-child(odd)
    .timeline-content::after,

    .investigation-methodology
    .timeline-item:nth-child(even)
    .timeline-content::after {

        left: -44px;
        right: auto;

        width: 44px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .investigation-methodology
    .section-title {

        margin-bottom: 45px;
    }

    .investigation-methodology
    .section-title h2 {

        font-size: 34px;
    }

    .investigation-methodology
    .section-title p {

        font-size: 15px;
    }

    .investigation-methodology
    .timeline {

        padding-bottom: 10px;
    }

    .investigation-methodology
    .timeline::before {

        left: 27px;
    }

    .investigation-methodology
    .timeline-item {

        padding-left: 62px;

        margin-bottom: 25px;
    }

    .investigation-methodology
    .timeline-icon {

        left: 27px;

        width: 54px;
        height: 54px;

        font-size: 19px;

        border-width: 4px;
    }

    .investigation-methodology
    .timeline-content {

        width: 100%;

        padding: 26px 22px;
    }

    .investigation-methodology
    .timeline-content h3 {

        font-size: 20px;
    }

    .investigation-methodology
    .timeline-content p {

        font-size: 14px;
    }

    .investigation-methodology
    .timeline-item:nth-child(odd)
    .timeline-content::after,

    .investigation-methodology
    .timeline-item:nth-child(even)
    .timeline-content::after {

        left: -35px;

        width: 35px;
    }
}

/* =========================================================
   WORKPLACE DECISION MATRIX
   PREMIUM REDSPY INTELLIGENCE TABLE
========================================================= */

.decision-matrix {
    position: relative;
    background: #fbfaf8;
    overflow: hidden;
}


/* ---------------------------------------------------------
   SECTION TITLE
--------------------------------------------------------- */

.decision-matrix .section-title {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
}

.decision-matrix .section-title span {
    display: block;

    margin-bottom: 18px;

    color: #c69a3b;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 4px;
    text-transform: uppercase;
}

.decision-matrix .section-title h2 {
    margin: 0 auto 22px;

    color: #171114;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(38px, 4vw, 54px);

    line-height: 1.15;
    font-weight: 700;
}

.decision-matrix .section-title p {
    max-width: 800px;

    margin: 0 auto;

    color: #62666b;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   TABLE OUTER CONTAINER
========================================================= */

.decision-matrix .dashboard-table {

    position: relative;

    max-width: 1050px;

    margin: 0 auto;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid
        rgba(198,154,59,0.28);

    border-radius: 18px;

    box-shadow:
        0 18px 45px
        rgba(30,10,14,0.09);
}


/* ---------------------------------------------------------
   GOLD TOP ACCENT
--------------------------------------------------------- */

.decision-matrix .dashboard-table::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            #8e182a,
            #c69a3b,
            #8e182a
        );

    z-index: 2;
}


/* =========================================================
   TABLE
========================================================= */

.decision-matrix table {

    width: 100%;

    border-collapse: collapse;

    table-layout: fixed;
}


/* =========================================================
   TABLE HEADER
========================================================= */

.decision-matrix thead {

    background:
        linear-gradient(
            135deg,
            #1a090c,
            #2a0c12
        );
}

.decision-matrix thead th {

    padding: 22px 28px;

    color: #d8b15c;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-align: left;

    text-transform: uppercase;

    border: none;
}


/* =========================================================
   COLUMN WIDTH
========================================================= */

.decision-matrix thead th:first-child,
.decision-matrix tbody td:first-child {

    width: 38%;
}

.decision-matrix thead th:last-child,
.decision-matrix tbody td:last-child {

    width: 62%;
}


/* =========================================================
   TABLE ROWS
========================================================= */

.decision-matrix tbody tr {

    position: relative;

    transition:
        background .25s ease,
        transform .25s ease;
}


/* alternating rows */

.decision-matrix tbody tr:nth-child(even) {

    background: #faf8f4;
}

.decision-matrix tbody tr:nth-child(odd) {

    background: #ffffff;
}


/* ---------------------------------------------------------
   TABLE CELLS
--------------------------------------------------------- */

.decision-matrix tbody td {

    padding: 20px 28px;

    color: #53575b;

    font-size: 15px;

    line-height: 1.6;

    border-bottom:
        1px solid
        rgba(30,10,14,0.08);

    vertical-align: middle;
}


/* ---------------------------------------------------------
   FIRST COLUMN — CONCERN
--------------------------------------------------------- */

.decision-matrix tbody td:first-child {

    position: relative;

    padding-left: 48px;

    color: #1b1113;

    font-weight: 700;
}


/* gold indicator */

.decision-matrix tbody td:first-child::before {

    content: "";

    position: absolute;

    left: 27px;
    top: 50%;

    width: 7px;
    height: 7px;

    transform: translateY(-50%);

    border-radius: 50%;

    background: #c69a3b;

    box-shadow:
        0 0 0 4px
        rgba(198,154,59,0.12);
}


/* =========================================================
   SECOND COLUMN
========================================================= */

.decision-matrix tbody td:last-child {

    color: #62666b;

    font-weight: 500;
}


/* =========================================================
   ROW HOVER
========================================================= */

.decision-matrix tbody tr:hover {

    background:
        linear-gradient(
            90deg,
            #fffaf0,
            #ffffff
        );
}


/* highlight concern */

.decision-matrix tbody tr:hover td:first-child {

    color: #8e182a;
}


/* =========================================================
   LAST ROW
========================================================= */

.decision-matrix tbody tr:last-child td {

    border-bottom: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

    .decision-matrix .dashboard-table {

        border-radius: 14px;

        overflow-x: auto;
    }

    .decision-matrix table {

        min-width: 680px;
    }

    .decision-matrix .section-title {

        margin-bottom: 45px;
    }

    .decision-matrix .section-title h2 {

        font-size: 38px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .decision-matrix {

        padding-left: 15px;
        padding-right: 15px;
    }

    .decision-matrix .section-title span {

        font-size: 12px;

        letter-spacing: 3px;
    }

    .decision-matrix .section-title h2 {

        font-size: 32px;
    }

    .decision-matrix .section-title p {

        font-size: 14px;

        line-height: 1.7;
    }

    .decision-matrix .dashboard-table {

        border-radius: 12px;
    }

    .decision-matrix table {

        min-width: 620px;
    }

    .decision-matrix thead th {

        padding: 18px 20px;

        font-size: 12px;
    }

    .decision-matrix tbody td {

        padding: 17px 20px;

        font-size: 14px;
    }

    .decision-matrix tbody td:first-child {

        padding-left: 38px;
    }

    .decision-matrix tbody td:first-child::before {

        left: 20px;
    }
}

/* =========================================================
   HR ENGAGEMENT PRINCIPLES
   PREMIUM REDSPY PRINCIPLES SECTION
========================================================= */

.engagement-principles {
    position: relative;
    background: #fbfaf8;
    overflow: hidden;
}


/* ---------------------------------------------------------
   SECTION TITLE
--------------------------------------------------------- */

.engagement-principles .section-title {
    max-width: 900px;
    margin: 0 auto 65px;
    text-align: center;
}

.engagement-principles .section-title span {
    display: block;

    margin-bottom: 18px;

    color: #c69a3b;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 4px;
    text-transform: uppercase;
}

.engagement-principles .section-title h2 {
    margin: 0;

    color: #171114;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(38px, 4vw, 54px);

    line-height: 1.15;
    font-weight: 700;
}


/* =========================================================
   PRINCIPLES GRID
========================================================= */

.engagement-principles .principles-grid {

    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 28px;
}


/* =========================================================
   PRINCIPLE CARD
========================================================= */

.engagement-principles .principle-card {

    position: relative;

    padding: 38px 38px 36px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #faf8f4
        );

    border: 1px solid
        rgba(198,154,59,0.28);

    border-radius: 16px;

    box-shadow:
        0 12px 35px
        rgba(35,12,17,0.07);

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


/* ---------------------------------------------------------
   GOLD TOP LINE
--------------------------------------------------------- */

.engagement-principles .principle-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            #8e182a,
            #c69a3b,
            #8e182a
        );
}


/* ---------------------------------------------------------
   SUBTLE CORNER ACCENT
--------------------------------------------------------- */

.engagement-principles .principle-card::after {

    content: "";

    position: absolute;

    right: -45px;
    bottom: -45px;

    width: 130px;
    height: 130px;

    border-radius: 50%;

    border: 1px solid
        rgba(198,154,59,0.12);

    pointer-events: none;
}


/* =========================================================
   ICON
========================================================= */

.engagement-principles .principle-card > i {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    margin-bottom: 23px;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            #c69a3b,
            #a87d28
        );

    border-radius: 50%;

    font-size: 22px;

    box-shadow:
        0 8px 18px
        rgba(166,123,40,0.20);
}


/* =========================================================
   CARD HEADING
========================================================= */

.engagement-principles .principle-card h3 {

    margin: 0 0 12px;

    color: #1a1113;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 25px;

    line-height: 1.25;

    font-weight: 700;
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.engagement-principles .principle-card p {

    margin: 0;

    color: #62666b;

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================================
   HOVER EFFECT
========================================================= */

.engagement-principles .principle-card:hover {

    transform: translateY(-7px);

    border-color:
        rgba(198,154,59,0.60);

    box-shadow:
        0 20px 45px
        rgba(35,12,17,0.12);
}

.engagement-principles .principle-card:hover > i {

    transform: scale(1.06);

    box-shadow:
        0 10px 25px
        rgba(166,123,40,0.30);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

    .engagement-principles .principles-grid {

        grid-template-columns: 1fr;

        max-width: 650px;
    }

    .engagement-principles .section-title {

        margin-bottom: 48px;
    }

    .engagement-principles .section-title h2 {

        font-size: 40px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .engagement-principles {

        padding-left: 15px;
        padding-right: 15px;
    }

    .engagement-principles .section-title span {

        font-size: 12px;

        letter-spacing: 3px;
    }

    .engagement-principles .section-title h2 {

        font-size: 32px;
    }

    .engagement-principles .principles-grid {

        gap: 20px;
    }

    .engagement-principles .principle-card {

        padding: 30px 26px;
    }

    .engagement-principles .principle-card h3 {

        font-size: 23px;
    }

    .engagement-principles .principle-card p {

        font-size: 14px;
    }
}

/* =====================================================
   WHY REDSPY / TRUST & CREDIBILITY
====================================================== */

.employee-trust {
    position: relative;
    background: #ffffff;
    padding: 105px 0 115px;
    overflow: hidden;
}


/* SUBTLE BACKGROUND DETAIL */

.employee-trust::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 520px;
    height: 520px;
    transform: translateX(-50%);
    background: radial-gradient(
        circle,
        rgba(201, 157, 61, 0.08) 0%,
        rgba(201, 157, 61, 0.03) 38%,
        transparent 72%
    );
    pointer-events: none;
}


/* SECTION TITLE */

.employee-trust .section-title {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto 65px;
    text-align: center;
}

.employee-trust .section-title span {
    display: block;
    margin-bottom: 18px;
    color: #c79b3b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.employee-trust .section-title h2 {
    margin: 0 auto 25px;
    max-width: 850px;
    color: #171717;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.12;
    font-weight: 700;
}

.employee-trust .section-title p {
    max-width: 820px;
    margin: 0 auto;
    color: #626262;
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.9;
}


/* CARD GRID */

.employee-trust-grid {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 28px;

    max-width: 1180px;
    margin: 0 auto;
}


/* CARD */

.employee-trust-card {
    position: relative;

    min-height: 310px;

    padding: 42px 35px 38px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fbfaf7 100%
        );

    border: 1px solid rgba(199, 155, 59, 0.30);

    border-radius: 18px;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.07);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* TOP GOLD LINE */

.employee-trust-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            #8d681e,
            #d7ad4d,
            #8d681e
        );
}


/* LARGE WATERMARK NUMBER */

.employee-trust-number {
    position: absolute;

    top: 18px;
    right: 25px;

    color: rgba(199, 155, 59, 0.12);

    font-family: "Playfair Display", Georgia, serif;

    font-size: 70px;
    line-height: 1;

    font-weight: 700;

    pointer-events: none;
}


/* ICON */

.employee-trust-icon {
    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 27px;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #d6ad50,
            #b68425
        );

    color: #ffffff;

    font-size: 26px;

    box-shadow:
        0 10px 24px rgba(173, 126, 37, 0.22);
}


/* CARD HEADING */

.employee-trust-card h3 {
    margin: 0 0 14px;

    color: #171717;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 25px;

    line-height: 1.25;

    font-weight: 700;
}


/* CARD TEXT */

.employee-trust-card p {
    margin: 0;

    color: #656565;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 15px;

    line-height: 1.75;
}


/* FEATURED MIDDLE CARD */

.employee-trust-card.featured {
    border-color: rgba(199, 155, 59, 0.65);

    transform: translateY(-10px);

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.11);
}


/* HOVER */

.employee-trust-card:hover {
    transform: translateY(-8px);

    border-color: rgba(199, 155, 59, 0.75);

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.12);
}

.employee-trust-card.featured:hover {
    transform: translateY(-14px);
}


/* =====================================================
   RESPONSIVE
====================================================== */

@media (max-width: 900px) {

    .employee-trust {
        padding: 80px 0 90px;
    }

    .employee-trust-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
    }

    .employee-trust-card.featured {
        transform: none;
    }

    .employee-trust-card.featured:hover {
        transform: translateY(-8px);
    }

}


@media (max-width: 600px) {

    .employee-trust {
        padding: 65px 0 75px;
    }

    .employee-trust .section-title {
        margin-bottom: 45px;
    }

    .employee-trust .section-title span {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .employee-trust .section-title h2 {
        font-size: 34px;
    }

    .employee-trust .section-title p {
        font-size: 14px;
        line-height: 1.75;
    }

    .employee-trust-grid {
        gap: 20px;
    }

    .employee-trust-card {
        min-height: auto;
        padding: 35px 28px 32px;
    }

}

/* =====================================================
   FOUNDER MESSAGE
====================================================== */

.founder-message {
    position: relative;
    padding: 95px 0 105px;
    background: #f8f7f4;
    overflow: hidden;
}


/* SUBTLE GOLD BACKGROUND GLOW */

.founder-message::before {
    content: "";
    position: absolute;

    width: 520px;
    height: 520px;

    top: -180px;
    right: -150px;

    background: radial-gradient(
        circle,
        rgba(199, 155, 59, 0.10),
        transparent 70%
    );

    pointer-events: none;
}


/* MAIN CARD */

.founder-message-card {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: 1.35fr 0.65fr;

    max-width: 1180px;
    min-height: 470px;

    margin: 0 auto;

    background:
        linear-gradient(
            135deg,
            #160607 0%,
            #23090d 55%,
            #100405 100%
        );

    border-radius: 22px;

    overflow: hidden;

    border: 1px solid rgba(199, 155, 59, 0.55);

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.16);
}


/* GOLD EDGE */

.founder-message-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 5px;
    height: 100%;

    background:
        linear-gradient(
            to bottom,
            #d9b052,
            #9c711f,
            #d9b052
        );
}


/* CONTENT */

.founder-message-content {
    position: relative;

    padding: 68px 65px 62px;

    color: #ffffff;
}


/* EYEBROW */

.founder-eyebrow {
    display: block;

    margin-bottom: 18px;

    color: #d2a544;

    font-family: "Inter", Arial, sans-serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 4px;

    text-transform: uppercase;
}


/* HEADING */

.founder-message-content h2 {
    max-width: 680px;

    margin: 0 0 25px;

    color: #ffffff;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: clamp(36px, 4vw, 52px);

    line-height: 1.12;

    font-weight: 700;
}


/* QUOTE MARK */

.founder-quote-mark {
    position: absolute;

    top: 48px;
    right: 48px;

    color: rgba(210, 165, 68, 0.16);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 145px;

    line-height: 1;

    pointer-events: none;
}


/* QUOTATION */

.founder-message-content blockquote {
    position: relative;
    z-index: 2;

    max-width: 720px;

    margin: 0 0 32px;

    padding-left: 20px;

    border-left: 2px solid #c99a3b;

    color: rgba(255, 255, 255, 0.82);

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 16px;

    line-height: 1.85;

    font-style: normal;
}


/* SIGNATURE */

.founder-signature {
    display: flex;

    flex-direction: column;

    gap: 5px;
}


.founder-signature strong {
    color: #ffffff;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 24px;

    font-weight: 700;
}


.founder-signature span {
    color: #d0a548;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 13px;

    letter-spacing: 0.5px;
}


/* =====================================================
   FOUNDER PHOTO
====================================================== */

.founder-message-photo {
    position: relative;

    display: flex;

    align-items: stretch;
    justify-content: stretch;

    background:
        linear-gradient(
            145deg,
            #d3aa4d,
            #8d641b
        );

    padding: 13px;
}


/* PHOTO FRAME */

.founder-photo-frame {
    position: relative;

    width: 100%;
    height: 100%;

    min-height: 440px;

    overflow: hidden;

    background: #160607;

    border-radius: 14px;

    border: 1px solid rgba(255, 255, 255, 0.18);
}


/* IMAGE */

.founder-photo-frame img {
    display: block;

    width: 100%;
    height: 100%;

    min-height: 440px;

    object-fit: cover;

    object-position: center top;

    filter:
        contrast(1.04)
        saturate(0.92);

    transition:
        transform 0.6s ease;
}


/* IMAGE HOVER */

.founder-photo-frame:hover img {
    transform: scale(1.035);
}


/* DARK GRADIENT OVER PHOTO */

.founder-photo-frame::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 42%;

    background:
        linear-gradient(
            to top,
            rgba(10, 2, 3, 0.90),
            rgba(10, 2, 3, 0)
        );

    pointer-events: none;
}


/* PHOTO CAPTION */

.founder-photo-caption {
    position: absolute;

    left: 28px;
    right: 28px;
    bottom: 25px;

    z-index: 3;

    display: flex;

    flex-direction: column;

    gap: 5px;
}


.founder-photo-caption span {
    color: #d5ab4d;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;
}


.founder-photo-caption strong {
    color: #ffffff;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 18px;

    letter-spacing: 0.5px;
}


/* =====================================================
   RESPONSIVE
====================================================== */

@media (max-width: 900px) {

    .founder-message {
        padding: 75px 0 85px;
    }

    .founder-message-card {
        grid-template-columns: 1fr;
    }

    .founder-message-content {
        padding: 55px 45px 50px;
    }

    .founder-message-photo {
        min-height: 430px;
    }

    .founder-photo-frame,
    .founder-photo-frame img {
        min-height: 430px;
    }

}


@media (max-width: 600px) {

    .founder-message {
        padding: 60px 0 70px;
    }

    .founder-message-card {
        border-radius: 16px;
    }

    .founder-message-content {
        padding: 45px 28px 42px;
    }

    .founder-eyebrow {
        font-size: 10px;
        letter-spacing: 2.5px;
    }

    .founder-message-content h2 {
        font-size: 34px;
    }

    .founder-message-content blockquote {
        font-size: 14px;
        line-height: 1.75;
    }

    .founder-quote-mark {
        top: 35px;
        right: 22px;
        font-size: 100px;
    }

    .founder-message-photo {
        padding: 9px;
        min-height: 380px;
    }

    .founder-photo-frame,
    .founder-photo-frame img {
        min-height: 380px;
    }

}

/* =====================================================
   PREMIUM PROFESSIONAL DISCLAIMER
====================================================== */

.professional-disclaimer {
    position: relative;
    padding: 75px 0 85px;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #faf8f3 100%
        );
}

/* Subtle gold divider above section */

.professional-disclaimer::before {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: #c9a23a;
    margin: 0 auto 42px;
}


/* Main premium card */

.professional-disclaimer .disclaimer-box {
    position: relative;

    display: flex;
    align-items: flex-start;

    max-width: 1080px;
    margin: 0 auto;

    padding: 42px 50px;

    background:
        linear-gradient(
            135deg,
            #16070a 0%,
            #240b10 55%,
            #100708 100%
        );

    border: 1px solid rgba(201, 162, 58, 0.55);

    border-radius: 18px;

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255,255,255,0.06);

    overflow: hidden;
}


/* Elegant gold glow */

.professional-disclaimer .disclaimer-box::before {
    content: "";

    position: absolute;

    top: -100px;
    right: -100px;

    width: 260px;
    height: 260px;

    background: radial-gradient(
        circle,
        rgba(201,162,58,0.14) 0%,
        rgba(201,162,58,0) 70%
    );

    pointer-events: none;
}


/* Left gold accent */

.professional-disclaimer .disclaimer-box::after {
    content: "";

    position: absolute;

    left: 0;
    top: 25px;
    bottom: 25px;

    width: 4px;

    background: linear-gradient(
        180deg,
        #e1bd5b,
        #a77d22,
        #e1bd5b
    );

    border-radius: 0 4px 4px 0;
}


/* =====================================================
   ICON
====================================================== */

.professional-disclaimer .disclaimer-icon {
    position: relative;
    z-index: 2;

    flex: 0 0 58px;

    width: 58px;
    height: 58px;

    margin-right: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #d8b34d,
            #a77d22
        );

    color: #18080a;

    font-size: 21px;

    box-shadow:
        0 7px 20px rgba(0,0,0,0.35),
        0 0 0 5px rgba(201,162,58,0.08);
}


/* =====================================================
   CONTENT
====================================================== */

.professional-disclaimer .disclaimer-content {
    position: relative;
    z-index: 2;

    flex: 1;
}


/* Small gold heading */

.professional-disclaimer .disclaimer-label {
    display: block;

    margin-bottom: 10px;

    color: #d5ae46;

    font-family: "Inter", sans-serif;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3.2px;

    text-transform: uppercase;
}


/* Main heading */

.professional-disclaimer .disclaimer-content h2 {
    margin: 0 0 15px;

    color: #ffffff;

    font-family: "Playfair Display", serif;

    font-size: 31px;
    font-weight: 700;

    line-height: 1.25;
}


/* Description */

.professional-disclaimer .disclaimer-content p {
    margin: 0;

    max-width: 900px;

    color: rgba(255,255,255,0.78);

    font-family: "Inter", sans-serif;

    font-size: 14.5px;

    line-height: 1.85;
}


/* =====================================================
   MOBILE
====================================================== */

@media (max-width: 768px) {

    .professional-disclaimer {
        padding: 55px 0 65px;
    }

    .professional-disclaimer::before {
        margin-bottom: 30px;
    }

    .professional-disclaimer .disclaimer-box {
        flex-direction: column;

        padding: 35px 27px;

        border-radius: 15px;
    }

    .professional-disclaimer .disclaimer-icon {
        margin-right: 0;
        margin-bottom: 22px;
    }

    .professional-disclaimer .disclaimer-content h2 {
        font-size: 25px;
        line-height: 1.3;
    }

    .professional-disclaimer .disclaimer-content p {
        font-size: 14px;
        line-height: 1.75;
    }

    .professional-disclaimer .disclaimer-label {
        font-size: 10px;
        letter-spacing: 2.3px;
    }

}

/* =====================================================
   RELATED SERVICES
====================================================== */

.related-services {
    position: relative;

    padding: 90px 0 100px;

    background: #faf9f6;
}


/* =====================================================
   SECTION INTRO
====================================================== */

.related-services .section-title {
    max-width: 850px;

    margin: 0 auto 55px;

    text-align: center;
}

.related-services .section-title span {
    display: block;

    margin-bottom: 14px;

    color: #c9a23a;

    font-family: "Inter", sans-serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3.5px;

    text-transform: uppercase;
}

.related-services .section-title h2 {
    margin: 0 auto 20px;

    color: #111111;

    font-family: "Playfair Display", serif;

    font-size: 42px;
    font-weight: 700;

    line-height: 1.2;
}

.related-services .section-title p {
    max-width: 760px;

    margin: 0 auto;

    color: #626a73;

    font-family: "Inter", sans-serif;

    font-size: 15px;

    line-height: 1.8;
}


/* =====================================================
   CARD GRID
====================================================== */

.related-services-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 28px;

    max-width: 1100px;

    margin: 0 auto;
}


/* =====================================================
   SERVICE CARD
====================================================== */

.related-service-card {

    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 310px;

    padding: 38px 32px 32px;

    background: #ffffff;

    border: 1px solid #e7dfcf;

    border-top: 3px solid #c9a23a;

    border-radius: 14px;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.055);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* Hover */

.related-service-card:hover {

    transform: translateY(-7px);

    border-color: #c9a23a;

    box-shadow:
        0 20px 42px rgba(0,0,0,0.12);
}


/* =====================================================
   ICON
====================================================== */

.related-service-icon {

    width: 58px;
    height: 58px;

    margin-bottom: 22px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #d8b34d,
            #a77d22
        );

    color: #17080a;

    font-size: 21px;

    box-shadow:
        0 7px 18px rgba(0,0,0,0.12);
}


/* =====================================================
   CARD TITLE
====================================================== */

.related-service-card h3 {

    margin: 0 0 12px;

    color: #111111;

    font-family: "Playfair Display", serif;

    font-size: 25px;

    line-height: 1.25;
}


/* =====================================================
   CARD DESCRIPTION
====================================================== */

.related-service-card p {

    margin: 0;

    color: #626a73;

    font-family: "Inter", sans-serif;

    font-size: 14px;

    line-height: 1.75;
}


/* =====================================================
   LEARN MORE
====================================================== */

.related-service-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: auto;
    padding-top: 25px;

    color: #9d1625;

    font-family: "Inter", sans-serif;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition:
        color 0.25s ease,
        gap 0.25s ease;
}

.related-service-link:hover {

    color: #c49a35;

    gap: 13px;
}

.related-service-link i {

    font-size: 11px;
}


/* =====================================================
   MOBILE
====================================================== */

@media (max-width: 900px) {

    .related-services-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


@media (max-width: 600px) {

    .related-services {

        padding: 65px 0 70px;

    }

    .related-services .section-title {

        margin-bottom: 40px;

    }

    .related-services .section-title h2 {

        font-size: 31px;

    }

    .related-services .section-title p {

        font-size: 14px;

    }

    .related-services-grid {

        grid-template-columns: 1fr;

        gap: 20px;

    }

    .related-service-card {

        min-height: auto;

        padding: 30px 25px;

    }

}

/* =====================================================
   REDSPY PREMIUM HERO CTA BUTTONS
===================================================== */

.hero-buttons .btn-primary,
.hero-buttons .faq-button {
    background: linear-gradient(135deg, #8f0f1f, #b51d2d) !important;
    color: #ffffff !important;
    border: 1px solid #c9a227 !important;
    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
    transition: all 0.3s ease !important;
}

/* -----------------------------------------------------
   BOOK CONSULTATION
----------------------------------------------------- */

.hero-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #b51d2d, #8f0f1f) !important;
    color: #ffffff !important;
    border-color: #d4af37 !important;
    transform: translateY(-2px);
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(201, 162, 39, 0.20) !important;
}

/* -----------------------------------------------------
   FREQUENTLY ASKED QUESTIONS
----------------------------------------------------- */

.hero-buttons .faq-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none !important;
}

.hero-buttons .faq-button:hover {
    background: linear-gradient(135deg, #b51d2d, #8f0f1f) !important;
    color: #ffffff !important;
    border-color: #d4af37 !important;
    transform: translateY(-2px);
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(201, 162, 39, 0.20) !important;
}

.hero-buttons .faq-button i {
    color: #ffffff !important;
    margin-left: 6px;
}