/* =========================================================
   REDSPY INVESTIGATION & INTELLIGENCE
   ASSET INVESTIGATION PAGE
   PAGE-SPECIFIC STYLES
   ========================================================= */

.asset-investigation-page {
    /* Page-specific styles will go here */
}

/* =========================================================
   REDSPY INVESTIGATION & INTELLIGENCE
   ASSET INVESTIGATION PAGE
   SECTION 01 — ASSET INTELLIGENCE INTRODUCTION
   ========================================================= */


/* =========================================================
   SECTION BASE
   ========================================================= */

.asset-intro {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(200, 162, 77, 0.045),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 20%,
            rgba(110, 20, 35, 0.08),
            transparent 32%
        ),
        #090909;
}


/* =========================================================
   SUBTLE GEOMETRIC WATERMARKS
   ========================================================= */

.asset-bg-shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.045;
    border: 1px solid #c8a24d;
    transform: rotate(45deg);
}

.asset-bg-shape-one {
    width: 360px;
    height: 360px;
    right: -150px;
    top: 80px;
}

.asset-bg-shape-two {
    width: 230px;
    height: 230px;
    left: -120px;
    bottom: 60px;
    border-color: #8d2337;
}


/* =========================================================
   MAIN GRID
   ========================================================= */

.asset-intro-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);

    align-items: center;

    gap: clamp(45px, 6vw, 90px);

    max-width: 1250px;
    margin: 0 auto;
}


/* =========================================================
   IMAGE AREA
   ========================================================= */

.asset-intro-visual {
    position: relative;
}

.asset-image-frame {
    position: relative;

    width: 100%;
    max-width: 650px;

    margin: 0 auto;

    padding: 10px;

    border: 1px solid rgba(200, 162, 77, 0.35);

    background:
        linear-gradient(
            145deg,
            rgba(200, 162, 77, 0.08),
            rgba(90, 15, 30, 0.08)
        );

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.45),
        inset 0 0 30px rgba(200, 162, 77, 0.035);
}


/* Image */

.asset-image-frame img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}    filter:
        brightness(0.88)
        contrast(1.04);

    transition:
        transform 0.55s ease,
        filter 0.55s ease;
}


/* Image hover */

.asset-image-frame:hover img {
    transform: scale(1.025);

    filter:
        brightness(0.96)
        contrast(1.05);
}


/* =========================================================
   GOLD IMAGE ACCENT
   ========================================================= */

.asset-image-accent {
    position: absolute;

    width: 75px;
    height: 75px;

    right: -14px;
    bottom: -14px;

    border-right: 2px solid #c8a24d;
    border-bottom: 2px solid #c8a24d;

    pointer-events: none;
}


/* =========================================================
   CONTENT AREA
   ========================================================= */

.asset-intro-content {
    max-width: 620px;
}


/* Section label */

.asset-section-label {
    display: inline-flex;
    align-items: center;

    margin-bottom: 18px;

    padding: 8px 17px;

    border: 1px solid rgba(200, 162, 77, 0.35);

    border-radius: 30px;

    background: rgba(200, 162, 77, 0.055);

    color: #c8a24d;

    font-family: "Poppins", sans-serif;

    font-size: 0.72rem;
    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =========================================================
   HEADING
   ========================================================= */

.asset-intro-content h2 {
    margin: 0 0 22px;

    color: #f5f2eb;

    font-family: "Cinzel", serif;

    font-size: clamp(2rem, 3.3vw, 3.2rem);

    font-weight: 600;

    line-height: 1.18;

    letter-spacing: 0.2px;
}


/* Gold second line */

.asset-intro-content h2 span {
    display: block;

    color: #c8a24d;
}


/* =========================================================
   INTRO TEXT
   ========================================================= */

.asset-intro-content p {
    margin: 0 0 17px;

    color: rgba(238, 238, 238, 0.76);

    font-family: "Poppins", sans-serif;

    font-size: 0.95rem;

    line-height: 1.8;
}


/* Lead paragraph */

.asset-intro-content .asset-intro-lead {
    color: rgba(245, 242, 235, 0.9);

    font-size: 1rem;

    line-height: 1.85;
}


/* =========================================================
   INTELLIGENCE POINTS
   ========================================================= */

.asset-intelligence-points {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 13px;

    margin-top: 27px;
}


/* Individual point */

.asset-intelligence-point {
    display: flex;
    align-items: flex-start;

    gap: 13px;

    min-height: 108px;

    padding: 17px;

    border: 1px solid rgba(200, 162, 77, 0.15);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(90, 15, 30, 0.035)
        );

    transition:
        border-color 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease;
}


/* Hover */

.asset-intelligence-point:hover {
    transform: translateY(-3px);

    border-color: rgba(200, 162, 77, 0.45);

    background:
        linear-gradient(
            145deg,
            rgba(200, 162, 77, 0.065),
            rgba(90, 15, 30, 0.055)
        );
}


/* =========================================================
   ICON
   ========================================================= */

.asset-point-icon {
    flex: 0 0 39px;

    width: 39px;
    height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(200, 162, 77, 0.4);

    color: #c8a24d;

    background: rgba(200, 162, 77, 0.06);

    font-size: 0.85rem;
}


/* =========================================================
   POINT TEXT
   ========================================================= */

.asset-intelligence-point h3 {
    margin: 0 0 5px;

    color: #f1eee7;

    font-family: "Poppins", sans-serif;

    font-size: 0.91rem;

    font-weight: 600;

    line-height: 1.35;
}


.asset-intelligence-point p {
    margin: 0;

    color: rgba(235, 235, 235, 0.62);

    font-family: "Poppins", sans-serif;

    font-size: 0.76rem;

    line-height: 1.55;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .asset-intro-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .asset-intro-visual {
        max-width: 720px;

        margin: 0 auto;

        width: 100%;
    }

    .asset-intro-content {
        max-width: 720px;

        margin: 0 auto;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .asset-intro-grid {
        gap: 35px;
    }


    .asset-image-frame {
        padding: 7px;
    }


    .asset-image-accent {
        width: 52px;
        height: 52px;

        right: -8px;
        bottom: -8px;
    }


    .asset-section-label {
        margin-bottom: 14px;

        padding: 7px 13px;

        font-size: 0.64rem;

        letter-spacing: 1.5px;
    }


    .asset-intro-content h2 {
        margin-bottom: 18px;

        font-size: 1.85rem;

        line-height: 1.25;
    }


    .asset-intro-content p,
    .asset-intro-content .asset-intro-lead {
        font-size: 0.88rem;

        line-height: 1.72;
    }


    .asset-intelligence-points {
        grid-template-columns: 1fr;

        gap: 10px;

        margin-top: 22px;
    }


    .asset-intelligence-point {
        min-height: auto;

        padding: 15px;
    }


    .asset-bg-shape-one {
        width: 220px;
        height: 220px;

        right: -120px;
    }


    .asset-bg-shape-two {
        width: 160px;
        height: 160px;

        left: -100px;
    }

}

/* =========================================================
   COMMON AREAS OF ASSET INVESTIGATION
========================================================= */

.asset-areas {

    position: relative;

    overflow: hidden;

    padding: 90px 0 95px;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(200,162,77,0.045),
            transparent 30%
        ),
        #f8f7f4;
}


.asset-areas .container {

    position: relative;

    z-index: 2;

    width: min(1250px, 92%);

    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.asset-areas-heading {

    max-width: 850px;

    margin: 0 auto 48px;

    text-align: center;
}


.asset-areas-heading .asset-section-label {

    margin-bottom: 16px;
}


.asset-areas-heading h2 {

    margin: 0 0 18px;

    color: #111;

    font-family: "Cinzel", serif;

    font-size: clamp(2rem, 3.2vw, 3.05rem);

    font-weight: 600;

    line-height: 1.18;
}


.asset-areas-heading h2 span {

    color: #a98128;
}


.asset-areas-heading p {

    max-width: 760px;

    margin: 0 auto;

    color: #5e6268;

    font-family: "Poppins", sans-serif;

    font-size: 0.94rem;

    line-height: 1.75;
}


/* =========================================================
   CARD GRID
========================================================= */

.asset-areas-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}


/* =========================================================
   CARD
========================================================= */

.asset-area-card {

    position: relative;

    min-height: 225px;

    padding: 28px 26px 25px;

    border: 1px solid rgba(151,119,48,0.18);

    border-top: 2px solid rgba(200,162,77,0.65);

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f5f3ef
        );

    box-shadow:
        0 12px 30px rgba(30,20,10,0.055);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


.asset-area-card:hover {

    transform: translateY(-6px);

    border-color: rgba(200,162,77,0.55);

    box-shadow:
        0 20px 40px rgba(40,25,10,0.12);
}


/* =========================================================
   NUMBER
========================================================= */

.asset-area-number {

    position: absolute;

    top: 18px;

    right: 20px;

    color: rgba(170,130,45,0.35);

    font-family: "Cinzel", serif;

    font-size: 0.72rem;

    letter-spacing: 1px;
}


/* =========================================================
   ICON
========================================================= */

.asset-area-icon {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    margin-bottom: 19px;

    border: 1px solid rgba(200,162,77,0.45);

    background:
        linear-gradient(
            145deg,
            rgba(200,162,77,0.10),
            rgba(111,18,35,0.045)
        );

    color: #a98128;

    font-size: 0.95rem;
}


/* =========================================================
   CARD HEADING
========================================================= */

.asset-area-card h3 {

    margin: 0 0 9px;

    color: #171717;

    font-family: "Cinzel", serif;

    font-size: 1.12rem;

    font-weight: 600;

    line-height: 1.3;
}


/* =========================================================
   CARD TEXT
========================================================= */

.asset-area-card p {

    margin: 0;

    color: #65676b;

    font-family: "Poppins", sans-serif;

    font-size: 0.78rem;

    line-height: 1.65;
}


/* =========================================================
   WATERMARK GEOMETRY
========================================================= */

.asset-areas-shape {

    position: absolute;

    pointer-events: none;

    opacity: .035;

    border: 1px solid #9b7427;

    transform: rotate(45deg);
}


.asset-areas-shape.shape-one {

    width: 380px;

    height: 380px;

    right: -190px;

    top: 40px;
}


.asset-areas-shape.shape-two {

    width: 260px;

    height: 260px;

    left: -150px;

    bottom: 20px;

    border-color: #8d2337;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .asset-areas-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 620px) {

    .asset-areas {

        padding: 65px 0 70px;
    }


    .asset-areas-heading {

        margin-bottom: 35px;
    }


    .asset-areas-grid {

        grid-template-columns: 1fr;

        gap: 15px;
    }


    .asset-area-card {

        min-height: auto;

        padding: 23px;
    }

}

/* =========================================================
   WHO WE ASSIST — ASSET INVESTIGATION
========================================================= */

.asset-clients-section {

    position: relative;

    overflow: hidden;

    padding: 82px 0 88px;

    background:
        linear-gradient(
            135deg,
            #faf9f6 0%,
            #f5f2ec 100%
        );
}


.asset-clients-container {

    position: relative;

    z-index: 2;

    width: min(1200px, 92%);

    margin: 0 auto;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.asset-clients-heading {

    max-width: 760px;

    margin: 0 auto 42px;

    text-align: center;
}


.asset-client-eyebrow {

    display: inline-block;

    margin-bottom: 14px;

    color: #b38a2e;

    font-family: "Poppins", sans-serif;

    font-size: 0.72rem;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.asset-clients-heading h2 {

    margin: 0 0 15px;

    color: #141414;

    font-family: "Cinzel", serif;

    font-size: clamp(2rem, 3.3vw, 3rem);

    font-weight: 600;

    line-height: 1.18;
}


.asset-clients-heading h2 span {

    color: #b58b32;
}


.asset-clients-heading p {

    max-width: 650px;

    margin: 0 auto;

    color: #62656a;

    font-family: "Poppins", sans-serif;

    font-size: 0.9rem;

    line-height: 1.7;
}


/* =========================================================
   CLIENT GRID
========================================================= */

.asset-client-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================================
   CLIENT CARD
========================================================= */

.asset-client-card {

    position: relative;

    min-height: 225px;

    padding: 27px 23px 24px;

    border: 1px solid rgba(181,139,50,0.20);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.96),
            rgba(247,244,238,0.92)
        );

    box-shadow:
        0 10px 28px rgba(25,18,10,0.055);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


.asset-client-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 45px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            #8d2036,
            #c9a24d
        );
}


.asset-client-card:hover {

    transform: translateY(-5px);

    border-color: rgba(181,139,50,0.48);

    box-shadow:
        0 18px 38px rgba(30,20,10,0.11);
}


/* =========================================================
   ICON
========================================================= */

.asset-client-icon {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin-bottom: 20px;

    border: 1px solid rgba(181,139,50,0.40);

    background:
        rgba(181,139,50,0.07);

    color: #a77c25;

    font-size: 1rem;
}


/* =========================================================
   NUMBER
========================================================= */

.asset-client-number {

    position: absolute;

    top: 19px;
    right: 20px;

    color: rgba(181,139,50,0.35);

    font-family: "Cinzel", serif;

    font-size: 0.68rem;

    letter-spacing: 1px;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.asset-client-content h3 {

    margin: 0 0 9px;

    color: #171717;

    font-family: "Cinzel", serif;

    font-size: 1.02rem;

    font-weight: 600;

    line-height: 1.35;
}


.asset-client-content p {

    margin: 0;

    color: #66686c;

    font-family: "Poppins", sans-serif;

    font-size: 0.76rem;

    line-height: 1.65;
}


/* =========================================================
   GEOMETRIC WATERMARKS
========================================================= */

.asset-client-shape {

    position: absolute;

    pointer-events: none;

    border: 1px solid #b38a2e;

    opacity: .035;

    transform: rotate(45deg);
}


.asset-client-shape-one {

    width: 330px;
    height: 330px;

    right: -170px;
    top: 30px;
}


.asset-client-shape-two {

    width: 220px;
    height: 220px;

    left: -130px;
    bottom: -90px;

    border-color: #8d2036;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .asset-client-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 620px) {

    .asset-clients-section {

        padding: 62px 0 68px;
    }


    .asset-clients-heading {

        margin-bottom: 32px;
    }


    .asset-client-grid {

        grid-template-columns: 1fr;

        gap: 14px;
    }


    .asset-client-card {

        min-height: auto;

        padding: 23px;
    }

}

/* =========================================================
   REDSPY — ASSET INVESTIGATION SERVICES
   PREMIUM SERVICE CARD SYSTEM
   ========================================================= */

.asset-services-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 20%, rgba(191, 150, 55, 0.055), transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(117, 17, 35, 0.045), transparent 32%),
        #ffffff;
    padding: 110px 0 120px;
}


/* ---------------------------------------------------------
   SUBTLE GEOMETRIC WATERMARKS
   --------------------------------------------------------- */

.asset-services-watermark {
    position: absolute;
    pointer-events: none;
    opacity: 0.18;
    border: 1px solid rgba(184, 137, 42, 0.18);
    transform: rotate(45deg);
}

.watermark-one {
    width: 260px;
    height: 260px;
    right: -110px;
    top: 120px;
}

.watermark-two {
    width: 180px;
    height: 180px;
    left: -90px;
    bottom: 100px;
}


/* ---------------------------------------------------------
   MAIN CONTAINER
   --------------------------------------------------------- */

.asset-services-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    position: relative;
    z-index: 2;
}


/* ---------------------------------------------------------
   SECTION INTRODUCTION
   --------------------------------------------------------- */

.asset-services-heading {
    max-width: 850px;
    margin: 0 auto 65px;
    text-align: center;
}

.asset-services-eyebrow {
    display: inline-block;
    margin-bottom: 18px;

    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;

    color: #b8892f;
}

.asset-services-heading h2 {
    margin: 0 auto 22px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;
    font-weight: 700;

    color: #111111;
}

.asset-services-heading h2 span {
    display: inline;
    color: #b8892f;
}

.asset-services-heading p {
    max-width: 760px;
    margin: 0 auto;

    font-family: Arial, sans-serif;
    font-size: 17px;
    line-height: 1.8;

    color: #59606a;
}


/* ---------------------------------------------------------
   GOLD / BURGUNDY DECORATIVE LINE
   --------------------------------------------------------- */

.asset-services-heading::after {
    content: "";
    display: block;

    width: 70px;
    height: 3px;

    margin: 30px auto 0;

    background: linear-gradient(
        90deg,
        #8e162d,
        #c49a3a
    );
}


/* ---------------------------------------------------------
   SERVICE GRID
   --------------------------------------------------------- */

.asset-services-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 28px;

    align-items: stretch;
}


/* ---------------------------------------------------------
   SERVICE CARD
   --------------------------------------------------------- */

.asset-service-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;

    background: #ffffff;

    border: 1px solid rgba(184, 137, 47, 0.28);

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.07);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.asset-service-card:hover {
    transform: translateY(-7px);

    border-color: rgba(184, 137, 47, 0.65);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.12);
}


/* ---------------------------------------------------------
   IMAGE AREA
   --------------------------------------------------------- */

.asset-service-image {
    position: relative;

    width: 100% !important;
    height: 285px !important;

    min-height: 285px;

    overflow: hidden;

    background: #0a0808;
}

.asset-service-image img {
    display: block;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.6s ease,
        filter 0.6s ease;
}

.asset-service-card:hover .asset-service-image img {
    transform: scale(1.045);

    filter: brightness(1.05);
}


/* ---------------------------------------------------------
   NUMBER BADGE
   --------------------------------------------------------- */

.asset-service-number {
    position: absolute;

    left: 18px;
    bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: rgba(12, 8, 8, 0.88);

    border: 1px solid rgba(211, 166, 61, 0.75);

    color: #d5aa45;

    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;

    backdrop-filter: blur(5px);

    z-index: 3;
}


/* ---------------------------------------------------------
   CARD BODY
   --------------------------------------------------------- */

.asset-service-body {
    position: relative;

    display: flex;
    flex-direction: column;

    flex: 1;

    padding: 28px 30px 32px;

    background: #ffffff;
}


/* Small gold label */

.asset-service-label {
    display: block;

    margin-bottom: 9px;

    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2.2px;
    text-transform: uppercase;

    color: #b8892f;
}


/* Card title */

.asset-service-body h3 {
    margin: 0 0 12px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;

    color: #171717;
}


/* Card description */

.asset-service-body p {
    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 15px;
    line-height: 1.7;

    color: #60656c;
}


/* ---------------------------------------------------------
   PREMIUM GOLD EDGE
   --------------------------------------------------------- */

.asset-service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(
        90deg,
        #8d162e,
        #c69b3b,
        #8d162e
    );

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.35s ease;

    z-index: 5;
}

.asset-service-card:hover::before {
    transform: scaleX(1);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .asset-services-section {
        padding: 85px 0 95px;
    }

    .asset-services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .asset-service-image {
        height: 300px !important;
        min-height: 300px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .asset-services-section {
        padding: 70px 0 80px;
    }

    .asset-services-container {
        width: min(100% - 28px, 520px);
    }

    .asset-services-heading {
        margin-bottom: 42px;
    }

    .asset-services-heading h2 {
        font-size: 36px;
    }

    .asset-services-heading p {
        font-size: 15px;
        line-height: 1.7;
    }

    .asset-service-image {
        height: 235px !important;
        min-height: 235px;
    }

    .asset-service-body {
        padding: 24px 22px 27px;
    }

    .asset-service-body h3 {
        font-size: 25px;
    }

    .asset-service-body p {
        font-size: 14px;
    }

}

/* =========================================================
   REDSPY ASSET INVESTIGATION
   PREMIUM TRUST STRIP
   ========================================================= */

.asset-trust-strip {
    position: relative;

    width: 100%;

    padding: 48px 0;

    background:
        linear-gradient(
            135deg,
            #16090c 0%,
            #210b11 48%,
            #120708 100%
        );

    border-top: 1px solid rgba(196, 155, 58, 0.45);
    border-bottom: 1px solid rgba(196, 155, 58, 0.45);

    overflow: hidden;
}


/* subtle geometric watermark */

.asset-trust-strip::before {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    right: -150px;
    top: -150px;

    border: 1px solid rgba(196, 155, 58, 0.12);

    transform: rotate(45deg);

    pointer-events: none;
}


.asset-trust-strip::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    left: -120px;
    bottom: -120px;

    border: 1px solid rgba(196, 155, 58, 0.08);

    transform: rotate(45deg);

    pointer-events: none;
}


/* ---------------------------------------------------------
   CONTAINER
   --------------------------------------------------------- */

.asset-trust-container {

    width: min(1180px, calc(100% - 40px));

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    position: relative;

    z-index: 2;
}


/* ---------------------------------------------------------
   INDIVIDUAL ITEM
   --------------------------------------------------------- */

.asset-trust-item {

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 10px 38px;

    min-height: 82px;
}


/* vertical separators */

.asset-trust-item + .asset-trust-item {

    border-left: 1px solid rgba(196, 155, 58, 0.28);
}


/* ---------------------------------------------------------
   ICON
   --------------------------------------------------------- */

.asset-trust-icon {

    flex: 0 0 54px;

    width: 54px;
    height: 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(196, 155, 58, 0.65);

    color: #c9a03d;

    font-size: 20px;

    background: rgba(255, 255, 255, 0.025);
}


/* ---------------------------------------------------------
   TEXT
   --------------------------------------------------------- */

.asset-trust-content h3 {

    margin: 0 0 6px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 20px;

    line-height: 1.2;

    color: #ffffff;
}


.asset-trust-content p {

    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 13px;

    line-height: 1.55;

    color: rgba(255, 255, 255, 0.68);
}


/* ---------------------------------------------------------
   HOVER
   --------------------------------------------------------- */

.asset-trust-item:hover .asset-trust-icon {

    background: rgba(196, 155, 58, 0.10);

    border-color: #c9a03d;

    transform: translateY(-2px);
}

.asset-trust-icon {

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .asset-trust-container {

        grid-template-columns: 1fr;

    }

    .asset-trust-item {

        padding: 20px 10px;

    }

    .asset-trust-item + .asset-trust-item {

        border-left: none;

        border-top: 1px solid rgba(196, 155, 58, 0.22);

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .asset-trust-strip {

        padding: 30px 0;

    }

    .asset-trust-container {

        width: min(100% - 30px, 520px);

    }

    .asset-trust-item {

        gap: 15px;

        padding: 18px 5px;

    }

    .asset-trust-icon {

        flex-basis: 46px;

        width: 46px;
        height: 46px;

        font-size: 17px;

    }

    .asset-trust-content h3 {

        font-size: 18px;

    }

    .asset-trust-content p {

        font-size: 12.5px;

    }

}

/* =========================================================
   REDSPY ASSET INVESTIGATION
   ENGAGEMENT PROCESS
   ========================================================= */

.asset-process-section {

    position: relative;

    width: 100%;

    padding: 90px 0;

    background:
        linear-gradient(
            135deg,
            #f8f7f4 0%,
            #ffffff 50%,
            #f4f1eb 100%
        );

    overflow: hidden;

    border-top: 1px solid rgba(196, 155, 58, 0.18);
    border-bottom: 1px solid rgba(196, 155, 58, 0.18);
}


/* =========================================================
   SUBTLE GEOMETRIC WATERMARKS
   ========================================================= */

.asset-process-watermark {

    position: absolute;

    pointer-events: none;

    border: 1px solid rgba(196, 155, 58, 0.10);

    transform: rotate(45deg);

}


.process-watermark-one {

    width: 360px;
    height: 360px;

    right: -190px;
    top: -180px;

}


.process-watermark-two {

    width: 260px;
    height: 260px;

    left: -150px;
    bottom: -140px;

}


/* =========================================================
   CONTAINER
   ========================================================= */

.asset-process-container {

    width: min(1180px, calc(100% - 40px));

    margin: 0 auto;

    position: relative;

    z-index: 2;

}


/* =========================================================
   HEADING
   ========================================================= */

.asset-process-heading {

    max-width: 820px;

    margin: 0 auto 55px;

    text-align: center;

}


.asset-process-eyebrow {

    display: inline-block;

    margin-bottom: 14px;

    font-family: Arial, sans-serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: #c49a3a;

}


.asset-process-heading h2 {

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(36px, 4vw, 56px);

    line-height: 1.08;

    font-weight: 700;

    color: #151313;

}


.asset-process-heading h2 span {

    color: #c49a3a;

}


.asset-process-heading p {

    max-width: 650px;

    margin: 20px auto 0;

    font-family: Arial, sans-serif;

    font-size: 16px;

    line-height: 1.7;

    color: #606060;

}


/* =========================================================
   PROCESS GRID
   ========================================================= */

.asset-process-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    position: relative;

}


/* connecting line */

.asset-process-grid::before {

    content: "";

    position: absolute;

    top: 35px;

    left: 12%;

    right: 12%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(196, 155, 58, 0.45),
            transparent
        );

    z-index: 0;

}


/* =========================================================
   PROCESS ITEM
   ========================================================= */

.asset-process-item {

    position: relative;

    text-align: center;

    padding: 0 28px;

    z-index: 1;

}


/* =========================================================
   NUMBER
   ========================================================= */

.asset-process-number {

    position: absolute;

    top: -7px;

    right: 18px;

    font-family: Georgia, serif;

    font-size: 13px;

    font-weight: 700;

    color: rgba(196, 155, 58, 0.65);

}


/* =========================================================
   ICON
   ========================================================= */

.asset-process-icon {

    width: 70px;
    height: 70px;

    margin: 0 auto 22px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    border: 1px solid rgba(196, 155, 58, 0.55);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.07);

    color: #b98d2d;

    font-size: 22px;

}


/* =========================================================
   TEXT
   ========================================================= */

.asset-process-item h3 {

    margin: 0 0 10px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 21px;

    color: #171515;

}


.asset-process-item p {

    margin: 0 auto;

    max-width: 220px;

    font-family: Arial, sans-serif;

    font-size: 13px;

    line-height: 1.65;

    color: #666666;

}


/* =========================================================
   HOVER
   ========================================================= */

.asset-process-item:hover .asset-process-icon {

    transform: translateY(-4px);

    border-color: #c49a3a;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.10);

}


.asset-process-icon {

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .asset-process-section {

        padding: 70px 0;

    }

    .asset-process-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 50px 20px;

    }

    .asset-process-grid::before {

        display: none;

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .asset-process-section {

        padding: 60px 0;

    }

    .asset-process-container {

        width: min(100% - 30px, 520px);

    }

    .asset-process-heading {

        margin-bottom: 40px;

    }

    .asset-process-heading h2 {

        font-size: 34px;

    }

    .asset-process-heading p {

        font-size: 14px;

    }

    .asset-process-grid {

        grid-template-columns: 1fr;

        gap: 38px;

    }

    .asset-process-item {

        padding: 0 20px;

    }

}

/* =========================================================
   ASSET INVESTIGATION — FINAL CTA
   ========================================================= */

.asset-final-cta {

    position: relative;

    overflow: hidden;

    padding: 82px 20px;

    background:
        linear-gradient(
            135deg,
            #16090b 0%,
            #230b10 48%,
            #100607 100%
        );

    border-top: 1px solid rgba(196, 155, 58, 0.35);
    border-bottom: 1px solid rgba(196, 155, 58, 0.35);

    text-align: center;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.asset-final-cta-container {

    position: relative;

    z-index: 2;

    width: min(850px, 100%);

    margin: 0 auto;

}


/* =========================================================
   EYEBROW
   ========================================================= */

.asset-final-cta-eyebrow {

    display: block;

    margin-bottom: 16px;

    font-family: Arial, sans-serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: #c9a34a;

}


/* =========================================================
   HEADING
   ========================================================= */

.asset-final-cta h2 {

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(38px, 5vw, 60px);

    line-height: 1.08;

    font-weight: 700;

    color: #ffffff;

}


.asset-final-cta h2 span {

    color: #c9a34a;

}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.asset-final-cta p {

    max-width: 650px;

    margin: 20px auto 30px;

    font-family: Arial, sans-serif;

    font-size: 16px;

    line-height: 1.7;

    color: rgba(255,255,255,0.78);

}


/* =========================================================
   BUTTON
   ========================================================= */

.asset-final-cta-button {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 245px;

    padding: 15px 28px;

    border-radius: 50px;

    background: #c9a34a;

    color: #111111;

    font-family: Arial, sans-serif;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;

}


.asset-final-cta-button:hover {

    transform: translateY(-3px);

    background: #d8b45d;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.30);

}


/* =========================================================
   GEOMETRIC WATERMARKS
   ========================================================= */

.asset-cta-watermark {

    position: absolute;

    pointer-events: none;

    border: 1px solid rgba(201,163,74,0.10);

    transform: rotate(45deg);

}


.asset-cta-watermark-one {

    width: 420px;
    height: 420px;

    left: -250px;
    top: -210px;

}


.asset-cta-watermark-two {

    width: 300px;
    height: 300px;

    right: -170px;
    bottom: -170px;

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .asset-final-cta {

        padding: 65px 20px;

    }

    .asset-final-cta h2 {

        font-size: 36px;

    }

    .asset-final-cta p {

        font-size: 14px;

    }

    .asset-final-cta-button {

        width: 100%;

        max-width: 300px;

    }

}

/* =========================================================
   WHY REDSPY — CREDIBILITY SECTION
   ========================================================= */

.asset-why-redspy {

    position: relative;
    overflow: hidden;

    padding: 90px 20px;

    background:
        linear-gradient(
            135deg,
            #fbfaf7 0%,
            #ffffff 50%,
            #f8f5ef 100%
        );

    border-top: 1px solid rgba(201,163,74,0.18);
    border-bottom: 1px solid rgba(201,163,74,0.18);

}


/* =========================================================
   CONTAINER
   ========================================================= */

.asset-why-container {

    position: relative;
    z-index: 2;

    width: min(1180px, 100%);

    margin: 0 auto;

}


/* =========================================================
   HEADING
   ========================================================= */

.asset-why-heading {

    max-width: 820px;

    margin: 0 auto 52px;

    text-align: center;

}


.asset-why-eyebrow {

    display: block;

    margin-bottom: 15px;

    font-family: Arial, sans-serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: #bd8f2d;

}


.asset-why-heading h2 {

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.1;

    color: #111111;

}


.asset-why-heading h2 span {

    display: block;

    color: #bd8f2d;

}


.asset-why-heading p {

    max-width: 720px;

    margin: 22px auto 0;

    font-family: Arial, sans-serif;

    font-size: 16px;

    line-height: 1.75;

    color: #5c5c5c;

}


/* =========================================================
   CARD GRID
   ========================================================= */

.asset-why-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

}


/* =========================================================
   CARD
   ========================================================= */

.asset-why-card {

    position: relative;

    min-height: 260px;

    padding: 30px 25px;

    background:
        rgba(255,255,255,0.82);

    border: 1px solid rgba(189,143,45,0.28);

    border-top: 3px solid #c9a34a;

    box-shadow:
        0 12px 35px rgba(0,0,0,0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.asset-why-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 18px 42px rgba(0,0,0,0.10);

}


/* =========================================================
   ICON
   ========================================================= */

.asset-why-icon {

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    background: #1b090c;

    border: 1px solid #c9a34a;

    color: #c9a34a;

    font-size: 18px;

}


/* =========================================================
   NUMBER
   ========================================================= */

.asset-why-number {

    display: block;

    margin-bottom: 8px;

    font-family: Arial, sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #bd8f2d;

}


/* =========================================================
   CARD TITLE
   ========================================================= */

.asset-why-card h3 {

    margin: 0 0 12px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 23px;

    line-height: 1.2;

    color: #171717;

}


/* =========================================================
   CARD TEXT
   ========================================================= */

.asset-why-card p {

    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 14px;

    line-height: 1.65;

    color: #626262;

}


/* =========================================================
   GEOMETRIC WATERMARKS
   ========================================================= */

.asset-why-watermark {

    position: absolute;

    pointer-events: none;

    border: 1px solid rgba(189,143,45,0.08);

    transform: rotate(45deg);

}


.asset-why-watermark.watermark-one {

    width: 360px;
    height: 360px;

    left: -220px;
    top: -180px;

}


.asset-why-watermark.watermark-two {

    width: 300px;
    height: 300px;

    right: -180px;
    bottom: -170px;

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

    .asset-why-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .asset-why-redspy {

        padding: 65px 18px;

    }

    .asset-why-heading {

        margin-bottom: 35px;

    }

    .asset-why-heading h2 {

        font-size: 36px;

    }

    .asset-why-heading p {

        font-size: 14px;

    }

    .asset-why-grid {

        grid-template-columns: 1fr;

    }

    .asset-why-card {

        min-height: auto;

    }

}

/* =========================================================
   FOUNDER MESSAGE
   Premium Editorial Two-Column Layout
========================================================= */

.asset-founder-message {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background:
        linear-gradient(
            135deg,
            #fffdf8 0%,
            #faf8f3 52%,
            #f5f1ea 100%
        );
    border-top: 1px solid rgba(190, 148, 55, 0.18);
    border-bottom: 1px solid rgba(190, 148, 55, 0.18);
}


/* ---------------------------------------------------------
   CONTAINER
--------------------------------------------------------- */

.asset-founder-container {
    position: relative;
    z-index: 2;

    width: min(1180px, calc(100% - 80px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);

    align-items: center;
    gap: 80px;
}


/* ---------------------------------------------------------
   FOUNDER IMAGE
--------------------------------------------------------- */

.asset-founder-portrait {
    position: relative;
    display: flex;
    justify-content: center;
}


.asset-founder-image-frame {
    position: relative;

    width: 100%;
    max-width: 500px;

    padding: 10px;

    background: #ffffff;

    border: 1px solid rgba(190, 148, 55, 0.55);

    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.12),
        0 4px 15px rgba(0, 0, 0, 0.06);
}


.asset-founder-image-frame img {
    display: block;

    width: 100%;
    height: auto;

    aspect-ratio: 4 / 5;

    object-fit: cover;

    object-position: center;
}


/* Gold accent line */

.asset-founder-image-accent {
    position: absolute;

    width: 110px;
    height: 4px;

    right: -22px;
    bottom: -12px;

    background: linear-gradient(
        90deg,
        #8d1524,
        #c99a3e
    );
}


/* ---------------------------------------------------------
   FOUNDER CONTENT
--------------------------------------------------------- */

.asset-founder-content {
    max-width: 650px;
}


.asset-founder-eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    font-family: Arial, sans-serif;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;

    color: #b88a2f;

    text-transform: uppercase;
}


.asset-founder-content h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(38px, 4vw, 58px);

    line-height: 1.08;

    font-weight: 700;

    color: #111111;
}


.asset-founder-content h2 span {
    display: block;

    color: #bd8f35;
}


/* ---------------------------------------------------------
   DIVIDER
--------------------------------------------------------- */

.asset-founder-divider {
    width: 90px;
    height: 3px;

    margin: 26px 0 28px;

    background: linear-gradient(
        90deg,
        #9d1627,
        #c99a3e
    );
}


/* ---------------------------------------------------------
   TEXT
--------------------------------------------------------- */

.asset-founder-content p {
    margin: 0 0 18px;

    max-width: 620px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 17px;

    line-height: 1.8;

    color: #4f5862;
}


/* ---------------------------------------------------------
   SIGNATURE
--------------------------------------------------------- */

.asset-founder-signature {
    position: relative;

    margin-top: 34px;
    padding-left: 22px;

    border-left: 3px solid #c99a3e;
}


.asset-founder-signature strong {
    display: block;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 24px;

    line-height: 1.2;

    color: #111111;
}


.asset-founder-signature span {
    display: block;

    margin-top: 5px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;

    font-weight: 600;

    color: #7f1725;
}


.asset-founder-signature small {
    display: block;

    margin-top: 4px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;

    color: #777777;
}


/* ---------------------------------------------------------
   SUBTLE GEOMETRIC WATERMARKS
--------------------------------------------------------- */

.asset-founder-watermark {
    position: absolute;

    pointer-events: none;

    opacity: 0.22;

    border: 1px solid rgba(190, 148, 55, 0.15);

    transform: rotate(45deg);
}


.asset-founder-watermark.watermark-one {
    width: 280px;
    height: 280px;

    right: -110px;
    top: 60px;
}


.asset-founder-watermark.watermark-two {
    width: 180px;
    height: 180px;

    left: -80px;
    bottom: 30px;

    border-color: rgba(128, 19, 35, 0.10);
}


/* ---------------------------------------------------------
   TABLET
--------------------------------------------------------- */

@media (max-width: 900px) {

    .asset-founder-message {
        padding: 80px 0;
    }

    .asset-founder-container {
        width: min(720px, calc(100% - 50px));

        grid-template-columns: 1fr;

        gap: 55px;
    }

    .asset-founder-portrait {
        justify-content: center;
    }

    .asset-founder-image-frame {
        max-width: 460px;
    }

    .asset-founder-content {
        max-width: 100%;
        text-align: left;
    }

}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 600px) {

    .asset-founder-message {
        padding: 65px 0;
    }

    .asset-founder-container {
        width: calc(100% - 36px);

        gap: 40px;
    }

    .asset-founder-image-frame {
        padding: 7px;
    }

    .asset-founder-image-accent {
        width: 75px;
        right: -10px;
        bottom: -8px;
    }

    .asset-founder-eyebrow {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .asset-founder-content h2 {
        font-size: 36px;
        line-height: 1.12;
    }

    .asset-founder-content p {
        font-size: 16px;
        line-height: 1.7;
    }

    .asset-founder-signature {
        margin-top: 28px;
    }

}

/* =========================================================
   REDSPY PREMIUM FAQ SECTION
========================================================= */

.redspy-faq {
    position: relative;
    padding: 110px 20px 120px;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(184, 132, 38, 0.055),
            transparent 32%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(120, 0, 20, 0.035),
            transparent 32%
        ),
        #faf9f6;

    overflow: hidden;
}


/* Subtle geometric detail */

.redspy-faq::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -220px;
    top: 100px;

    border: 1px solid rgba(190, 140, 45, 0.08);
    transform: rotate(45deg);

    pointer-events: none;
}


.redspy-faq::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    left: -180px;
    bottom: 100px;

    border: 1px solid rgba(190, 140, 45, 0.06);
    transform: rotate(45deg);

    pointer-events: none;
}


/* Main container */

.redspy-faq-container {
    position: relative;
    z-index: 2;

    width: min(100%, 1050px);
    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.redspy-faq-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 55px;
}


.redspy-faq-eyebrow {
    display: inline-block;

    margin-bottom: 16px;

    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;

    letter-spacing: 4px;

    color: #b8872f;
}


.redspy-faq-heading h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.12;

    font-weight: 700;

    color: #111111;
}


.redspy-faq-heading h2 span {
    color: #b8872f;
}


.redspy-faq-heading p {
    max-width: 700px;
    margin: 22px auto 0;

    font-family: Arial, sans-serif;

    font-size: 16px;
    line-height: 1.8;

    color: #5c6470;
}


/* Gold-burgundy divider */

.redspy-faq-divider {
    width: 75px;
    height: 3px;

    margin: 28px auto 0;

    background: linear-gradient(
        90deg,
        #8f1024,
        #c89b3c
    );
}


/* =========================================================
   FAQ LIST
========================================================= */

.redspy-faq-list {
    display: flex;
    flex-direction: column;

    gap: 12px;
}


/* Individual item */

.redspy-faq-item {
    position: relative;

    background: #ffffff;

    border: 1px solid rgba(184, 135, 47, 0.20);

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;

    overflow: hidden;
}


.redspy-faq-item:hover {
    border-color: rgba(184, 135, 47, 0.45);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.055);

    transform: translateY(-1px);
}


/* =========================================================
   QUESTION
========================================================= */

.redspy-faq-question {
    width: 100%;

    display: grid;

    grid-template-columns: 60px 1fr 45px;

    align-items: center;

    gap: 20px;

    padding: 23px 25px;

    border: 0;
    background: transparent;

    cursor: pointer;

    text-align: left;
}


/* Number */

.redspy-faq-number {
    font-family: Arial, sans-serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    color: #b8872f;

    opacity: 0.85;
}


/* Question */

.redspy-faq-title {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 20px;
    font-weight: 700;

    line-height: 1.35;

    color: #151515;

    transition: color 0.3s ease;
}


/* Plus */

.redspy-faq-toggle {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(184, 135, 47, 0.45);

    border-radius: 50%;

    font-family: Arial, sans-serif;
    font-size: 22px;
    font-weight: 300;

    color: #b8872f;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;
}


/* Hover */

.redspy-faq-question:hover .redspy-faq-title {
    color: #8f1024;
}


/* =========================================================
   ANSWER
========================================================= */

.redspy-faq-answer {
    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows 0.4s ease;
}


.redspy-faq-answer p {
    min-height: 0;
    overflow: hidden;

    margin: 0;

    padding: 0 90px;

    font-family: Arial, sans-serif;

    font-size: 15.5px;
    line-height: 1.8;

    color: #5c6470;

    transition:
        padding 0.4s ease;
}


/* =========================================================
   ACTIVE FAQ
========================================================= */

.redspy-faq-item.active {
    border-color: rgba(184, 135, 47, 0.50);

    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.07);
}


.redspy-faq-item.active .redspy-faq-title {
    color: #8f1024;
}


.redspy-faq-item.active .redspy-faq-answer {
    grid-template-rows: 1fr;
}


.redspy-faq-item.active .redspy-faq-answer p {
    padding:
        0 90px 28px;
}


.redspy-faq-item.active .redspy-faq-toggle {
    transform: rotate(45deg);

    background: #b8872f;

    color: #ffffff;
}


/* =========================================================
   CTA
========================================================= */

.redspy-faq-cta {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;

    margin-top: 55px;
    padding: 38px 42px;

    background:
        linear-gradient(
            120deg,
            #130709,
            #260b10
        );

    border-top: 2px solid #b8872f;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.12);
}


.redspy-faq-cta-label {
    display: block;

    margin-bottom: 8px;

    font-family: Arial, sans-serif;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;

    color: #c89b3c;
}


.redspy-faq-cta h3 {
    margin: 0 0 8px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 28px;
    line-height: 1.25;

    color: #ffffff;
}


.redspy-faq-cta p {
    max-width: 650px;

    margin: 0;

    font-family: Arial, sans-serif;

    font-size: 14px;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.70);
}


/* CTA BUTTON */

.redspy-faq-button {
    flex-shrink: 0;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    min-width: 205px;

    padding: 15px 23px;

    background: #c89b3c;

    color: #111111;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 14px;
    font-weight: 700;

    border-radius: 4px;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.redspy-faq-button span {
    font-size: 20px;

    transition:
        transform 0.3s ease;
}


.redspy-faq-button:hover {
    background: #d9ae52;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.25);
}


.redspy-faq-button:hover span {
    transform: translateX(4px);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .redspy-faq {
        padding: 80px 16px 90px;
    }


    .redspy-faq-heading {
        margin-bottom: 38px;
    }


    .redspy-faq-heading h2 {
        font-size: 38px;
    }


    .redspy-faq-heading p {
        font-size: 15px;
    }


    .redspy-faq-question {
        grid-template-columns: 35px 1fr 38px;

        gap: 12px;

        padding: 20px 17px;
    }


    .redspy-faq-title {
        font-size: 17px;
    }


    .redspy-faq-toggle {
        width: 30px;
        height: 30px;

        font-size: 19px;
    }


    .redspy-faq-answer p {
        padding: 0 17px;
    }


    .redspy-faq-item.active .redspy-faq-answer p {
        padding:
            0 17px 24px;
    }


    .redspy-faq-cta {
        flex-direction: column;

        align-items: flex-start;

        padding: 30px 25px;

        gap: 25px;
    }


    .redspy-faq-cta h3 {
        font-size: 25px;
    }


    .redspy-faq-button {
        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .redspy-faq-heading h2 {
        font-size: 32px;
    }


    .redspy-faq-eyebrow {
        letter-spacing: 2.5px;
    }


    .redspy-faq-number {
        font-size: 10px;
    }


    .redspy-faq-title {
        font-size: 16px;
    }

}

/* =========================================================
   REDSPY PROFESSIONAL NOTE
========================================================= */

.redspy-professional-note {
    padding: 45px 20px;
    background: #f7f6f3;
    border-top: 1px solid rgba(184, 135, 47, 0.12);
    border-bottom: 1px solid rgba(184, 135, 47, 0.12);
}

.redspy-note-container {
    width: min(100%, 1050px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 45px;
    align-items: center;
}

.redspy-note-label {
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #b8872f;
}

.redspy-note-content {
    padding-left: 35px;
    border-left: 2px solid #c89b3c;
}

.redspy-note-content h2 {
    margin: 0 0 8px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    color: #171717;
}

.redspy-note-content p {
    max-width: 850px;
    margin: 0;

    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: #626873;
}


/* Mobile */

@media (max-width: 700px) {

    .redspy-professional-note {
        padding: 35px 18px;
    }

    .redspy-note-container {
        display: block;
    }

    .redspy-note-label {
        display: block;
        margin-bottom: 15px;
    }

    .redspy-note-content {
        padding-left: 20px;
    }

    .redspy-note-content h2 {
        font-size: 22px;
    }

}

/* =========================================================
   ASSET INVESTIGATION — PREMIUM PHONE CTA
   ========================================================= */

.cta-buttons .btn-secondary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;

    min-height: 52px !important;
    padding: 15px 28px !important;

    background: #ffffff !important;
    color: #8d2337 !important;

    border: 2px solid #c8a24d !important;
    border-radius: 999px !important;

    font-family: inherit !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;

    text-decoration: none !important;
    white-space: nowrap !important;

    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.08),
        0 0 0 rgba(200, 162, 77, 0) !important;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease !important;
}

.cta-buttons .btn-secondary:hover {
    background: linear-gradient(
        135deg,
        #fffdf7,
        #f7ecd0
    ) !important;

    color: #6f172b !important;
    border-color: #d4af37 !important;

    transform: translateY(-3px) !important;

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.12),
        0 0 16px rgba(212, 175, 55, 0.28) !important;
}

.cta-buttons .btn-secondary:active {
    transform: translateY(-1px) !important;
}