/* =========================================================
   WHITE LABEL REPORT DOWNLOAD HERO
========================================================= */

.report-kit-hero {
    --report-navy: #132855;
    --report-dark-navy: #0D1C45;
    --report-gold: #C9A25B;
    --report-oak: #B88558;
    --report-ivory: #F8F7F4;
    --report-beige: #E7E1D8;
    --report-charcoal: #1E1E1E;

    position: relative;
    overflow: hidden;

    padding: 110px 25px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #F8F7F4 48%,
            #f4f0e9 100%
        );

    isolation: isolate;
}


/* =========================================================
   BACKGROUND RECTANGULAR GRID
========================================================= */

.report-grid-bg {
    position: absolute;
    inset: 0;
    z-index: -5;

    background-image:
        linear-gradient(
            rgba(19, 40, 85, 0.055) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(19, 40, 85, 0.055) 1px,
            transparent 1px
        );

    background-size: 72px 52px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.9),
            rgba(0,0,0,0.45)
        );

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.9),
            rgba(0,0,0,0.45)
        );
}


/* Extra tiny rectangle pattern */

.report-grid-bg::before {
    content: "";
    position: absolute;

    width: 440px;
    height: 330px;

    top: 9%;
    right: 5%;

    opacity: 0.35;

    background-image:
        linear-gradient(
            rgba(201,162,91,0.35) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(201,162,91,0.35) 1px,
            transparent 1px
        );

    background-size: 24px 24px;

    mask-image:
        radial-gradient(
            ellipse,
            #000 20%,
            transparent 70%
        );

    -webkit-mask-image:
        radial-gradient(
            ellipse,
            #000 20%,
            transparent 70%
        );
}


/* =========================================================
   BACKGROUND GLOWS
========================================================= */

.report-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(20px);

    pointer-events: none;

    z-index: -4;
}

.report-glow-one {
    width: 500px;
    height: 500px;

    right: -200px;
    top: 80px;

    background:
        radial-gradient(
            circle,
            rgba(201, 162, 91, 0.18),
            transparent 68%
        );
}

.report-glow-two {
    width: 450px;
    height: 450px;

    left: -250px;
    bottom: -180px;

    background:
        radial-gradient(
            circle,
            rgba(19, 40, 85, 0.09),
            transparent 68%
        );
}


/* =========================================================
   CONTAINER
========================================================= */

.report-kit-container {
    width: min(1460px, 100%);

    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(500px, 1.05fr);

    align-items: center;

    gap: clamp(50px, 6vw, 100px);

    position: relative;

    z-index: 2;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.report-kit-content {
    position: relative;

    z-index: 5;
}


/* Badge */

.report-resource-badge {
    width: fit-content;

    min-height: 45px;

    padding: 0 19px;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    border: 1px solid
        rgba(201, 162, 91, 0.65);

    background:
        rgba(255,255,255,0.7);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    border-radius: 100px;

    box-shadow:
        0 10px 30px
        rgba(13,28,69,0.06);

    margin-bottom: 27px;
}

.report-resource-badge i {
    color: var(--report-gold);

    font-size: 13px;
}

.report-resource-badge span {
    color: var(--report-oak);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


/* =========================================================
   TITLE
========================================================= */

.report-kit-title {
    margin: 0;

    color: var(--report-dark-navy);

    font-size:
        clamp(42px, 4vw, 68px);

    line-height: 1.05;

    letter-spacing: -2.7px;

    font-weight: 800;
}

.report-kit-title span {
    color: var(--report-gold);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.report-kit-description {
    max-width: 720px;

    margin:
        27px 0 32px;

    color: #5f6979;

    font-size: 17px;

    line-height: 1.8;

    font-weight: 400;
}


/* =========================================================
   FORM CARD
========================================================= */

.report-kit-form-wrap {
    position: relative;
}

.report-kit-form {
    position: relative;

    padding: 26px;

    border-radius: 24px;

    background:
        rgba(255, 255, 255, 0.78);

    border:
        1px solid
        rgba(19, 40, 85, 0.10);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 25px 70px
        rgba(13, 28, 69, 0.09);
}


/* Gold top accent */

.report-kit-form::before {
    content: "";

    position: absolute;

    left: 30px;
    right: 30px;
    top: 0;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--report-gold),
            transparent
        );

    opacity: 0.7;
}


/* =========================================================
   FORM GRID
========================================================= */

.report-form-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px 17px;
}


/* =========================================================
   FIELD
========================================================= */

.report-field {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.report-field label {
    padding-left: 3px;

    color: var(--report-navy);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.15px;

    text-transform: uppercase;
}


/* =========================================================
   INPUT
========================================================= */

.report-input-wrap {
    height: 55px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 0 16px;

    border-radius: 10px;

    border:
        1px solid
        rgba(19,40,85,0.13);

    background: #ffffff;

    transition: 0.3s ease;
}

.report-input-wrap i {
    width: 17px;

    color: var(--report-gold);

    font-size: 13px;

    opacity: 0.85;

    transition: 0.3s ease;
}

.report-input-wrap input {
    width: 100%;

    height: 100%;

    border: none;

    outline: none;

    background: transparent;

    color: var(--report-charcoal);

    font-size: 14px;
}

.report-input-wrap input::placeholder {
    color: #9ba3ad;
}


/* Focus */

.report-input-wrap:focus-within {
    border-color:
        rgba(201,162,91,0.7);

    box-shadow:
        0 0 0 4px
        rgba(201,162,91,0.09);
}

.report-input-wrap:focus-within i {
    color: var(--report-oak);
}


/* =========================================================
   BUTTON
========================================================= */

.report-download-btn {
    width: 100%;

    min-height: 58px;

    border: none;

    margin-top: 20px;

    padding: 0 27px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    border-radius: 11px;

    cursor: pointer;

    overflow: hidden;

    position: relative;

    color: var(--report-dark-navy);

    font-size: 15px;

    font-weight: 800;

    background:
        linear-gradient(
            135deg,
            #D5AE65 0%,
            #C9A25B 48%,
            #B88558 100%
        );

    box-shadow:
        0 13px 30px
        rgba(184,133,88,0.22);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


/* Button light sweep */

.report-download-btn::before {
    content: "";

    position: absolute;

    width: 100px;
    height: 150%;

    top: -25%;

    left: -130px;

    transform: skewX(-25deg);

    background:
        rgba(255,255,255,.28);

    transition: .55s ease;
}

.report-download-btn:hover::before {
    left: calc(100% + 40px);
}

.report-download-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 38px
        rgba(184,133,88,0.30);
}

.report-download-btn span,
.report-download-btn i {
    position: relative;

    z-index: 2;
}

.report-download-btn i {
    font-size: 13px;

    transition:
        transform .3s ease;
}

.report-download-btn:hover i {
    transform: translateX(5px);
}


/* =========================================================
   BENEFITS
========================================================= */

.report-form-benefits {
    display: flex;

    align-items: center;

    justify-content: space-between;

    flex-wrap: wrap;

    gap: 12px;

    padding: 18px 3px 0;
}

.report-form-benefits > div {
    display: flex;

    align-items: center;

    gap: 7px;

    color: #667180;

    font-size: 12px;
}

.report-form-benefits i {
    color: #2ca277;

    font-size: 11px;
}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.report-kit-visual {
    min-height: 660px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =========================================================
   MAIN IMAGE
========================================================= */

.report-main-image {
    width: min(100%, 760px);

    position: relative;

    z-index: 4;
}

.report-main-image img {
    width: 100%;

    height: auto;

    display: block;

    position: relative;

    z-index: 3;

    object-fit: contain;

    filter:
        drop-shadow(
            0 35px 30px
            rgba(13, 28, 69, 0.16)
        );

    animation:
        reportImageFloat
        6s ease-in-out
        infinite;
}


/*

IMPORTANT MACHII:

Un image upload pannitu
intha path mattum change pannu:

src="assets/images/reporting-kit.png"

Example:

src="images/seo-report.png"

*/


.report-image-shadow {
    position: absolute;

    z-index: 1;

    width: 75%;
    height: 20%;

    left: 14%;
    bottom: 0;

    background:
        rgba(13,28,69,0.18);

    filter: blur(38px);

    border-radius: 50%;
}


/* Floating animation */

@keyframes reportImageFloat {

    0%,
    100% {
        transform:
            translateY(0px);
    }

    50% {
        transform:
            translateY(-13px);
    }

}


/* =========================================================
   FLOATING CARDS
========================================================= */

.report-float-card {
    position: absolute;

    z-index: 6;

    padding: 10px 15px 10px 10px;

    display: flex;

    align-items: center;

    gap: 10px;

    background:
        rgba(255,255,255,0.84);

    border:
        1px solid
        rgba(19,40,85,0.10);

    backdrop-filter: blur(15px);

    -webkit-backdrop-filter: blur(15px);

    border-radius: 15px;

    box-shadow:
        0 18px 45px
        rgba(13,28,69,0.11);

    color: var(--report-navy);

    font-size: 12px;

    font-weight: 700;
}

.report-float-card > div {
    width: 37px;
    height: 37px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background:
        rgba(201,162,91,0.13);

    color: var(--report-gold);
}

.report-float-top {
    right: 0;

    top: 100px;

    animation:
        reportCardFloat1
        5s ease-in-out
        infinite;
}

.report-float-bottom {
    left: 5%;

    bottom: 70px;

    animation:
        reportCardFloat2
        5.5s ease-in-out
        infinite;
}


@keyframes reportCardFloat1 {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(1deg);
    }

    50% {
        transform:
            translateY(-12px)
            rotate(-1deg);
    }

}


@keyframes reportCardFloat2 {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(10px);
    }

}


/* =========================================================
   DOT PATTERN
========================================================= */

.report-dots {
    position: absolute;

    width: 160px;
    height: 160px;

    background-image:
        radial-gradient(
            circle,
            rgba(201,162,91,.45) 2px,
            transparent 2.5px
        );

    background-size: 17px 17px;

    z-index: 1;
}

.report-dots-one {
    top: 20%;

    left: 1%;

    mask-image:
        linear-gradient(
            135deg,
            black,
            transparent
        );

    -webkit-mask-image:
        linear-gradient(
            135deg,
            black,
            transparent
        );
}

.report-dots-two {
    bottom: 11%;

    right: 1%;

    mask-image:
        linear-gradient(
            -45deg,
            black,
            transparent
        );

    -webkit-mask-image:
        linear-gradient(
            -45deg,
            black,
            transparent
        );
}


/* =========================================================
   RESPONSIVE - LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .report-kit-container {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(420px, 0.9fr);

        gap: 45px;
    }

    .report-kit-title {
        font-size:
            clamp(40px, 4.3vw, 57px);
    }

    .report-kit-visual {
        min-height: 570px;
    }

}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 991px) {

    .report-kit-hero {
        padding:
            90px 22px;
    }

    .report-kit-container {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .report-kit-content {
        max-width: 760px;

        margin: auto;
    }

    .report-kit-title {
        font-size:
            clamp(43px, 7vw, 62px);
    }

    .report-kit-visual {
        width: 100%;

        max-width: 800px;

        min-height: auto;

        margin: auto;

        padding: 40px 40px;
    }

    .report-main-image {
        max-width: 680px;
    }

    .report-float-top {
        top: 5px;

        right: 20px;
    }

    .report-float-bottom {
        bottom: 10px;

        left: 30px;
    }

}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 650px) {

    .report-kit-hero {
        padding:
            70px 16px;
    }

    .report-resource-badge {
        min-height: 40px;

        margin-bottom: 22px;
    }

    .report-resource-badge span {
        font-size: 10px;

        letter-spacing: 1px;
    }

    .report-kit-title {
        font-size:
            clamp(35px, 10.5vw, 46px);

        letter-spacing: -1.7px;
    }

    .report-kit-description {
        margin-top: 20px;

        font-size: 15px;

        line-height: 1.7;
    }

    .report-kit-form {
        padding: 19px;

        border-radius: 19px;
    }

    .report-form-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .report-input-wrap {
        height: 52px;
    }

    .report-download-btn {
        min-height: 55px;

        font-size: 14px;
    }

    .report-form-benefits {
        align-items: flex-start;

        flex-direction: column;

        gap: 9px;
    }

    .report-kit-visual {
        padding: 30px 0 25px;
    }

    .report-float-card {
        display: none;
    }

    .report-dots {
        width: 110px;

        height: 110px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .report-kit-title {
        font-size: 34px;
    }

    .report-kit-form {
        padding: 16px;
    }

}

/* =========================================================
   REPORTING KIT SECTION
========================================================= */

.cv-kit-section {

    --cv-navy: #132855;
    --cv-dark-navy: #0D1C45;
    --cv-gold: #C9A25B;
    --cv-oak: #B88558;
    --cv-ivory: #F8F7F4;
    --cv-beige: #E7E1D8;

    position: relative;

    padding: 60px 24px 60px;

    overflow: hidden;

    isolation: isolate;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(19,40,85,0.82) 0%,
            rgba(13,28,69,0.45) 35%,
            transparent 60%
        ),
        linear-gradient(
            135deg,
            #091632 0%,
            #0D1C45 50%,
            #091a3b 100%
        );

}


/* =========================================================
   BACKGROUND GRID
========================================================= */

.cv-kit-grid {

    position: absolute;

    inset: 0;

    z-index: -5;

    opacity: .17;

    background-image:

        linear-gradient(
            rgba(201,162,91,.08) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(201,162,91,.08) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

}


/* =========================================================
   GLOW
========================================================= */

.cv-kit-glow {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    z-index: -4;

    filter: blur(10px);

}

.cv-kit-glow-one {

    width: 600px;

    height: 600px;

    top: -290px;

    left: 50%;

    transform: translateX(-50%);

    background:

        radial-gradient(
            circle,
            rgba(19,40,85,.75),
            transparent 70%
        );

}

.cv-kit-glow-two {

    width: 500px;

    height: 500px;

    right: -250px;

    bottom: -220px;

    background:

        radial-gradient(
            circle,
            rgba(201,162,91,.12),
            transparent 70%
        );

}


/* =========================================================
   DOT DECORATIONS
========================================================= */

.cv-kit-dots {

    position: absolute;

    width: 150px;

    height: 180px;

    background-image:

        radial-gradient(
            circle,
            rgba(201,162,91,.55) 2px,
            transparent 2.5px
        );

    background-size: 24px 24px;

    z-index: -1;

}

.cv-kit-dots-left {

    top: 80px;

    left: -22px;

    mask-image:
        linear-gradient(
            90deg,
            #000,
            transparent
        );

    -webkit-mask-image:
        linear-gradient(
            90deg,
            #000,
            transparent
        );

}

.cv-kit-dots-right {

    top: 75px;

    right: -15px;

    mask-image:
        linear-gradient(
            -90deg,
            #000,
            transparent
        );

    -webkit-mask-image:
        linear-gradient(
            -90deg,
            #000,
            transparent
        );

}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.cv-kit-container {

    width: min(1220px, 100%);

    margin: 0 auto;

    position: relative;

    z-index: 5;

}


/* =========================================================
   HEADER
========================================================= */

.cv-kit-header {

    max-width: 960px;

    margin: 0 auto 44px;

    text-align: center;

}


/* Label */

.cv-kit-label {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    margin-bottom: 22px;

    color: var(--cv-gold);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1.2px;

    text-transform: uppercase;

}

.cv-kit-label-line {

    width: 37px;

    height: 1px;

    border-top: 2px dashed var(--cv-gold);

    opacity: .85;

}


/* Heading */

.cv-kit-header h2 {

    margin: 0;

    color: var(--cv-ivory);

    font-size:
        clamp(43px, 3.5vw, 62px);

    line-height: 1.02;

    letter-spacing: -2px;

    font-weight: 800;

}

.cv-kit-header h2 span {

    display: block;

    color: var(--cv-gold);

}


/* Heading underline */

.cv-kit-title-line {

    width: 180px;

    height: 2px;

    margin: 20px auto 18px;

    position: relative;

    background:

        linear-gradient(
            90deg,
            transparent,
            rgba(201,162,91,.45),
            transparent
        );

}

.cv-kit-title-line span {

    position: absolute;

    left: 50%;

    top: 50%;

    width: 80px;

    height: 2px;

    transform: translate(-50%,-50%);

    background: var(--cv-gold);

}

.cv-kit-title-line span::after {

    content: "";

    position: absolute;

    left: 50%;

    top: 50%;

    width: 12px;

    height: 12px;

    transform: translate(-50%,-50%);

    border-radius: 50%;

    background: var(--cv-gold);

    box-shadow:

        0 0 10px var(--cv-gold),

        0 0 25px
        rgba(201,162,91,.8);

}


/* Subtitle */

.cv-kit-header p {

    max-width: 620px;

    margin: auto;

    color: rgba(248,247,244,.76);

    font-size: 17px;

    line-height: 1.6;

}


/* =========================================================
   CARDS GRID
========================================================= */

.cv-kit-cards {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 13px;

}


/* =========================================================
   SINGLE CARD
========================================================= */

.cv-kit-card {

    min-height: 188px;

    position: relative;

    overflow: hidden;

    border-radius: 15px;

    border:

        1px solid
        rgba(201,162,91,.33);

    background:

        linear-gradient(
            145deg,
            rgba(19,40,85,.72),
            rgba(7,22,52,.80)
        );

    box-shadow:

        inset 0 1px 0
        rgba(255,255,255,.025),

        0 10px 28px
        rgba(0,0,0,.12);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;

}


/* Decorative curved background */

.cv-kit-card::before {

    content: "";

    position: absolute;

    width: 150px;

    height: 150px;

    left: -65px;

    bottom: -85px;

    border:

        1px solid
        rgba(201,162,91,.12);

    border-radius: 50%;

}

.cv-kit-card::after {

    content: "";

    position: absolute;

    inset: 0;

    background:

        radial-gradient(
            circle at 10% 20%,
            rgba(201,162,91,.06),
            transparent 30%
        );

    pointer-events: none;

}


/* Hover */

.cv-kit-card:hover {

    transform: translateY(-7px);

    border-color:

        rgba(201,162,91,.70);

    box-shadow:

        0 18px 40px
        rgba(0,0,0,.23),

        0 0 30px
        rgba(201,162,91,.05);

}


/* =========================================================
   NUMBER CORNER
========================================================= */

.cv-kit-number {

    position: absolute;

    right: 0;

    top: 0;

    width: 52px;

    height: 47px;

    display: flex;

    justify-content: center;

    align-items: flex-start;

    padding-top: 8px;

    border-bottom-left-radius: 32px;

    color: var(--cv-ivory);

    font-size: 13px;

    font-weight: 700;

    background:

        linear-gradient(
            135deg,
            var(--cv-gold),
            var(--cv-oak)
        );

    z-index: 3;

}


/* =========================================================
   CARD INNER
========================================================= */

.cv-kit-card-inner {

    min-height: 188px;

    display: grid;

    grid-template-columns: 86px 1fr;

    gap: 18px;

    align-items: center;

    padding: 25px 24px 24px 22px;

    position: relative;

    z-index: 2;

}


/* =========================================================
   ICON
========================================================= */

.cv-kit-icon {

    width: 84px;

    height: 84px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    color: var(--cv-gold);

    font-size: 30px;

    background:

        linear-gradient(
            145deg,
            rgba(19,40,85,.95),
            rgba(8,22,52,.95)
        );

    border:

        2px solid
        rgba(201,162,91,.55);

    box-shadow:

        inset 0 0 20px
        rgba(201,162,91,.04),

        0 8px 25px
        rgba(0,0,0,.18);

    transition:
        transform .35s ease,
        background .35s ease;

}


.cv-kit-icon::after {

    content: "";

    position: absolute;

    inset: 7px;

    border-radius: 50%;

    border:

        1px solid
        rgba(201,162,91,.10);

}


.cv-kit-card:hover .cv-kit-icon {

    transform:
        rotate(-4deg)
        scale(1.05);

}


/* =========================================================
   CARD TEXT
========================================================= */

.cv-kit-card-content {

    min-width: 0;

}

.cv-kit-card-content h3 {

    margin: 0;

    padding-right: 16px;

    color: var(--cv-ivory);

    font-size: 18px;

    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -.25px;

}


.cv-kit-small-line {

    display: block;

    width: 32px;

    height: 2px;

    margin: 11px 0;

    background: var(--cv-gold);

}


.cv-kit-card-content p {

    margin: 0;

    color:
        rgba(248,247,244,.76);

    font-size: 13px;

    line-height: 1.65;

}


/* =========================================================
   BOTTOM BENEFIT BAR
========================================================= */

.cv-kit-benefits {

    min-height: 77px;

    margin-top: 22px;

    padding: 15px 35px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    position: relative;

    border-radius: 13px;

    border:

        1px solid
        rgba(201,162,91,.62);

    background:

        linear-gradient(
            135deg,
            rgba(19,40,85,.75),
            rgba(7,23,52,.83)
        );

    box-shadow:

        0 15px 35px
        rgba(0,0,0,.17);

}


/* Glow under benefit bar */

.cv-kit-benefits::after {

    content: "";

    position: absolute;

    width: 120px;

    height: 2px;

    bottom: -2px;

    left: 50%;

    transform: translateX(-50%);

    background: var(--cv-gold);

    box-shadow:

        0 0 10px var(--cv-gold),

        0 0 25px
        rgba(201,162,91,.65);

}


.cv-kit-benefit {

    display: flex;

    align-items: center;

    gap: 13px;

    color: var(--cv-ivory);

    font-size: 14px;

    font-weight: 500;

}


.cv-kit-benefit-icon {

    width: 34px;

    height: 34px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    border:

        2px solid
        var(--cv-gold);

    color: var(--cv-gold);

    font-size: 14px;

}


.cv-kit-benefit-divider {

    width: 1px;

    height: 36px;

    background:

        rgba(231,225,216,.25);

}


/* =========================================================
   LEFT DECORATIVE REPORT
========================================================= */

.cv-kit-side-report {

    position: absolute;

    pointer-events: none;

    z-index: 1;

}


.cv-kit-side-report-left {

    width: 145px;

    height: 220px;

    left: -45px;

    bottom: 180px;

    transform: rotate(-4deg);

}


.cv-side-pages span {

    position: absolute;

    width: 90px;

    height: 160px;

    border-radius: 9px;

    background:

        linear-gradient(
            145deg,
            #132855,
            #0D1C45
        );

    border:

        1px solid
        rgba(201,162,91,.23);

}


.cv-side-pages span:nth-child(1) {

    left: 5px;

    top: 20px;

}

.cv-side-pages span:nth-child(2) {

    left: 20px;

    top: 10px;

}

.cv-side-pages span:nth-child(3) {

    left: 35px;

    top: 0;

}


.cv-side-report-front {

    position: absolute;

    width: 93px;

    height: 165px;

    left: 42px;

    top: 15px;

    padding: 25px 18px;

    border-radius: 9px;

    background:

        linear-gradient(
            145deg,
            #132855,
            #081735
        );

    border:

        1px solid
        rgba(201,162,91,.42);

    box-shadow:

        15px 20px 40px
        rgba(0,0,0,.35);

}


.cv-side-chart-icon {

    color: var(--cv-gold);

    font-size: 30px;

    text-align: center;

}


.cv-side-chart-bars {

    height: 45px;

    display: flex;

    align-items: flex-end;

    justify-content: center;

    gap: 5px;

    margin-top: 20px;

}


.cv-side-chart-bars span {

    width: 8px;

    display: block;

    border-radius: 2px 2px 0 0;

    background:

        linear-gradient(
            var(--cv-gold),
            var(--cv-oak)
        );

}

.cv-side-chart-bars span:nth-child(1) {
    height: 16px;
}

.cv-side-chart-bars span:nth-child(2) {
    height: 26px;
}

.cv-side-chart-bars span:nth-child(3) {
    height: 34px;
}

.cv-side-chart-bars span:nth-child(4) {
    height: 44px;
}


/* Gold orbit */

.cv-side-ring {

    position: absolute;

    width: 210px;

    height: 70px;

    left: -48px;

    bottom: 11px;

    border-bottom:

        2px solid
        var(--cv-gold);

    border-radius: 50%;

    transform: rotate(6deg);

    box-shadow:

        0 10px 12px
        rgba(201,162,91,.25);

}


/* =========================================================
   RIGHT REPORT DECORATION
========================================================= */

.cv-kit-side-report-right {

    width: 150px;

    height: 240px;

    right: -38px;

    bottom: 155px;

}


.cv-right-report-card {

    width: 120px;

    height: 205px;

    padding: 25px 17px;

    position: relative;

    z-index: 2;

    transform:

        perspective(600px)
        rotateY(-12deg)
        rotateZ(7deg);

    border-radius: 12px;

    border:

        1px solid
        rgba(201,162,91,.52);

    background:

        linear-gradient(
            150deg,
            #132855,
            #081735
        );

    box-shadow:

        0 30px 45px
        rgba(0,0,0,.35);

}


/* Donut */

.cv-right-donut {

    width: 55px;

    height: 55px;

    margin: auto;

    border-radius: 50%;

    position: relative;

    background:

        conic-gradient(
            var(--cv-gold) 0 27%,
            var(--cv-oak) 27% 45%,
            rgba(201,162,91,.35) 45% 62%,
            var(--cv-navy) 62% 100%
        );

}


.cv-right-donut::before {

    content: "";

    position: absolute;

    inset: 13px;

    border-radius: 50%;

    background: #0D1C45;

}


.cv-right-lines {

    margin-top: 25px;

    display: flex;

    flex-direction: column;

    gap: 7px;

}


.cv-right-lines span {

    height: 2px;

    border-radius: 5px;

    background:
        rgba(201,162,91,.75);

}

.cv-right-lines span:nth-child(1) {
    width: 55px;
}

.cv-right-lines span:nth-child(2) {
    width: 40px;
}

.cv-right-lines span:nth-child(3) {
    width: 63px;
}


.cv-right-bars {

    height: 52px;

    display: flex;

    align-items: flex-end;

    justify-content: flex-end;

    gap: 5px;

    margin-top: 10px;

}


.cv-right-bars span {

    width: 10px;

    background:

        linear-gradient(
            var(--cv-gold),
            var(--cv-oak)
        );

}


.cv-right-bars span:nth-child(1) {
    height: 16px;
}

.cv-right-bars span:nth-child(2) {
    height: 32px;
}

.cv-right-bars span:nth-child(3) {
    height: 47px;
}


.cv-right-base {

    position: absolute;

    width: 165px;

    height: 28px;

    left: -20px;

    bottom: 2px;

    border-radius: 50%;

    border:

        1px solid
        rgba(201,162,91,.58);

    background:

        linear-gradient(
            #132855,
            #081735
        );

    box-shadow:

        0 0 24px
        rgba(201,162,91,.16);

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1350px) {

    .cv-kit-side-report-left {

        left: -95px;

    }

    .cv-kit-side-report-right {

        right: -90px;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .cv-kit-section {

        padding:
            80px 22px 60px;

    }

    .cv-kit-cards {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .cv-kit-side-report {

        display: none;

    }

    .cv-kit-benefits {

        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 20px;

    }

    .cv-kit-benefit-divider {

        display: none;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .cv-kit-section {

        padding:
            65px 16px 45px;

    }

    .cv-kit-header {

        margin-bottom: 32px;

    }

    .cv-kit-label {

        font-size: 9px;

        gap: 8px;

    }

    .cv-kit-label-line {

        width: 22px;

    }

    .cv-kit-header h2 {

        font-size:
            clamp(35px, 10vw, 44px);

        letter-spacing: -1.3px;

    }

    .cv-kit-header p {

        font-size: 14px;

    }

    .cv-kit-cards {

        grid-template-columns: 1fr;

    }

    .cv-kit-card {

        min-height: auto;

    }

    .cv-kit-card-inner {

        min-height: 180px;

    }

    .cv-kit-benefits {

        grid-template-columns: 1fr;

        padding: 24px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 460px) {

    .cv-kit-card-inner {

        grid-template-columns:
            70px 1fr;

        gap: 15px;

        padding:
            22px 18px;

    }

    .cv-kit-icon {

        width: 68px;

        height: 68px;

        font-size: 24px;

    }

    .cv-kit-card-content h3 {

        font-size: 16px;

    }

    .cv-kit-card-content p {

        font-size: 12px;

    }

}

/* =========================================================
   REPORT PREVIEW - SIMPLE IMAGE VERSION
========================================================= */

.report-preview-simple {

    --rps-navy: #132855;
    --rps-dark: #0D1C45;
    --rps-gold: #C9A25B;
    --rps-oak: #B88558;
    --rps-ivory: #F8F7F4;
    --rps-beige: #E7E1D8;
    --rps-charcoal: #1E1E1E;

    position: relative;

    overflow: hidden;

    isolation: isolate;

    padding: 60px 24px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #F8F7F4 52%,
            #f3eee6 100%
        );
}


/* =========================================================
   SUBTLE RECTANGULAR GRID
========================================================= */

.rps-grid {

    position: absolute;

    inset: 0;

    z-index: -5;

    background-image:

        linear-gradient(
            rgba(19,40,85,.045) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(19,40,85,.045) 1px,
            transparent 1px
        );

    background-size:
        70px 50px;

    opacity: .7;
}


/* extra small rectangular pattern */

.rps-grid::after {

    content: "";

    position: absolute;

    width: 420px;

    height: 300px;

    right: 4%;

    top: 12%;

    background-image:

        linear-gradient(
            rgba(201,162,91,.18) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(201,162,91,.18) 1px,
            transparent 1px
        );

    background-size:
        24px 18px;

    opacity: .45;

    mask-image:
        radial-gradient(
            ellipse,
            #000 25%,
            transparent 72%
        );

    -webkit-mask-image:
        radial-gradient(
            ellipse,
            #000 25%,
            transparent 72%
        );
}


/* =========================================================
   BACKGROUND GLOWS
========================================================= */

.rps-glow {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    z-index: -4;
}


.rps-glow-left {

    width: 500px;

    height: 500px;

    left: -230px;

    bottom: -200px;

    background:
        radial-gradient(
            circle,
            rgba(201,162,91,.13),
            transparent 70%
        );
}


.rps-glow-right {

    width: 500px;

    height: 500px;

    right: -220px;

    top: -120px;

    background:
        radial-gradient(
            circle,
            rgba(19,40,85,.08),
            transparent 70%
        );
}


/* =========================================================
   CONTAINER
========================================================= */

.rps-container {

    width: min(1400px, 100%);

    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(360px, .8fr)
        minmax(550px, 1.2fr);

    align-items: center;

    gap: clamp(60px, 7vw, 110px);

    position: relative;

    z-index: 3;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.rps-content {

    position: relative;

    z-index: 5;
}


/* Kicker */

.rps-kicker {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 24px;
}


.rps-kicker span {

    width: 40px;

    border-top:
        2px dashed
        var(--rps-gold);
}


.rps-kicker p {

    margin: 0;

    color:
        var(--rps-oak);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.6px;

    text-transform: uppercase;
}


/* =========================================================
   HEADING
========================================================= */

.rps-content h2 {

    max-width: 620px;

    margin: 0;

    color:
        var(--rps-dark);

    font-size:
        clamp(
            48px,
            4.8vw,
            52px
        );

    line-height: 1.02;

    letter-spacing: -2.8px;

    font-weight: 800;
}


.rps-content h2 span {

    display: block;

    color:
        var(--rps-gold);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.rps-description {

    max-width: 560px;

    margin:
        25px 0
        34px;

    color:
        #667286;

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   FEATURE POINTS
========================================================= */

.rps-points {

    display: flex;

    flex-direction: column;

    gap: 22px;

    margin-bottom: 34px;
}


.rps-point {

    display: grid;

    grid-template-columns:
        65px 1fr;

    gap: 18px;

    align-items: center;
}


.rps-point-icon {

    width: 62px;

    height: 62px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color:
        var(--rps-gold);

    font-size: 24px;

    background:
        rgba(255,255,255,.82);

    border:
        1px solid
        rgba(201,162,91,.30);

    box-shadow:
        0 12px 28px
        rgba(13,28,69,.07);
}


.rps-point h4 {

    margin:
        0 0 5px;

    color:
        var(--rps-dark);

    font-size: 17px;

    font-weight: 700;
}


.rps-point p {

    max-width: 440px;

    margin: 0;

    color:
        #697487;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   CTA
========================================================= */

.rps-button {

    min-width: 310px;

    min-height: 65px;

    padding:
        0 30px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    position: relative;

    overflow: hidden;

    border-radius: 13px;

    text-decoration: none;

    color:
        var(--rps-dark);

    font-size: 15px;

    font-weight: 800;

    background:
        linear-gradient(
            135deg,
            #D7B368,
            var(--rps-gold),
            var(--rps-oak)
        );

    box-shadow:
        0 18px 38px
        rgba(184,133,88,.24);

    transition:
        .3s ease;
}


.rps-button::before {

    content: "";

    position: absolute;

    width: 90px;

    height: 160%;

    left: -120px;

    top: -30%;

    background:
        rgba(255,255,255,.25);

    transform:
        skewX(-25deg);

    transition:
        .55s ease;
}


.rps-button:hover::before {

    left:
        calc(100% + 45px);
}


.rps-button:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 23px 45px
        rgba(184,133,88,.32);
}


.rps-button i {

    transition:
        transform .3s ease;
}


.rps-button:hover i {

    transform:
        translateX(6px);
}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.rps-visual {

    min-height: 610px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* soft background behind image */

.rps-image-backdrop {

    position: absolute;

    width: 82%;

    height: 75%;

    border-radius: 34px;

    background:
        linear-gradient(
            135deg,
            rgba(19,40,85,.06),
            rgba(201,162,91,.08)
        );

    transform:
        rotate(-3deg);

    z-index: 1;
}


/* =========================================================
   ACTUAL IMAGE
========================================================= */

.rps-image {

    width:
        min(
            100%,
            780px
        );

    height: auto;

    display: block;

    position: relative;

    z-index: 4;

    object-fit: contain;

    filter:
        drop-shadow(
            0 30px 28px
            rgba(13,28,69,.17)
        );

    animation:
        rpsImageFloat
        6s ease-in-out
        infinite;
}


@keyframes rpsImageFloat {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-10px);

    }

}


/* =========================================================
   FLOATING LABELS
========================================================= */

.rps-float {

    position: absolute;

    z-index: 7;

    min-height: 52px;

    padding:
        9px 15px
        9px 9px;

    display: flex;

    align-items: center;

    gap: 10px;

    border-radius: 15px;

    background:
        rgba(255,255,255,.90);

    border:
        1px solid
        rgba(19,40,85,.09);

    backdrop-filter:
        blur(12px);

    box-shadow:
        0 17px 38px
        rgba(13,28,69,.11);

    color:
        var(--rps-dark);

    font-size: 12px;

    font-weight: 700;
}


.rps-float i {

    width: 35px;

    height: 35px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background:
        rgba(201,162,91,.10);

    color:
        var(--rps-gold);
}


.rps-float-top {

    top: 80px;

    right: 20px;
}


.rps-float-bottom {

    left: 20px;

    bottom: 90px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .rps-container {

        grid-template-columns:
            1fr;

        gap: 55px;
    }


    .rps-content {

        max-width: 760px;

        margin: auto;

        text-align: center;
    }


    .rps-kicker {

        justify-content: center;
    }


    .rps-content h2 {

        margin:
            0 auto;
    }


    .rps-description {

        margin-left: auto;

        margin-right: auto;
    }


    .rps-point {

        max-width: 520px;

        margin: auto;

        text-align: left;
    }


    .rps-visual {

        min-height: auto;

        max-width: 850px;

        margin: auto;

        padding:
            30px 30px;
    }

}


@media (max-width: 650px) {

    .report-preview-simple {

        padding:
            65px 16px;
    }


    .rps-kicker {

        gap: 8px;
    }


    .rps-kicker span {

        width: 25px;
    }


    .rps-kicker p {

        font-size: 9px;

        letter-spacing: 1px;
    }


    .rps-content h2 {

        font-size:
            clamp(
                38px,
                11vw,
                48px
            );

        letter-spacing:
            -1.7px;
    }


    .rps-description {

        font-size: 14px;

        line-height: 1.7;
    }


    .rps-point {

        grid-template-columns:
            55px 1fr;

        gap: 14px;
    }


    .rps-point-icon {

        width: 52px;

        height: 52px;

        font-size: 20px;
    }


    .rps-button {

        width: 100%;

        min-width: 0;
    }


    .rps-float {

        display: none;
    }


    .rps-visual {

        padding:
            15px 0;
    }

}

/* =========================================================
   DARK WHY AGENCIES LOVE SECTION
========================================================= */

.agency-love-dark {

    --ald-navy: #132855;
    --ald-dark: #0D1C45;
    --ald-gold: #C9A25B;
    --ald-oak: #B88558;
    --ald-ivory: #F8F7F4;
    --ald-beige: #E7E1D8;
    --ald-charcoal: #1E1E1E;

    position: relative;
    overflow: hidden;
    isolation: isolate;

    padding: 60px 24px 60px;

    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(19,40,85,.95),
            rgba(13,28,69,.45) 42%,
            transparent 70%
        ),
        linear-gradient(
            135deg,
            #09152f 0%,
            #0D1C45 50%,
            #091832 100%
        );
}


/* =========================================================
   GRID
========================================================= */

.ald-grid {

    position: absolute;
    inset: 0;

    z-index: -8;

    opacity: .32;

    background-image:
        linear-gradient(
            rgba(201,162,91,.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(201,162,91,.08) 1px,
            transparent 1px
        );

    background-size: 72px 52px;
}


/* =========================================================
   GLOWS
========================================================= */

.ald-glow {

    position: absolute;

    border-radius: 50%;

    z-index: -7;

    pointer-events: none;
}


.ald-glow-left {

    width: 520px;
    height: 520px;

    left: -260px;
    bottom: -220px;

    background:
        radial-gradient(
            circle,
            rgba(201,162,91,.15),
            transparent 70%
        );
}


.ald-glow-right {

    width: 500px;
    height: 500px;

    right: -220px;
    top: -160px;

    background:
        radial-gradient(
            circle,
            rgba(19,40,85,.70),
            transparent 70%
        );
}


/* =========================================================
   DOTS
========================================================= */

.ald-dots {

    position: absolute;

    width: 160px;
    height: 160px;

    z-index: -5;

    background-image:
        radial-gradient(
            circle,
            rgba(201,162,91,.48) 2px,
            transparent 2.5px
        );

    background-size: 20px 20px;
}


.ald-dots-left {

    left: 18px;
    bottom: 40px;

    mask-image:
        linear-gradient(
            135deg,
            #000,
            transparent
        );

    -webkit-mask-image:
        linear-gradient(
            135deg,
            #000,
            transparent
        );
}


.ald-dots-right {

    right: 15px;
    top: 45px;

    mask-image:
        linear-gradient(
            -45deg,
            #000,
            transparent
        );

    -webkit-mask-image:
        linear-gradient(
            -45deg,
            #000,
            transparent
        );
}


/* =========================================================
   CONTAINER
========================================================= */

.ald-container {

    width: min(1320px, 100%);

    margin: auto;

    position: relative;

    z-index: 3;
}


/* =========================================================
   HEADER
========================================================= */

.ald-header {

    max-width: 950px;

    margin: 0 auto 58px;

    text-align: center;
}


/* eyebrow */

.ald-eyebrow {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    margin-bottom: 25px;
}


.ald-eyebrow span {

    width: 42px;

    border-top:
        2px dashed
        rgba(201,162,91,.85);
}


.ald-eyebrow p {

    margin: 0;

    color:
        var(--ald-gold);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


/* heading */

.ald-header h2 {

    margin: 0;

    color:
        var(--ald-ivory);

    font-size:
        clamp(
            48px,
            5vw,
            55px
        );

    line-height: 1.02;

    letter-spacing: -3px;

    font-weight: 800;
}


.ald-header h2 span {

    display: block;

    color:
        var(--ald-gold);
}


/* subtitle */

.ald-subtitle {

    max-width: 720px;

    margin:
        24px auto 0;

    color:
        rgba(248,247,244,.67);

    font-size: 16px;

    line-height: 1.7;
}


/* divider */

.ald-divider {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    margin-top: 27px;
}


.ald-divider span {

    width: 75px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--ald-gold)
        );
}


.ald-divider span:last-child {

    background:
        linear-gradient(
            90deg,
            var(--ald-gold),
            transparent
        );
}


.ald-divider i {

    width: 12px;
    height: 12px;

    display: block;

    transform: rotate(45deg);

    background:
        var(--ald-gold);

    box-shadow:
        0 0 15px
        rgba(201,162,91,.55);
}


/* =========================================================
   CARDS GRID
========================================================= */

.ald-cards {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

    align-items: stretch;
}


/* =========================================================
   CARD
========================================================= */

.ald-card {

    min-height: 430px;

    position: relative;

    overflow: hidden;

    padding:
        42px 32px 35px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    border-radius: 24px;

    border:
        1px solid
        rgba(201,162,91,.22);

    background:
        linear-gradient(
            145deg,
            rgba(19,40,85,.93),
            rgba(8,23,53,.96)
        );

    box-shadow:
        0 25px 60px
        rgba(0,0,0,.20);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}


/* soft top glow */

.ald-card::before {

    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    top: -150px;

    left: 50%;

    transform:
        translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(201,162,91,.15),
            transparent 70%
        );

    pointer-events: none;
}


/* grid texture inside card */

.ald-card::after {

    content: "";

    position: absolute;

    inset: 0;

    opacity: .18;

    background-image:
        linear-gradient(
            rgba(255,255,255,.03) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.03) 1px,
            transparent 1px
        );

    background-size:
        36px 36px;

    pointer-events: none;
}


/* featured middle card */

.ald-card-featured {

    transform:
        translateY(-12px);

    border-color:
        rgba(201,162,91,.48);

    box-shadow:
        0 30px 70px
        rgba(0,0,0,.27),
        0 0 35px
        rgba(201,162,91,.06);
}


/* hover */

.ald-card:hover {

    transform:
        translateY(-9px);

    border-color:
        rgba(201,162,91,.62);

    box-shadow:
        0 32px 70px
        rgba(0,0,0,.27);
}


.ald-card-featured:hover {

    transform:
        translateY(-18px);
}


/* =========================================================
   NUMBER
========================================================= */

.ald-card-number {

    position: absolute;

    right: 20px;

    top: 17px;

    color:
        rgba(201,162,91,.42);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

    z-index: 3;
}


/* =========================================================
   ICON ORBIT
========================================================= */

.ald-icon-orbit {

    width: 135px;

    height: 135px;

    position: relative;

    display: grid;

    place-items: center;

    margin-bottom: 19px;

    z-index: 3;
}


.ald-orbit-ring {

    position: absolute;

    inset: 0;

    border-radius: 50%;

    border:
        1px dashed
        rgba(201,162,91,.50);

    animation:
        aldOrbitRotate
        16s linear
        infinite;
}


.ald-orbit-ring::before {

    content: "";

    position: absolute;

    width: 7px;
    height: 7px;

    top: -4px;
    left: 50%;

    transform:
        translateX(-50%);

    border-radius: 50%;

    background:
        var(--ald-gold);

    box-shadow:
        0 0 12px
        rgba(201,162,91,.75);
}


@keyframes aldOrbitRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


/* icon */

.ald-icon {

    width: 92px;
    height: 92px;

    position: relative;

    z-index: 2;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color:
        var(--ald-gold);

    font-size: 37px;

    background:
        linear-gradient(
            145deg,
            rgba(19,40,85,.96),
            rgba(13,28,69,.98)
        );

    border:
        1px solid
        rgba(201,162,91,.45);

    box-shadow:
        inset 0 0 25px
        rgba(201,162,91,.08),
        0 15px 30px
        rgba(0,0,0,.22);

    transition:
        transform .35s ease;
}


.ald-card:hover .ald-icon {

    transform:
        scale(1.07);
}


/* =========================================================
   CARD LINE
========================================================= */

.ald-card-line {

    width: 42px;

    height: 2px;

    margin:
        2px 0 28px;

    position: relative;

    z-index: 3;

    background:
        var(--ald-gold);

    box-shadow:
        0 0 10px
        rgba(201,162,91,.25);
}


/* =========================================================
   TEXT
========================================================= */

.ald-card h3 {

    margin:
        0 0 18px;

    position: relative;

    z-index: 3;

    color:
        var(--ald-ivory);

    font-size: 23px;

    line-height: 1.2;

    font-weight: 700;
}


.ald-card p {

    max-width: 340px;

    margin: 0;

    position: relative;

    z-index: 3;

    color:
        rgba(248,247,244,.67);

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================================
   CARD FOOTER
========================================================= */

.ald-card-footer {

    width: 100%;

    margin-top: auto;

    padding-top: 28px;

    position: relative;

    z-index: 3;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    color:
        var(--ald-gold);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .4px;
}


.ald-card-footer i {

    font-size: 11px;

    transition:
        transform .3s ease;
}


.ald-card:hover
.ald-card-footer i {

    transform:
        translateX(5px);
}


/* =========================================================
   BOTTOM ACCENT
========================================================= */

.ald-bottom-accent {

    position: absolute;

    left: 50%;

    bottom: 0;

    width: 130px;

    height: 6px;

    transform:
        translateX(-50%);

    border-radius:
        8px 8px 0 0;

    background:
        linear-gradient(
            90deg,
            var(--ald-oak),
            var(--ald-gold),
            var(--ald-oak)
        );

    box-shadow:
        0 -3px 18px
        rgba(201,162,91,.25);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .ald-cards {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .ald-card-featured {

        transform: none;
    }


    .ald-card:last-child {

        grid-column:
            1 / -1;

        width: 50%;

        justify-self: center;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .agency-love-dark {

        padding:
            70px 16px
            75px;
    }


    .ald-header {

        margin-bottom:
            40px;
    }


    .ald-eyebrow {

        gap: 8px;
    }


    .ald-eyebrow span {

        width: 24px;
    }


    .ald-eyebrow p {

        font-size: 9px;

        letter-spacing: 1px;
    }


    .ald-header h2 {

        font-size:
            clamp(
                38px,
                11vw,
                50px
            );

        letter-spacing:
            -1.7px;
    }


    .ald-subtitle {

        font-size: 14px;
    }


    .ald-cards {

        grid-template-columns:
            1fr;
    }


    .ald-card,
    .ald-card:last-child {

        width: 100%;

        min-height: 400px;

        grid-column: auto;

        padding:
            38px 24px
            34px;
    }


    .ald-icon-orbit {

        width: 120px;

        height: 120px;
    }


    .ald-icon {

        width: 82px;

        height: 82px;

        font-size: 32px;
    }


    .ald-card h3 {

        font-size: 20px;
    }


    .ald-card p {

        font-size: 14px;
    }

}

/* =========================================================
   WHAT'S INCLUDED SECTION
========================================================= */

.included-section {

    --inc-navy: #132855;
    --inc-dark: #0D1C45;
    --inc-gold: #C9A25B;
    --inc-oak: #B88558;
    --inc-ivory: #F8F7F4;
    --inc-beige: #E7E1D8;
    --inc-charcoal: #1E1E1E;

    position: relative;
    overflow: hidden;
    isolation: isolate;

    padding: 60px 24px 60px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #F8F7F4 54%,
            #f3eee6 100%
        );
}


/* =========================================================
   BACKGROUND GRID
========================================================= */

.included-bg-grid {

    position: absolute;
    inset: 0;

    z-index: -10;

    opacity: .60;

    background-image:

        linear-gradient(
            rgba(19,40,85,.04) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(19,40,85,.04) 1px,
            transparent 1px
        );

    background-size: 58px 46px;
}


/* =========================================================
   DOT DECORATION
========================================================= */

.included-dots {

    position: absolute;

    width: 150px;
    height: 170px;

    z-index: -5;

    background-image:
        radial-gradient(
            circle,
            rgba(201,162,91,.52) 2px,
            transparent 2.5px
        );

    background-size: 19px 19px;
}


.included-dots-top {

    top: 20px;
    right: 25px;

    mask-image:
        linear-gradient(
            -45deg,
            #000,
            transparent
        );

    -webkit-mask-image:
        linear-gradient(
            -45deg,
            #000,
            transparent
        );
}


.included-dots-bottom {

    bottom: 15px;
    left: 0;

    mask-image:
        linear-gradient(
            135deg,
            #000,
            transparent
        );

    -webkit-mask-image:
        linear-gradient(
            135deg,
            #000,
            transparent
        );
}


/* =========================================================
   GLOWS
========================================================= */

.included-glow {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    z-index: -8;
}


.included-glow-left {

    width: 500px;
    height: 500px;

    left: -260px;
    bottom: -230px;

    background:
        radial-gradient(
            circle,
            rgba(201,162,91,.13),
            transparent 70%
        );
}


.included-glow-right {

    width: 470px;
    height: 470px;

    right: -230px;
    top: 20px;

    background:
        radial-gradient(
            circle,
            rgba(19,40,85,.06),
            transparent 70%
        );
}


/* =========================================================
   CONTAINER
========================================================= */

.included-container {

    width: min(1380px, 100%);

    margin: auto;

    position: relative;

    z-index: 5;
}


/* =========================================================
   HEADER
========================================================= */

.included-header {

    max-width: 650px;

    margin-bottom: 42px;
}


/* kicker */

.included-kicker {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 26px;
}


.included-kicker > span {

    width: 44px;

    border-top:
        2px dashed
        var(--inc-gold);
}


.included-kicker p {

    margin: 0;

    color:
        var(--inc-oak);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}


/* heading */

.included-header h2 {

    margin: 0;

    color:
        var(--inc-dark);

    font-size:
        clamp(
            52px,
            3.8vw,
            78px
        );

    line-height: .98;

    letter-spacing: -3.3px;

    font-weight: 800;
}


.included-header h2 span {

    color:
        var(--inc-gold);
}


/* subtitle */

.included-header > p {

    max-width: 500px;

    margin:
        24px 0
        0;

    color:
        #687487;

    font-size: 17px;

    line-height: 1.65;
}


/* decorative line */

.included-header-line {

    width: 290px;

    height: 16px;

    margin-top: 18px;

    position: relative;

    display: flex;

    align-items: center;
}


.included-header-line > span {

    width: 100%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--inc-gold),
            rgba(201,162,91,.1)
        );
}


.included-header-line i {

    width: 9px;
    height: 9px;

    position: absolute;

    right: 0;

    transform:
        rotate(45deg);

    background:
        var(--inc-gold);
}


/* =========================================================
   MAIN GRID
========================================================= */

.included-main-grid {

    display: grid;

    grid-template-columns:
        minmax(520px, 1.45fr)
        minmax(300px, .82fr)
        minmax(300px, .82fr);

    gap: 18px;

    align-items: stretch;
}


/* =========================================================
   ANALYTICS CARD
========================================================= */

.included-analytics-card {

    min-height: 500px;

    position: relative;

    overflow: hidden;

    padding: 43px 34px 42px;

    border-radius: 24px;

    border:
        1px solid
        rgba(201,162,91,.20);

    background:
        rgba(255,255,255,.83);

    backdrop-filter:
        blur(10px);

    -webkit-backdrop-filter:
        blur(10px);

    box-shadow:
        0 24px 58px
        rgba(13,28,69,.08);
}


/* subtle light effect */

.included-analytics-card::before {

    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    left: -100px;
    top: -130px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(201,162,91,.11),
            transparent 70%
        );

    pointer-events: none;
}


/* =========================================================
   PROGRESS BARS
========================================================= */

.included-progress-group {

    margin-bottom: 40px;

    position: relative;

    z-index: 3;
}


.included-progress {

    width: 100%;

    height: 15px;

    margin-bottom: 20px;

    overflow: hidden;

    border-radius: 30px;

    background:
        rgba(19,40,85,.07);
}


.included-progress span {

    display: block;

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            var(--inc-navy),
            var(--inc-oak),
            var(--inc-gold)
        );
}


/* =========================================================
   METRICS
========================================================= */

.included-metrics {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 16px;

    position: relative;

    z-index: 3;
}


.included-metric {

    min-height: 140px;

    padding: 22px 24px;

    display: flex;

    align-items: center;

    gap: 20px;

    border-radius: 15px;

    border:
        1px solid
        rgba(201,162,91,.22);

    background:
        rgba(255,255,255,.78);

    box-shadow:
        0 8px 24px
        rgba(13,28,69,.035);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


.included-metric:hover {

    transform:
        translateY(-4px);

    border-color:
        rgba(201,162,91,.48);

    box-shadow:
        0 14px 30px
        rgba(13,28,69,.08);
}


/* icon */

.included-metric-icon {

    width: 62px;
    height: 62px;

    flex: 0 0 62px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color:
        var(--inc-gold);

    font-size: 23px;

    border:
        1px solid
        rgba(201,162,91,.48);

    background:
        rgba(201,162,91,.04);
}


/* text */

.included-metric-text {

    display: flex;

    flex-direction: column;

    gap: 8px;
}


.included-metric-text strong {

    color:
        var(--inc-gold);

    font-size: 36px;

    line-height: 1;

    font-weight: 800;
}


.included-metric-text span {

    color:
        var(--inc-dark);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .4px;
}


/* bottom edge */

.included-card-accent {

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 8px;

    background:
        linear-gradient(
            90deg,
            var(--inc-gold),
            var(--inc-oak),
            var(--inc-gold)
        );
}


/* =========================================================
   CHECKLIST CARDS
========================================================= */

.included-list-card {

    min-height: 500px;

    padding:
        42px 32px;

    border-radius: 24px;

    border:
        1px solid
        rgba(201,162,91,.18);

    background:
        rgba(255,255,255,.82);

    backdrop-filter:
        blur(10px);

    -webkit-backdrop-filter:
        blur(10px);

    box-shadow:
        0 24px 58px
        rgba(13,28,69,.07);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


.included-list-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        0 30px 68px
        rgba(13,28,69,.10);
}


/* =========================================================
   LIST
========================================================= */

.included-list-card ul {

    list-style: none;

    margin: 0;

    padding: 0;

    display: flex;

    flex-direction: column;

    gap: 27px;
}


.included-list-card li {

    display: grid;

    grid-template-columns:
        36px 1fr;

    gap: 15px;

    align-items: center;

    color:
        var(--inc-dark);

    font-size: 16px;

    line-height: 1.3;

    font-weight: 600;
}


/* check icon */

.included-list-card li > span {

    width: 34px;
    height: 34px;

    display: grid;

    place-items: center;

    border-radius: 8px;

    color:
        var(--inc-gold);

    border:
        1px solid
        rgba(201,162,91,.48);

    background:
        rgba(201,162,91,.05);

    transition:
        transform .25s ease,
        background .25s ease;
}


.included-list-card li:hover > span {

    transform:
        scale(1.07);

    background:
        rgba(201,162,91,.10);
}


.included-list-card li i {

    font-size: 13px;
}


/* =========================================================
   BOTTOM DIVIDER
========================================================= */

.included-bottom-divider {

    max-width: 720px;

    margin:
        65px auto 0;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 11px;
}


.included-bottom-divider > span:not(.included-dashed) {

    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--inc-gold)
        );
}


.included-bottom-divider > span:last-child {

    background:
        linear-gradient(
            90deg,
            var(--inc-gold),
            transparent
        );
}


.included-dashed {

    width: 75px;

    border-top:
        1px dashed
        var(--inc-gold);
}


.included-bottom-divider i {

    width: 17px;
    height: 17px;

    flex: 0 0 17px;

    transform:
        rotate(45deg);

    background:
        var(--inc-gold);
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .included-main-grid {

        grid-template-columns:
            1.2fr .8fr .8fr;
    }


    .included-analytics-card {

        padding:
            36px 28px;
    }


    .included-list-card {

        padding:
            36px 25px;
    }


    .included-list-card li {

        font-size: 14px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 980px) {

    .included-main-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .included-analytics-card {

        grid-column:
            1 / -1;

        min-height: auto;
    }


    .included-list-card {

        min-height: auto;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 680px) {

    .included-section {

        padding:
            65px 16px
            50px;
    }


    .included-header {

        margin-bottom: 34px;
    }


    .included-kicker {

        gap: 8px;
    }


    .included-kicker > span {

        width: 26px;
    }


    .included-kicker p {

        font-size: 9px;

        letter-spacing: .8px;
    }


    .included-header h2 {

        font-size:
            clamp(
                42px,
                13vw,
                58px
            );

        letter-spacing:
            -2px;
    }


    .included-header > p {

        font-size: 14px;
    }


    .included-main-grid {

        grid-template-columns:
            1fr;
    }


    .included-analytics-card {

        grid-column: auto;

        padding:
            28px 20px
            32px;
    }


    .included-metrics {

        grid-template-columns:
            1fr;
    }


    .included-metric {

        min-height: 105px;

        padding:
            18px;
    }


    .included-metric-icon {

        width: 54px;
        height: 54px;

        flex-basis: 54px;

        font-size: 20px;
    }


    .included-metric-text strong {

        font-size: 29px;
    }


    .included-list-card {

        padding:
            28px 22px;
    }


    .included-list-card ul {

        gap: 21px;
    }


    .included-list-card li {

        font-size: 14px;
    }


    .included-bottom-divider {

        margin-top: 45px;
    }

}

/* =========================================================
   REPORTING KIT DIFFERENCE SECTION
========================================================= */

.report-difference-section {

    --rds-navy: #132855;
    --rds-dark: #0D1C45;
    --rds-gold: #C9A25B;
    --rds-oak: #B88558;
    --rds-ivory: #F8F7F4;
    --rds-beige: #E7E1D8;
    --rds-charcoal: #1E1E1E;

    position: relative;
    overflow: hidden;
    isolation: isolate;

    padding: 60px 24px 60px;

    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(19,40,85,.92),
            rgba(13,28,69,.60) 42%,
            transparent 72%
        ),
        linear-gradient(
            135deg,
            #09162f 0%,
            #0D1C45 52%,
            #081630 100%
        );
}


/* =========================================================
   SUBTLE RECTANGULAR GRID
========================================================= */

.rds-grid {

    position: absolute;
    inset: 0;

    z-index: -10;

    opacity: .34;

    background-image:

        linear-gradient(
            rgba(201,162,91,.07) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(201,162,91,.07) 1px,
            transparent 1px
        );

    background-size:
        72px 52px;
}


/* =========================================================
   GLOWS
========================================================= */

.rds-glow {

    position: absolute;

    border-radius: 50%;

    z-index: -8;

    pointer-events: none;
}


.rds-glow-left {

    width: 520px;
    height: 520px;

    left: -300px;
    bottom: -240px;

    background:
        radial-gradient(
            circle,
            rgba(201,162,91,.13),
            transparent 70%
        );
}


.rds-glow-right {

    width: 520px;
    height: 520px;

    right: -280px;
    top: -80px;

    background:
        radial-gradient(
            circle,
            rgba(19,40,85,.65),
            transparent 70%
        );
}


/* =========================================================
   DOT DECORATION
========================================================= */

.rds-dots {

    position: absolute;

    width: 165px;
    height: 165px;

    z-index: -5;

    background-image:
        radial-gradient(
            circle,
            rgba(201,162,91,.55) 2px,
            transparent 2.5px
        );

    background-size: 20px 20px;
}


.rds-dots-top {

    top: 8px;
    right: 20px;

    -webkit-mask-image:
        linear-gradient(
            -45deg,
            #000,
            transparent
        );

    mask-image:
        linear-gradient(
            -45deg,
            #000,
            transparent
        );
}


.rds-dots-bottom {

    left: 0;
    bottom: 0;

    -webkit-mask-image:
        linear-gradient(
            135deg,
            #000,
            transparent
        );

    mask-image:
        linear-gradient(
            135deg,
            #000,
            transparent
        );
}


/* =========================================================
   CONTAINER
========================================================= */

.rds-container {

    width: min(1320px, 100%);

    margin: 0 auto;

    position: relative;

    z-index: 4;
}


/* =========================================================
   HEADER
========================================================= */

.rds-header {

    max-width: 1160px;

    margin: 0 auto 46px;

    text-align: center;
}


/* kicker */

.rds-kicker {

    display: flex;

    align-items: center;

    justify-content: flex-start;

    gap: 14px;

    margin-bottom: 28px;
}


.rds-kicker > span {

    width: 50px;

    border-top:
        2px dashed
        var(--rds-gold);
}


.rds-kicker p {

    margin: 0;

    color:
        var(--rds-gold);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.7px;

    text-transform: uppercase;
}


/* heading */

.rds-header h2 {

    margin: 0;

    color:
        var(--rds-ivory);

    font-size:
        clamp(
            48px,
            5vw,
            55px
        );

    line-height: 1.04;

    letter-spacing: -3px;

    font-weight: 800;
}


.rds-header h2 span {

    color:
        var(--rds-gold);
}


/* divider */

.rds-title-divider {

    margin-top: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;
}


.rds-title-divider span {

    width: 170px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--rds-gold)
        );
}


.rds-title-divider span:last-child {

    background:
        linear-gradient(
            90deg,
            var(--rds-gold),
            transparent
        );
}


.rds-title-divider i {

    width: 17px;
    height: 17px;

    display: block;

    transform:
        rotate(45deg);

    background:
        var(--rds-gold);

    box-shadow:
        0 0 15px
        rgba(201,162,91,.40);
}


/* =========================================================
   TABLE WRAPPER
========================================================= */

.rds-table {

    overflow: hidden;

    border-radius: 24px;

    border:
        1px solid
        rgba(201,162,91,.24);

    background:
        rgba(8,21,47,.58);

    box-shadow:
        0 30px 70px
        rgba(0,0,0,.28),
        inset 0 1px 0
        rgba(255,255,255,.02);

    backdrop-filter:
        blur(12px);

    -webkit-backdrop-filter:
        blur(12px);
}


/* =========================================================
   TABLE HEADER
========================================================= */

.rds-table-head {

    display: grid;

    grid-template-columns:
        1fr 1.1fr;

    min-height: 98px;

    border-bottom:
        1px solid
        rgba(231,225,216,.18);

    background:
        linear-gradient(
            90deg,
            rgba(19,40,85,.82),
            rgba(13,28,69,.74)
        );
}


.rds-head-cell {

    display: flex;

    align-items: center;

    gap: 22px;

    padding:
        25px 40px;
}


.rds-head-left {

    border-right:
        1px solid
        rgba(231,225,216,.18);
}


.rds-head-cell > span {

    color:
        var(--rds-ivory);

    font-size: 19px;

    font-weight: 800;

    letter-spacing: .7px;
}


.rds-head-right > span {

    color:
        var(--rds-gold);
}


/* =========================================================
   HEADER ICONS
========================================================= */

.rds-head-icon {

    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    font-size: 17px;
}


.rds-head-icon-x {

    color:
        var(--rds-gold);

    border:
        2px solid
        var(--rds-gold);
}


.rds-head-icon-check {

    color:
        var(--rds-dark);

    background:
        var(--rds-gold);

    box-shadow:
        0 0 18px
        rgba(201,162,91,.35);
}


/* =========================================================
   ROW
========================================================= */

.rds-row {

    min-height: 80px;

    display: grid;

    grid-template-columns:
        1fr 1.1fr;

    border-bottom:
        1px solid
        rgba(231,225,216,.14);
}


.rds-row:last-child {

    border-bottom: none;
}


/* =========================================================
   CELLS
========================================================= */

.rds-cell {

    display: flex;

    align-items: center;

    gap: 20px;

    padding:
        18px 40px;

    transition:
        background .3s ease;
}


.rds-cell-left {

    border-right:
        1px solid
        rgba(231,225,216,.14);
}


.rds-cell-right {

    background:
        rgba(19,40,85,.08);
}


.rds-row:hover
.rds-cell {

    background:
        rgba(201,162,91,.035);
}


/* text */

.rds-cell p {

    margin: 0;

    color:
        rgba(248,247,244,.90);

    font-size: 17px;

    line-height: 1.35;
}


.rds-cell-left p {

    color:
        rgba(231,225,216,.78);
}


/* =========================================================
   ROW ICON
========================================================= */

.rds-row-icon {

    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    font-size: 14px;
}


/* generic */

.rds-x-icon {

    color:
        rgba(231,225,216,.60);

    border:
        1px solid
        rgba(231,225,216,.45);
}


/* premium */

.rds-check-icon {

    color:
        var(--rds-gold);

    border:
        2px solid
        var(--rds-gold);

    box-shadow:
        inset 0 0 15px
        rgba(201,162,91,.04);
}


/* =========================================================
   RIGHT COLUMN SUBTLE HIGHLIGHT
========================================================= */

.rds-table::after {

    content: "";

    position: absolute;

    pointer-events: none;
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1100px) {

    .rds-head-cell,
    .rds-cell {

        padding-left: 28px;

        padding-right: 28px;
    }


    .rds-head-cell > span {

        font-size: 16px;
    }


    .rds-cell p {

        font-size: 15px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    .report-difference-section {

        padding:
            75px 20px;
    }


    .rds-header {

        text-align: left;
    }


    .rds-title-divider {

        justify-content: flex-start;
    }


    .rds-title-divider span {

        width: 90px;
    }


    .rds-table-head,
    .rds-row {

        grid-template-columns:
            1fr;
    }


    .rds-head-left,
    .rds-cell-left {

        border-right: none;

        border-bottom:
            1px solid
            rgba(231,225,216,.13);
    }


    .rds-row {

        margin-bottom: 1px;
    }


    .rds-cell {

        min-height: 70px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 580px) {

    .report-difference-section {

        padding:
            60px 15px;
    }


    .rds-kicker {

        gap: 8px;
    }


    .rds-kicker > span {

        width: 24px;
    }


    .rds-kicker p {

        font-size: 9px;

        letter-spacing: .8px;
    }


    .rds-header h2 {

        font-size:
            clamp(
                38px,
                11vw,
                50px
            );

        letter-spacing:
            -1.7px;
    }


    .rds-title-divider {

        margin-top: 22px;
    }


    .rds-title-divider span {

        width: 60px;
    }


    .rds-table {

        border-radius: 18px;
    }


    .rds-head-cell {

        min-height: 78px;

        padding:
            18px;
    }


    .rds-head-cell > span {

        font-size: 13px;
    }


    .rds-head-icon {

        width: 35px;
        height: 35px;

        flex-basis: 35px;
    }


    .rds-cell {

        padding:
            16px 18px;
    }


    .rds-cell p {

        font-size: 14px;
    }


    .rds-row-icon {

        width: 32px;
        height: 32px;

        flex-basis: 32px;

        font-size: 11px;
    }

}

/* =========================================================
   WHO IS THIS FOR
========================================================= */

.who-for-section {

    --wf-navy: #132855;
    --wf-dark: #0D1C45;
    --wf-gold: #C9A25B;
    --wf-oak: #B88558;
    --wf-ivory: #F8F7F4;
    --wf-beige: #E7E1D8;
    --wf-charcoal: #1E1E1E;

    position: relative;
    overflow: hidden;
    isolation: isolate;

    padding: 55px 24px 55px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #F8F7F4 55%,
            #f3eee6 100%
        );
}


/* =========================================================
   BACKGROUND GRID
========================================================= */

.who-for-grid {

    position: absolute;
    inset: 0;
    z-index: -10;

    opacity: .6;

    background-image:
        linear-gradient(
            rgba(19,40,85,.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(19,40,85,.04) 1px,
            transparent 1px
        );

    background-size: 58px 46px;
}


/* =========================================================
   DOT DECORATIONS
========================================================= */

.who-for-dots {

    position: absolute;

    width: 170px;
    height: 170px;

    z-index: -5;

    background-image:
        radial-gradient(
            circle,
            rgba(201,162,91,.55) 2px,
            transparent 2.5px
        );

    background-size: 20px 20px;
}


.who-for-dots-top {

    top: 10px;
    right: 15px;

    mask-image:
        linear-gradient(
            -45deg,
            #000,
            transparent
        );

    -webkit-mask-image:
        linear-gradient(
            -45deg,
            #000,
            transparent
        );
}


.who-for-dots-bottom {

    bottom: 5px;
    left: 0;

    mask-image:
        linear-gradient(
            135deg,
            #000,
            transparent
        );

    -webkit-mask-image:
        linear-gradient(
            135deg,
            #000,
            transparent
        );
}


/* =========================================================
   ARC DECORATIONS
========================================================= */

.who-for-arc {

    position: absolute;

    border-radius: 50%;

    border:
        1px solid
        rgba(201,162,91,.18);

    z-index: -7;
}


.who-for-arc-left {

    width: 420px;
    height: 420px;

    left: -280px;
    top: -210px;
}


.who-for-arc-right {

    width: 500px;
    height: 500px;

    right: -320px;
    bottom: -260px;
}


/* =========================================================
   CONTAINER
========================================================= */

.who-for-container {

    width: min(1450px, 100%);

    margin: auto;

    position: relative;

    z-index: 4;
}


/* =========================================================
   HEADER
========================================================= */

.who-for-header {

    max-width: 760px;

    margin-bottom: 48px;
}


/* kicker */

.who-for-kicker {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 28px;
}


.who-for-kicker > span {

    width: 52px;

    border-top:
        2px dashed
        var(--wf-gold);
}


.who-for-kicker p {

    margin: 0;

    color:
        var(--wf-oak);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* title */

.who-for-header h2 {

    margin: 0;

    color:
        var(--wf-dark);

    font-size:
        clamp(
            54px,
            4vw,
            78px
        );

    line-height: .98;

    letter-spacing: -3px;

    font-weight: 800;
}


.who-for-header h2 span {

    color:
        var(--wf-gold);
}


/* divider */

.who-for-divider {

    width: 245px;

    height: 18px;

    margin-top: 27px;

    position: relative;

    display: flex;

    align-items: center;
}


.who-for-divider span {

    width: 100%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--wf-gold),
            rgba(201,162,91,.10)
        );
}


.who-for-divider i {

    position: absolute;

    right: 0;

    width: 10px;
    height: 10px;

    transform: rotate(45deg);

    background:
        var(--wf-gold);
}


/* =========================================================
   PILL GRID
========================================================= */

.who-for-pills {

    display: flex;

    flex-wrap: wrap;

    gap: 18px 15px;

    align-items: center;
}


/* =========================================================
   SINGLE PILL
========================================================= */

.who-for-pill {

    min-height: 70px;

    padding:
        9px 24px 9px 10px;

    display: inline-flex;

    align-items: center;

    gap: 14px;

    border-radius: 999px;

    border:
        1px solid
        rgba(201,162,91,.24);

    background:
        rgba(255,255,255,.78);

    backdrop-filter:
        blur(12px);

    -webkit-backdrop-filter:
        blur(12px);

    box-shadow:
        0 10px 28px
        rgba(13,28,69,.07);

    color:
        var(--wf-dark);

    font-size: 15px;

    font-weight: 700;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}


.who-for-pill:hover {

    transform:
        translateY(-4px);

    border-color:
        rgba(201,162,91,.55);

    box-shadow:
        0 16px 35px
        rgba(13,28,69,.11);
}


/* =========================================================
   ICON
========================================================= */

.who-for-icon {

    width: 50px;
    height: 50px;

    flex: 0 0 50px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color:
        var(--wf-gold);

    font-size: 18px;

    background:
        rgba(201,162,91,.06);

    border:
        1px solid
        rgba(201,162,91,.28);

    box-shadow:
        inset 0 0 15px
        rgba(201,162,91,.04);
}


.who-for-pill:hover
.who-for-icon {

    background:
        rgba(201,162,91,.10);
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .who-for-section {

        padding:
            95px 22px
            100px;
    }


    .who-for-pill {

        font-size: 14px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .who-for-header {

        margin-bottom: 40px;
    }


    .who-for-pills {

        gap: 14px;
    }


    .who-for-pill {

        min-height: 64px;

        padding:
            8px 20px 8px 8px;
    }


    .who-for-icon {

        width: 46px;
        height: 46px;

        flex-basis: 46px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 620px) {

    .who-for-section {

        padding:
            70px 16px
            75px;
    }


    .who-for-kicker {

        gap: 8px;
    }


    .who-for-kicker > span {

        width: 27px;
    }


    .who-for-kicker p {

        font-size: 9px;

        letter-spacing: .9px;
    }


    .who-for-header h2 {

        font-size:
            clamp(
                42px,
                13vw,
                58px
            );

        letter-spacing:
            -2px;
    }


    .who-for-divider {

        width: 180px;
    }


    .who-for-pills {

        display: grid;

        grid-template-columns:
            1fr;

        gap: 12px;
    }


    .who-for-pill {

        width: 100%;

        justify-content: flex-start;

        font-size: 14px;
    }

}

/* =========================================================
   HOW IT WORKS - DARK VERSION
========================================================= */

.howworks-dark-section {

    --hwd-navy: #132855;
    --hwd-dark: #0D1C45;
    --hwd-gold: #C9A25B;
    --hwd-oak: #B88558;
    --hwd-ivory: #F8F7F4;
    --hwd-beige: #E7E1D8;

    position: relative;
    overflow: hidden;
    isolation: isolate;

    padding: 60px 24px 60px;

    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(19, 40, 85, .92),
            rgba(13, 28, 69, .55) 42%,
            transparent 72%
        ),
        linear-gradient(
            135deg,
            #09162f 0%,
            #0D1C45 52%,
            #08162f 100%
        );
}


/* =========================================================
   GRID
========================================================= */

.hwd-grid {

    position: absolute;
    inset: 0;

    z-index: -10;

    opacity: .32;

    background-image:
        linear-gradient(
            rgba(201, 162, 91, .07) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(201, 162, 91, .07) 1px,
            transparent 1px
        );

    background-size: 70px 52px;
}


/* =========================================================
   GLOW
========================================================= */

.hwd-glow {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    z-index: -8;
}


.hwd-glow-left {

    width: 500px;
    height: 500px;

    left: -250px;
    bottom: -220px;

    background:
        radial-gradient(
            circle,
            rgba(201, 162, 91, .13),
            transparent 70%
        );
}


.hwd-glow-right {

    width: 500px;
    height: 500px;

    right: -220px;
    top: -160px;

    background:
        radial-gradient(
            circle,
            rgba(19, 40, 85, .70),
            transparent 70%
        );
}


/* =========================================================
   DOTS
========================================================= */

.hwd-dots {

    position: absolute;

    width: 160px;
    height: 160px;

    z-index: -6;

    background-image:
        radial-gradient(
            circle,
            rgba(201, 162, 91, .55) 2px,
            transparent 2.5px
        );

    background-size: 20px 20px;
}


.hwd-dots-top {

    top: 10px;
    right: 20px;

    -webkit-mask-image:
        linear-gradient(
            -45deg,
            #000,
            transparent
        );

    mask-image:
        linear-gradient(
            -45deg,
            #000,
            transparent
        );
}


.hwd-dots-bottom {

    left: 0;
    bottom: 0;

    -webkit-mask-image:
        linear-gradient(
            135deg,
            #000,
            transparent
        );

    mask-image:
        linear-gradient(
            135deg,
            #000,
            transparent
        );
}


/* =========================================================
   CONTAINER
========================================================= */

.hwd-container {

    width: min(1450px, 100%);

    margin: auto;

    position: relative;

    z-index: 5;
}


/* =========================================================
   HEADER
========================================================= */

.hwd-header {

    max-width: 1050px;

    margin: 0 auto 70px;

    text-align: center;
}


.hwd-kicker {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 14px;

    margin-bottom: 27px;
}


.hwd-kicker span {

    width: 46px;

    border-top:
        2px dashed
        var(--hwd-gold);
}


.hwd-kicker p {

    margin: 0;

    color:
        var(--hwd-gold);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.6px;

    text-transform: uppercase;
}


/* heading */

.hwd-header h2 {

    margin: 0;

    color:
        var(--hwd-ivory);

    font-size:
        clamp(48px, 4.7vw, 55px);

    line-height: 1.05;

    letter-spacing: -2.8px;

    font-weight: 800;
}


.hwd-header h2 span {

    display: block;

    margin-top: 5px;

    color:
        var(--hwd-gold);
}


/* divider */

.hwd-divider {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 14px;

    margin-top: 28px;
}


.hwd-divider span {

    width: 115px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--hwd-gold)
        );
}


.hwd-divider span:last-child {

    background:
        linear-gradient(
            90deg,
            var(--hwd-gold),
            transparent
        );
}


.hwd-divider i {

    width: 14px;
    height: 14px;

    display: block;

    transform:
        rotate(45deg);

    background:
        var(--hwd-gold);

    box-shadow:
        0 0 16px
        rgba(201, 162, 91, .45);
}


/* =========================================================
   STEPS LAYOUT
========================================================= */

.hwd-steps {

    display: grid;

    grid-template-columns:
        1fr 110px
        1fr 110px
        1fr 110px
        1fr;

    align-items: start;

    gap: 0;
}


/* =========================================================
   STEP
========================================================= */

.hwd-step {

    position: relative;

    min-width: 0;

    text-align: center;
}


/* =========================================================
   TOP ICON AREA
========================================================= */

.hwd-step-top {

    position: relative;

    width: 165px;

    margin: 0 auto -18px;

    z-index: 5;
}


/* number badge */

.hwd-number {

    width: 46px;
    height: 46px;

    position: absolute;

    left: 50%;
    top: -23px;

    transform:
        translateX(-50%);

    display: grid;

    place-items: center;

    z-index: 5;

    border-radius: 50%;

    color:
        var(--hwd-dark);

    font-size: 14px;

    font-weight: 800;

    background:
        linear-gradient(
            135deg,
            var(--hwd-gold),
            var(--hwd-oak)
        );

    box-shadow:
        0 8px 22px
        rgba(201, 162, 91, .24);
}


/* orbit */

.hwd-icon-orbit {

    width: 165px;
    height: 165px;

    position: relative;

    display: grid;

    place-items: center;

    border-radius: 50%;

    border:
        1px solid
        rgba(201, 162, 91, .45);

    background:
        radial-gradient(
            circle,
            rgba(201, 162, 91, .08),
            rgba(19, 40, 85, .20) 62%,
            transparent 70%
        );

    box-shadow:
        0 20px 45px
        rgba(0, 0, 0, .20);
}


.hwd-icon-orbit::before {

    content: "";

    position: absolute;

    inset: 10px;

    border-radius: 50%;

    border:
        1px dashed
        rgba(201, 162, 91, .26);
}


/* icon circle */

.hwd-icon {

    width: 108px;
    height: 108px;

    display: grid;

    place-items: center;

    position: relative;

    z-index: 2;

    border-radius: 50%;

    color:
        var(--hwd-gold);

    font-size: 38px;

    border:
        1px solid
        rgba(201, 162, 91, .48);

    background:
        linear-gradient(
            145deg,
            rgba(19, 40, 85, .96),
            rgba(13, 28, 69, .98)
        );

    box-shadow:
        inset 0 0 28px
        rgba(201, 162, 91, .06),
        0 14px 28px
        rgba(0, 0, 0, .22);

    transition:
        transform .35s ease;
}


.hwd-step:hover
.hwd-icon {

    transform:
        scale(1.06)
        rotate(-4deg);
}


/* =========================================================
   CONTENT CARD
========================================================= */

.hwd-step-card {

    min-height: 245px;

    padding:
        56px 26px 32px;

    position: relative;

    overflow: hidden;

    border-radius: 22px;

    border:
        1px solid
        rgba(201, 162, 91, .20);

    background:
        linear-gradient(
            145deg,
            rgba(19, 40, 85, .78),
            rgba(8, 22, 49, .88)
        );

    box-shadow:
        0 22px 55px
        rgba(0, 0, 0, .18);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}


.hwd-step-card::before {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    left: 50%;
    top: -100px;

    transform:
        translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(201, 162, 91, .09),
            transparent 70%
        );
}


.hwd-step:hover
.hwd-step-card {

    transform:
        translateY(-6px);

    border-color:
        rgba(201, 162, 91, .55);

    box-shadow:
        0 28px 65px
        rgba(0, 0, 0, .25);
}


/* heading */

.hwd-step-card h3 {

    margin:
        0 0 16px;

    position: relative;

    z-index: 2;

    color:
        var(--hwd-ivory);

    font-size: 20px;

    line-height: 1.25;

    font-weight: 700;
}


/* line */

.hwd-small-line {

    width: 42px;
    height: 2px;

    display: block;

    margin:
        0 auto 18px;

    position: relative;

    z-index: 2;

    background:
        var(--hwd-gold);
}


/* text */

.hwd-step-card p {

    max-width: 260px;

    margin: auto;

    position: relative;

    z-index: 2;

    color:
        rgba(248, 247, 244, .68);

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   CONNECTORS
========================================================= */

.hwd-connector {

    height: 165px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding-top: 6px;
}


.hwd-connector > span {

    flex: 1;

    border-top:
        1px dashed
        rgba(201, 162, 91, .55);
}


.hwd-connector > div {

    width: 28px;
    height: 28px;

    flex: 0 0 28px;

    margin: 0 8px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color:
        var(--hwd-dark);

    background:
        var(--hwd-gold);

    font-size: 10px;

    box-shadow:
        0 0 16px
        rgba(201, 162, 91, .26);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1150px) {

    .hwd-steps {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 55px 24px;
    }


    .hwd-connector {

        display: none;
    }

}


@media (max-width: 700px) {

    .howworks-dark-section {

        padding:
            70px 16px
            75px;
    }


    .hwd-header {

        margin-bottom: 55px;
    }


    .hwd-kicker {

        gap: 8px;
    }


    .hwd-kicker span {

        width: 25px;
    }


    .hwd-kicker p {

        font-size: 9px;

        letter-spacing: .9px;
    }


    .hwd-header h2 {

        font-size:
            clamp(
                38px,
                11vw,
                50px
            );

        letter-spacing:
            -1.7px;
    }


    .hwd-steps {

        grid-template-columns:
            1fr;

        gap: 55px;
    }


    .hwd-step-top {

        width: 145px;
    }


    .hwd-icon-orbit {

        width: 145px;
        height: 145px;
    }


    .hwd-icon {

        width: 95px;
        height: 95px;

        font-size: 33px;
    }


    .hwd-step-card {

        min-height: 220px;

        padding:
            52px 22px 28px;
    }

}

/* =====================================================
   TEMPLATE LIBRARY SECTION
===================================================== */

.template-library-section {
    position: relative;
    overflow: hidden;

    padding:
        60px 24px
        60px;

    background-color: #F8F7F4;

    /* SUBTLE RECTANGULAR GRID */
    background-image:
        linear-gradient(
            rgba(19, 40, 85, 0.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(19, 40, 85, 0.045) 1px,
            transparent 1px
        );

    background-size:
        98px 98px;

    isolation: isolate;
}


/* =====================================================
   CONTAINER
===================================================== */

.template-library-container {
    position: relative;
    z-index: 5;

    width: 100%;
    max-width: 1420px;

    margin: 0 auto;
}


/* =====================================================
   HEADING
===================================================== */

.template-library-heading {
    max-width: 980px;

    margin:
        0 auto
        54px;

    text-align: center;
}


/* Section Label */

.template-library-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    margin-bottom: 20px;
}


.template-library-label .label-text {
    color: #C9A25B;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 1.7px;
}


.template-library-label .label-line {
    position: relative;

    width: 28px;
    height: 1px;

    background:
        rgba(201, 162, 91, 0.8);
}


.template-library-label .label-line::after {
    content: "";

    position: absolute;

    top: 50%;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #C9A25B;

    transform:
        translateY(-50%);
}


.template-library-label .label-line.left::after {
    right: 0;
}


.template-library-label .label-line.right::after {
    left: 0;
}


/* Heading */

.template-library-heading h2 {
    margin: 0;

    color: #0D1C45;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(46px, 5.15vw, 55px);

    font-weight: 700;

    line-height: 1.04;

    letter-spacing: -2.7px;
}


/* Subtitle */

.template-library-heading p {
    max-width: 720px;

    margin:
        18px auto
        0;

    color: rgba(19, 40, 85, 0.73);

    font-size: 19px;

    font-weight: 400;

    line-height: 1.65;
}


/* Small Gold Divider */

.template-title-divider {
    width: 63px;
    height: 4px;

    margin:
        20px auto
        0;

    border-radius: 100px;

    background:
        linear-gradient(
            90deg,
            #B88558,
            #C9A25B
        );
}


/* =====================================================
   GRID
===================================================== */

.template-library-grid {
    display: grid;

    grid-template-columns:
        repeat(12, minmax(0, 1fr));

    gap:
        20px
        20px;

    align-items: stretch;
}


/* First Row - 4 Cards */

.template-report-card:nth-child(1) {
    grid-column: 1 / span 3;
}


.template-report-card:nth-child(2) {
    grid-column: 4 / span 3;
}


.template-report-card:nth-child(3) {
    grid-column: 7 / span 3;
}


.template-report-card:nth-child(4) {
    grid-column: 10 / span 3;
}


/* Second Row - 3 Cards Centered */

.template-report-card:nth-child(5) {
    grid-column: 2 / span 3;
}


.template-report-card:nth-child(6) {
    grid-column: 5 / span 3;
}


.template-report-card:nth-child(7) {
    grid-column: 8 / span 3;
}


/* =====================================================
   CARD
===================================================== */

.template-report-card {
    position: relative;

    min-width: 0;

    padding:
        28px 22px
        26px;

    background:
        rgba(255, 255, 255, 0.88);

    border:
        1px solid
        rgba(19, 40, 85, 0.055);

    border-radius: 18px;

    box-shadow:
        0 12px 32px
        rgba(13, 28, 69, 0.075);

    text-align: center;

    backdrop-filter:
        blur(5px);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.template-report-card:hover {
    transform:
        translateY(-7px);

    border-color:
        rgba(201, 162, 91, 0.24);

    box-shadow:
        0 20px 42px
        rgba(13, 28, 69, 0.12);
}


/* =====================================================
   IMAGE PREVIEW
===================================================== */

.template-report-preview {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    height: 205px;

    overflow: hidden;

    padding: 12px;

    border-radius: 22px;

    background:
        radial-gradient(
            circle at 82% 33%,
            rgba(201, 162, 91, 0.13),
            transparent 27%
        ),
        radial-gradient(
            circle at 18% 75%,
            rgba(184, 133, 88, 0.08),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #F8F7F4,
            rgba(231, 225, 216, 0.58)
        );
}


/* Image itself */

.template-report-preview img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    object-position: center;

    transition:
        transform 0.35s ease;
}


.template-report-card:hover
.template-report-preview img {
    transform: scale(1.025);
}


/* =====================================================
   GOLD FLOATING ICON
===================================================== */

.template-report-icon {
    position: relative;

    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 56px;
    height: 56px;

    margin:
        -26px auto
        12px;

    border:
        5px solid
        #FFFFFF;

    border-radius:
        50%;

    background:
        linear-gradient(
            145deg,
            #C9A25B,
            #B88558
        );

    color:
        #FFFFFF;

    font-size:
        19px;

    box-shadow:
        0 9px 22px
        rgba(184, 133, 88, 0.28);
}


/* =====================================================
   CARD TITLE
===================================================== */

.template-report-card h3 {
    margin: 0;

    color:
        #0D1C45;

    font-size:
        17px;

    font-weight:
        700;

    line-height:
        1.35;
}


/* =====================================================
   DECORATIVE LEFT CIRCLE
===================================================== */

.tpl-circle {
    position: absolute;

    pointer-events: none;

    z-index: 1;
}


.tpl-circle-left {
    left: -12px;
    top: 230px;

    width: 105px;
    height: 105px;

    border-radius:
        50%;

    background:
        rgba(201, 162, 91, 0.075);
}


/* =====================================================
   RIGHT CIRCLE
===================================================== */

.tpl-circle-right {
    right: -115px;
    top: 90px;

    width: 240px;
    height: 240px;

    border:
        1px solid
        rgba(201, 162, 91, 0.25);

    border-radius:
        50%;

    background:
        rgba(248, 247, 244, 0.25);
}


/* =====================================================
   TOP LEFT RINGS
===================================================== */

.tpl-ring {
    position: absolute;

    pointer-events: none;

    z-index: 1;
}


.tpl-ring-top-left {
    left: -150px;
    top: -155px;

    width: 360px;
    height: 360px;

    border:
        1px solid
        rgba(201, 162, 91, 0.13);

    border-radius:
        50%;

    box-shadow:
        0 0 0 20px
            rgba(201, 162, 91, 0.034),
        0 0 0 40px
            rgba(201, 162, 91, 0.028),
        0 0 0 60px
            rgba(201, 162, 91, 0.022),
        0 0 0 80px
            rgba(201, 162, 91, 0.016),
        0 0 0 100px
            rgba(201, 162, 91, 0.012);
}


/* =====================================================
   DOT PATTERN
===================================================== */

.tpl-dot-pattern {
    position: absolute;

    right: 105px;
    top: 204px;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(5, 5px);

    gap: 11px;
}


.tpl-dot-pattern span {
    width: 5px;
    height: 5px;

    border-radius:
        50%;

    background:
        #C9A25B;

    opacity:
        0.78;
}

/* =====================================================
   RESPONSIVE - LARGE TABLET
===================================================== */

@media (max-width: 1200px) {

    .template-library-section {
        padding:
            70px 22px
            150px;
    }


    .template-library-grid {
        grid-template-columns:
            repeat(6, minmax(0, 1fr));

        gap:
            20px;
    }


    .template-report-card:nth-child(1) {
        grid-column:
            1 / span 2;
    }

    .template-report-card:nth-child(2) {
        grid-column:
            3 / span 2;
    }

    .template-report-card:nth-child(3) {
        grid-column:
            5 / span 2;
    }

    .template-report-card:nth-child(4) {
        grid-column:
            1 / span 2;
    }

    .template-report-card:nth-child(5) {
        grid-column:
            3 / span 2;
    }

    .template-report-card:nth-child(6) {
        grid-column:
            5 / span 2;
    }

    .template-report-card:nth-child(7) {
        grid-column:
            3 / span 2;
    }


    .template-report-preview {
        height:
            190px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .template-library-heading {
        margin-bottom:
            42px;
    }


    .template-library-heading h2 {
        font-size:
            48px;
    }


    .template-library-heading p {
        font-size:
            17px;
    }


    .template-library-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            18px;
    }


    .template-report-card:nth-child(n) {
        grid-column:
            auto;
    }


    .template-report-card:nth-child(7) {
        grid-column:
            1 / -1;

        width:
            calc(50% - 9px);

        justify-self:
            center;
    }


    .template-report-preview {
        height:
            200px;
    }


    .tpl-dot-pattern {
        right:
            40px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .template-library-section {
        padding:
            62px 15px
            115px;

        background-size:
            62px 62px;
    }


    .template-library-heading {
        margin-bottom:
            34px;
    }


    .template-library-label {
        gap:
            10px;

        margin-bottom:
            16px;
    }


    .template-library-label .label-text {
        font-size:
            10px;

        letter-spacing:
            1.3px;
    }


    .template-library-label .label-line {
        width:
            20px;
    }


    .template-library-heading h2 {
        font-size:
            37px;

        line-height:
            1.05;

        letter-spacing:
            -1.5px;
    }


    .template-library-heading p {
        margin-top:
            14px;

        font-size:
            15px;

        line-height:
            1.6;
    }


    .template-title-divider {
        width:
            48px;

        height:
            3px;

        margin-top:
            17px;
    }


    .template-library-grid {
        grid-template-columns:
            1fr;

        gap:
            17px;
    }


    .template-report-card:nth-child(n),
    .template-report-card:nth-child(7) {
        grid-column:
            auto;

        width:
            100%;
    }


    .template-report-card {
        padding:
            20px 18px
            23px;

        border-radius:
            18px;
    }


    .template-report-preview {
        height:
            215px;

        border-radius:
            18px;
    }


    .template-report-icon {
        width:
            52px;

        height:
            52px;

        margin-top:
            -24px;

        font-size:
            17px;
    }


    .template-report-card h3 {
        font-size:
            16px;
    }


    .tpl-circle-right,
    .tpl-dot-pattern {
        display:
            none;
    }


    .tpl-circle-left {
        width:
            80px;

        height:
            80px;

        top:
            245px;

        left:
            -30px;
    }


    .template-bottom-waves {
        height:
            95px;
    }


    .template-wave-gold {
        bottom:
            -75px;

        height:
            110px;
    }


    .template-wave-navy {
        bottom:
            -80px;

        height:
            120px;

        width:
            85%;
    }

}

/* =====================================================
   BONUS TEMPLATES SECTION
===================================================== */

.bonus-templates-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    padding: 60px 24px 60px;

    background-color: #132855;

    /* Subtle rectangular grid */
    background-image:
        linear-gradient(
            rgba(248, 247, 244, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(248, 247, 244, 0.035) 1px,
            transparent 1px
        );

    background-size: 72px 72px;
}


/* =====================================================
   CONTAINER
===================================================== */

.bonus-container {
    position: relative;
    z-index: 5;

    width: 100%;
    max-width: 1420px;

    margin: 0 auto;
}


/* =====================================================
   HEADING
===================================================== */

.bonus-heading {
    max-width: 720px;

    margin-bottom: 36px;
}


/* Small Label */

.bonus-label {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 28px;
}


.bonus-label-dot {
    width: 6px;
    height: 6px;

    flex: 0 0 auto;

    border-radius: 50%;

    background: #C9A25B;
}


.bonus-label-line {
    width: 30px;
    height: 1px;

    flex: 0 0 auto;

    background: #C9A25B;
}


.bonus-label-text {
    color: #C9A25B;

    font-size: 14px;
    font-weight: 600;

    line-height: 1.4;

    letter-spacing: 0.8px;
}


/* Main Heading */

.bonus-heading h2 {
    margin: 0;

    color: #F8F7F4;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(48px, 5vw, 55px);

    font-weight: 700;

    line-height: 1.04;

    letter-spacing: -2px;
}


/* Gold Underline */

.bonus-title-line {
    width: 72px;
    height: 4px;

    margin-top: 27px;

    border-radius: 100px;

    background:
        linear-gradient(
            90deg,
            #C9A25B,
            #B88558
        );
}


/* Description */

.bonus-heading p {
    margin:
        31px 0
        0;

    color:
        rgba(248, 247, 244, 0.82);

    font-size: 18px;

    line-height: 1.65;
}


/* =====================================================
   CARDS GRID
===================================================== */

.bonus-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;

    align-items: stretch;
}


/* =====================================================
   CARD
===================================================== */

.bonus-card {
    position: relative;

    min-width: 0;
    min-height: 235px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding:
        28px
        24px;

    overflow: hidden;

    border:
        1px solid
        rgba(231, 225, 216, 0.25);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(248, 247, 244, 0.055),
            rgba(13, 28, 69, 0.12)
        );

    box-shadow:
        inset 0 1px 0
            rgba(255, 255, 255, 0.06),
        0 14px 35px
            rgba(13, 28, 69, 0.2);

    backdrop-filter:
        blur(9px);

    text-align: center;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}


/* Gold top glow */

.bonus-card::before {
    content: "";

    position: absolute;

    left: 50%;
    top: -85px;

    width: 180px;
    height: 140px;

    border-radius: 50%;

    background:
        rgba(201, 162, 91, 0.07);

    filter: blur(10px);

    transform:
        translateX(-50%);

    pointer-events: none;
}


.bonus-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(201, 162, 91, 0.62);

    background:
        linear-gradient(
            145deg,
            rgba(248, 247, 244, 0.075),
            rgba(13, 28, 69, 0.18)
        );

    box-shadow:
        0 20px 42px
            rgba(13, 28, 69, 0.32),
        0 0 35px
            rgba(201, 162, 91, 0.06);
}


/* =====================================================
   ICON CIRCLE
===================================================== */

.bonus-icon-wrap {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 92px;
    height: 92px;

    margin-bottom: 11px;

    border:
        1px solid
        rgba(201, 162, 91, 0.38);

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            rgba(248, 247, 244, 0.08),
            rgba(13, 28, 69, 0.12)
        );

    box-shadow:
        inset 0 0 18px
            rgba(201, 162, 91, 0.045);

    color: #C9A25B;

    font-size: 36px;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease;
}


.bonus-card:hover
.bonus-icon-wrap {
    transform:
        translateY(-2px)
        scale(1.05);

    border-color:
        rgba(201, 162, 91, 0.72);

    background:
        rgba(201, 162, 91, 0.08);
}


/* Tiny line below icon */

.bonus-icon-divider {
    width: 26px;
    height: 3px;

    margin-bottom: 15px;

    border-radius: 100px;

    background: #C9A25B;
}


/* =====================================================
   CARD TEXT
===================================================== */

.bonus-card h3 {
    margin: 0;

    color: #F8F7F4;

    font-size: 19px;

    font-weight: 600;

    line-height: 1.45;
}


/* =====================================================
   TOP RIGHT GOLD CIRCLE
===================================================== */

.bonus-circle {
    position: absolute;

    z-index: 1;

    top: -97px;
    right: -92px;

    width: 285px;
    height: 285px;

    border:
        1.5px solid
        rgba(201, 162, 91, 0.85);

    border-radius: 50%;

    pointer-events: none;
}


/* subtle glow point */

.bonus-circle::after {
    content: "";

    position: absolute;

    left: 32px;
    bottom: 18px;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #C9A25B;

    box-shadow:
        0 0 8px #C9A25B,
        0 0 22px rgba(201, 162, 91, 0.75);
}


/* =====================================================
   DOT PATTERN
===================================================== */

.bonus-dots {
    position: absolute;

    z-index: 2;

    top: 62px;
    right: 205px;

    display: grid;

    grid-template-columns:
        repeat(5, 5px);

    gap: 12px;

    pointer-events: none;
}


.bonus-dots span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #C9A25B;

    opacity: 0.82;
}

/* =====================================================
   LARGE TABLET
===================================================== */

@media (max-width: 1200px) {

    .bonus-templates-section {
        padding:
            72px 22px
            150px;
    }


    .bonus-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .bonus-card {
        min-height:
            220px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 850px) {

    .bonus-heading h2 {
        font-size:
            50px;
    }


    .bonus-heading p {
        font-size:
            17px;
    }


    .bonus-dots {
        right:
            65px;
    }


    .bonus-circle {
        width:
            220px;

        height:
            220px;

        right:
            -90px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .bonus-templates-section {
        padding:
            60px 15px
            110px;

        background-size:
            56px 56px;
    }


    .bonus-heading {
        margin-bottom:
            30px;
    }


    .bonus-label {
        gap:
            7px;

        margin-bottom:
            19px;
    }


    .bonus-label-text {
        font-size:
            10px;

        letter-spacing:
            0.55px;
    }


    .bonus-label-line {
        width:
            20px;
    }


    .bonus-heading h2 {
        font-size:
            38px;

        line-height:
            1.08;

        letter-spacing:
            -1.3px;
    }


    .bonus-title-line {
        width:
            54px;

        height:
            3px;

        margin-top:
            20px;
    }


    .bonus-heading p {
        margin-top:
            21px;

        font-size:
            15px;

        line-height:
            1.6;
    }


    .bonus-heading p br {
        display:
            none;
    }


    .bonus-grid {
        grid-template-columns:
            1fr;

        gap:
            15px;
    }


    .bonus-card {
        min-height:
            200px;

        padding:
            25px 20px;
    }


    .bonus-icon-wrap {
        width:
            80px;

        height:
            80px;

        font-size:
            31px;
    }


    .bonus-card h3 {
        font-size:
            17px;
    }


    .bonus-circle {
        display:
            none;
    }


    .bonus-dots {
        display:
            none;
    }


    .bonus-bottom-shape {
        height:
            85px;
    }


    .bonus-bottom-gold {
        bottom:
            -60px;

        height:
            90px;
    }


    .bonus-bottom-cream {
        bottom:
            -67px;

        height:
            90px;
    }

}

/* =====================================================
   WHY CHOOSE US STATS SECTION
===================================================== */

.why-choose-stats-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    padding: 60px 24px 60px;

    background-color: #F8F7F4;

    background-image:
        linear-gradient(
            rgba(19, 40, 85, 0.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(19, 40, 85, 0.045) 1px,
            transparent 1px
        );

    background-size: 82px 82px;
}


/* =====================================================
   CONTAINER
===================================================== */

.why-stats-container {
    position: relative;
    z-index: 5;

    width: 100%;
    max-width: 1440px;

    margin: 0 auto;
}


/* =====================================================
   MAIN WHITE CARD
===================================================== */

.why-stats-card {
    position: relative;

    padding: 35px 42px 35px;

    border: 1px solid rgba(19, 40, 85, 0.06);

    border-radius: 28px;

    background:
        rgba(255, 255, 255, 0.90);

    box-shadow:
        0 18px 45px rgba(13, 28, 69, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);

    backdrop-filter: blur(5px);
}


/* =====================================================
   LABEL
===================================================== */

.why-stats-label {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 45px;

    color: #C9A25B;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 2px;
}


.why-label-line {
    width: 32px;
    height: 1px;

    background: #C9A25B;
}


.why-label-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #C9A25B;
}


/* =====================================================
   GRID
===================================================== */

.why-stats-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    align-items: stretch;
}


/* =====================================================
   STAT ITEM
===================================================== */

.why-stat-item {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    min-width: 0;

    padding: 0 30px;

    text-align: center;
}


/* Vertical Divider */

.why-stat-item:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 1px;
    height: 100%;

    background:
        rgba(19, 40, 85, 0.12);
}


/* =====================================================
   ICON
===================================================== */

.why-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 96px;
    height: 96px;

    margin-bottom: 24px;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            rgba(201, 162, 91, 0.12),
            rgba(231, 225, 216, 0.45)
        );

    color: #C9A25B;

    font-size: 36px;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.why-stat-item:hover .why-stat-icon {
    transform:
        translateY(-4px)
        scale(1.04);

    box-shadow:
        0 12px 30px
        rgba(201, 162, 91, 0.12);
}


/* =====================================================
   NUMBER
===================================================== */

.why-stat-number-wrap {
    color: #0D1C45;

    font-size: clamp(48px, 4.4vw, 45px);

    font-weight: 700;

    line-height: 1;

    letter-spacing: -2px;
}


.why-stat-text {
    white-space: nowrap;
}


/* =====================================================
   GOLD SMALL DIVIDER
===================================================== */

.why-stat-line {
    width: 40px;
    height: 4px;

    margin: 20px auto 20px;

    border-radius: 100px;

    background:
        linear-gradient(
            90deg,
            #B88558,
            #C9A25B
        );
}


/* =====================================================
   LABEL TEXT
===================================================== */

.why-stat-item p {
    margin: 0;

    color: #132855;

    font-size: 13px;
    font-weight: 700;

    line-height: 1.6;

    letter-spacing: 2px;
}


/* =====================================================
   TOP LEFT DOTS
===================================================== */

.why-deco-dots {
    position: absolute;

    z-index: 1;

    left: 50px;
    top: 195px;

    display: grid;

    grid-template-columns:
        repeat(5, 5px);

    gap: 12px;
}


.why-deco-dots span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #C9A25B;

    opacity: 0.8;
}


/* =====================================================
   TOP RIGHT CIRCLE
===================================================== */

.why-deco-circle {
    position: absolute;

    z-index: 1;

    top: -105px;
    right: -85px;

    width: 260px;
    height: 260px;

    border:
        1.5px solid
        rgba(201, 162, 91, 0.65);

    border-radius: 50%;
}


/* subtle filled circle */

.why-deco-circle::before {
    content: "";

    position: absolute;

    left: -115px;
    bottom: 40px;

    width: 80px;
    height: 80px;

    border-radius: 50%;

    background:
        rgba(201, 162, 91, 0.08);
}


/* =====================================================
   BOTTOM LEFT RINGS
===================================================== */

.why-deco-rings {
    position: absolute;

    z-index: 1;

    left: -110px;
    bottom: -20px;

    width: 250px;
    height: 250px;

    border:
        1px solid
        rgba(201, 162, 91, 0.16);

    border-radius: 50%;

    box-shadow:
        0 0 0 18px rgba(201, 162, 91, 0.035),
        0 0 0 36px rgba(201, 162, 91, 0.03),
        0 0 0 54px rgba(201, 162, 91, 0.025),
        0 0 0 72px rgba(201, 162, 91, 0.02);
}

/* =====================================================
   LARGE TABLET
===================================================== */

@media (max-width: 1200px) {

    .why-stats-card {
        padding:
            52px 28px 55px;
    }


    .why-stat-item {
        padding:
            0 20px;
    }


    .why-stat-number-wrap {
        font-size:
            56px;
    }


    .why-stat-item p {
        font-size:
            11px;

        letter-spacing:
            1.5px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .why-choose-stats-section {
        padding:
            80px 20px
            150px;
    }


    .why-stats-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        row-gap:
            45px;
    }


    .why-stat-item:nth-child(2)::after {
        display: none;
    }


    .why-stat-item:nth-child(1)::before,
    .why-stat-item:nth-child(2)::before {
        content: "";

        position: absolute;

        left: 10%;
        bottom: -22px;

        width: 80%;
        height: 1px;

        background:
            rgba(19, 40, 85, 0.10);
    }


    .why-stat-item:nth-child(3)::after {
        display: block;
    }


    .why-stat-number-wrap {
        font-size:
            52px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .why-choose-stats-section {
        padding:
            60px 15px
            115px;

        background-size:
            60px 60px;
    }


    .why-stats-card {
        padding:
            34px 18px
            38px;

        border-radius:
            20px;
    }


    .why-stats-label {
        margin-bottom:
            34px;

        font-size:
            10px;

        letter-spacing:
            1.3px;
    }


    .why-label-line {
        width:
            20px;
    }


    .why-stats-grid {
        grid-template-columns:
            1fr;

        row-gap:
            0;
    }


    .why-stat-item {
        padding:
            30px 10px;
    }


    .why-stat-item:not(:last-child)::after {
        display: none;
    }


    .why-stat-item:not(:last-child)::before {
        content: "";

        position: absolute;

        left: 12%;
        bottom: 0;

        width: 76%;
        height: 1px;

        background:
            rgba(19, 40, 85, 0.10);
    }


    .why-stat-icon {
        width:
            82px;

        height:
            82px;

        margin-bottom:
            19px;

        font-size:
            30px;
    }


    .why-stat-number-wrap {
        font-size:
            50px;
    }


    .why-stat-text {
        font-size:
            46px;
    }


    .why-stat-line {
        width:
            34px;

        margin:
            17px auto
            17px;
    }


    .why-stat-item p {
        font-size:
            11px;

        letter-spacing:
            1.5px;
    }


    .why-deco-dots,
    .why-deco-circle {
        display:
            none;
    }

}

/* ======================================================
   TESTIMONIALS SECTION
====================================================== */

.agency-testimonials-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    padding: 60px 24px 60px;

    background-color: #0D1C45;

    /* SUBTLE RECTANGULAR GRID */
    background-image:
        linear-gradient(
            rgba(248, 247, 244, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(248, 247, 244, 0.035) 1px,
            transparent 1px
        );

    background-size: 72px 72px;
}


/* ======================================================
   MAIN CONTAINER
====================================================== */

.agency-testimonial-container {
    position: relative;
    z-index: 5;

    width: 100%;
    max-width: 1420px;

    margin: 0 auto;
}


/* ======================================================
   SECTION HEADING
====================================================== */

.agency-testimonial-heading {
    position: relative;

    max-width: 760px;

    margin-bottom: 47px;
}


/* Small section label */

.agency-testimonial-label {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 34px;

    color: #C9A25B;

    font-size: 14px;
    font-weight: 600;

    line-height: 1.4;

    letter-spacing: 1.5px;
}


.agency-label-dot {
    width: 9px;
    height: 9px;

    flex: 0 0 auto;

    border-radius: 50%;

    background: #C9A25B;
}


.agency-label-line {
    width: 46px;
    height: 1px;

    flex: 0 0 auto;

    background:
        repeating-linear-gradient(
            90deg,
            #C9A25B 0 6px,
            transparent 6px 10px
        );
}


/* Main title */

.agency-testimonial-heading h2 {
    margin: 0;

    color: #F8F7F4;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(48px, 5.1vw, 55px);

    font-weight: 700;

    line-height: 1;

    letter-spacing: -2.5px;
}


/* Gold title underline */

.agency-heading-line {
    width: 92px;
    height: 4px;

    margin-top: 32px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            #C9A25B,
            #B88558
        );
}


/* ======================================================
   TESTIMONIAL GRID
====================================================== */

.agency-testimonial-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;

    align-items: stretch;
}


/* ======================================================
   CARD
====================================================== */

.agency-testimonial-card {
    position: relative;

    min-width: 0;
    min-height: 380px;

    overflow: hidden;

    padding: 45px 45px 42px;

    border:
        1px solid
        rgba(201, 162, 91, 0.45);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(19, 40, 85, 0.96),
            rgba(13, 28, 69, 0.94)
        );

    box-shadow:
        inset 0 1px 0
            rgba(248, 247, 244, 0.04),
        0 20px 50px
            rgba(13, 28, 69, 0.25);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.agency-testimonial-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(201, 162, 91, 0.85);

    box-shadow:
        0 25px 55px
            rgba(13, 28, 69, 0.35),
        0 0 35px
            rgba(201, 162, 91, 0.05);
}


/* subtle card glow */

.agency-testimonial-card::before {
    content: "";

    position: absolute;

    top: -130px;
    left: -80px;

    width: 290px;
    height: 290px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(201, 162, 91, 0.06),
            transparent 67%
        );

    pointer-events: none;
}


/* ======================================================
   GOLD QUOTE ICON
====================================================== */

.agency-big-quote {
    position: relative;
    z-index: 2;

    margin-bottom: 25px;

    color: #C9A25B;

    font-size: 40px;

    line-height: 1;
}


/* ======================================================
   TESTIMONIAL CONTENT
====================================================== */

.agency-testimonial-content {
    position: relative;
    z-index: 2;
}


.agency-testimonial-card blockquote {
    min-height: 102px;

    margin: 0;

    color: #F8F7F4;

    font-size: 20px;
    font-weight: 400;

    line-height: 1.65;
}


/* Small line */

.agency-card-small-line {
    width: 66px;
    height: 1px;

    margin:
        25px 0
        38px;

    background:
        rgba(231, 225, 216, 0.30);
}


/* ======================================================
   AUTHOR
====================================================== */

.agency-testimonial-author {
    display: flex;
    align-items: center;

    gap: 17px;
}


/* IMAGE CONTAINER */

.agency-author-image {
    width: 72px;
    height: 72px;

    flex: 0 0 72px;

    overflow: hidden;

    padding: 3px;

    border:
        1px solid
        #C9A25B;

    border-radius: 50%;

    background: #132855;
}


/* YOUR ACTUAL IMAGE */

.agency-author-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    border-radius: 50%;
}


/* Author Details */

.agency-author-info {
    min-width: 0;
}


.agency-author-info h3 {
    margin: 0 0 7px;

    color: #F8F7F4;

    font-size: 18px;
    font-weight: 700;

    line-height: 1.3;
}


.agency-author-info p {
    margin: 0;

    color:
        rgba(231, 225, 216, 0.68);

    font-size: 14px;

    line-height: 1.5;
}


/* ======================================================
   TOP RIGHT GOLD CIRCLE
====================================================== */

.agency-testimonial-top-circle {
    position: absolute;

    z-index: 1;

    top: -108px;
    right: -92px;

    width: 290px;
    height: 290px;

    border:
        1.5px solid
        rgba(201, 162, 91, 0.90);

    border-radius: 50%;

    pointer-events: none;
}


/* Gold glowing point */

.agency-testimonial-top-circle::after {
    content: "";

    position: absolute;

    left: 32px;
    bottom: 23px;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #C9A25B;

    box-shadow:
        0 0 9px #C9A25B,
        0 0 22px rgba(201, 162, 91, 0.85);
}


/* ======================================================
   TOP RIGHT DOTS
====================================================== */

.agency-testimonial-dots {
    position: absolute;

    z-index: 2;

    top: 88px;
    right: 215px;

    display: grid;

    grid-template-columns:
        repeat(5, 5px);

    gap: 12px;

    pointer-events: none;
}


.agency-testimonial-dots span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #C9A25B;

    opacity: 0.8;
}


/* ======================================================
   LEFT BOTTOM RINGS
====================================================== */

.agency-testimonial-rings {
    position: absolute;

    z-index: 1;

    left: -105px;
    bottom: 35px;

    width: 220px;
    height: 220px;

    border:
        1px solid
        rgba(201, 162, 91, 0.20);

    border-radius: 50%;

    box-shadow:
        0 0 0 52px
            rgba(201, 162, 91, 0.018);

    pointer-events: none;
}


.agency-testimonial-rings::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 100px;
    height: 100px;

    border:
        1px solid
        rgba(201, 162, 91, 0.17);

    border-radius: 50%;

    transform:
        translate(-50%, -50%);
}


.agency-testimonial-rings::after {
    content: "";

    position: absolute;

    right: 7px;
    bottom: 8px;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #C9A25B;

    box-shadow:
        0 0 10px #C9A25B;
}

/* ======================================================
   TABLET
====================================================== */

@media (max-width: 1100px) {

    .agency-testimonials-section {
        padding:
            75px 20px
            160px;
    }


    .agency-testimonial-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .agency-testimonial-card:nth-child(3) {
        grid-column:
            1 / -1;

        width:
            calc(50% - 11px);

        justify-self:
            center;
    }


    .agency-testimonial-card {
        min-height:
            360px;
    }

}


/* ======================================================
   SMALL TABLET
====================================================== */

@media (max-width: 760px) {

    .agency-testimonial-heading h2 {
        font-size: 52px;
    }


    .agency-testimonial-grid {
        grid-template-columns: 1fr;
    }


    .agency-testimonial-card:nth-child(3) {
        grid-column: auto;

        width: 100%;
    }


    .agency-testimonial-card {
        min-height: auto;
    }


    .agency-testimonial-card blockquote {
        min-height: auto;
    }


    .agency-testimonial-dots {
        right: 80px;
    }

}


/* ======================================================
   MOBILE
====================================================== */

@media (max-width: 600px) {

    .agency-testimonials-section {
        padding:
            60px 15px
            110px;

        background-size:
            58px 58px;
    }


    .agency-testimonial-heading {
        margin-bottom: 34px;
    }


    .agency-testimonial-label {
        gap: 7px;

        margin-bottom: 22px;

        font-size: 10px;

        letter-spacing: 1px;
    }


    .agency-label-line {
        width: 26px;
    }


    .agency-label-dot {
        width: 6px;
        height: 6px;
    }


    .agency-testimonial-heading h2 {
        font-size: 40px;

        line-height: 1.05;

        letter-spacing: -1.5px;
    }


    .agency-heading-line {
        width: 62px;
        height: 3px;

        margin-top: 22px;
    }


    .agency-testimonial-grid {
        gap: 16px;
    }


    .agency-testimonial-card {
        padding:
            32px 25px
            30px;

        border-radius: 17px;
    }


    .agency-big-quote {
        margin-bottom: 18px;

        font-size: 32px;
    }


    .agency-testimonial-card blockquote {
        font-size: 17px;

        line-height: 1.65;
    }


    .agency-card-small-line {
        margin:
            21px 0
            27px;
    }


    .agency-author-image {
        width: 62px;
        height: 62px;

        flex-basis: 62px;
    }


    .agency-author-info h3 {
        font-size: 16px;
    }


    .agency-author-info p {
        font-size: 13px;
    }


    .agency-testimonial-top-circle,
    .agency-testimonial-dots {
        display: none;
    }

    .agency-testimonial-gold-wave {
        bottom: -60px;

        height: 90px;
    }


    .agency-testimonial-navy-wave {
        bottom: -66px;

        height: 90px;
    }

}

/* =====================================================
   PREMIUM FAQ SECTION
===================================================== */

.premium-faq-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    padding:
        60px 24px
        60px;

    background-color: #F8F7F4;

    /* subtle rectangular grid */
    background-image:
        linear-gradient(
            rgba(19, 40, 85, 0.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(19, 40, 85, 0.045) 1px,
            transparent 1px
        );

    background-size:
        82px 82px;
}


/* =====================================================
   MAIN CONTAINER
===================================================== */

.premium-faq-container {
    position: relative;
    z-index: 5;

    width: 100%;
    max-width: 1440px;

    margin: 0 auto;
}


/* =====================================================
   SMALL SECTION LABEL
===================================================== */

.premium-faq-label {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-bottom: 34px;

    color: #C9A25B;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1.7px;
}


.faq-label-dash {
    display: block;

    width: 50px;
    height: 1px;

    background:
        repeating-linear-gradient(
            to right,
            #C9A25B 0,
            #C9A25B 6px,
            transparent 6px,
            transparent 11px
        );
}


/* =====================================================
   MAIN HEADING
===================================================== */

.premium-faq-heading {
    position: relative;

    margin-bottom: 24px;
}


.premium-faq-heading h2 {
    margin: 0;

    color: #0D1C45;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(48px, 5vw, 50px);

    font-weight: 700;

    line-height: 1.05;

    letter-spacing: -2.5px;
}


.premium-faq-heading-line {
    width: 82px;
    height: 3px;

    margin-top: 24px;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            #C9A25B,
            #B88558
        );
}


/* =====================================================
   TWO COLUMN LAYOUT
===================================================== */

.premium-faq-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.42fr)
        minmax(390px, 0.95fr);

    gap: 38px;

    align-items: stretch;
}


/* =====================================================
   FAQ LIST
===================================================== */

.premium-faq-list {
    display: flex;
    flex-direction: column;

    gap: 9px;
}


/* =====================================================
   FAQ CARD
===================================================== */

.premium-faq-item {
    position: relative;

    overflow: hidden;

    border:
        1px solid
        rgba(19, 40, 85, 0.10);

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.90);

    box-shadow:
        0 8px 22px
        rgba(13, 28, 69, 0.055);

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}


.premium-faq-item:hover {
    border-color:
        rgba(201, 162, 91, 0.38);

    box-shadow:
        0 13px 30px
        rgba(13, 28, 69, 0.08);
}


/* =====================================================
   QUESTION BUTTON
===================================================== */

.premium-faq-question {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding:
        27px 25px
        14px;

    border: 0;
    outline: none;

    background: transparent;

    cursor: pointer;

    text-align: left;

    color: #132855;

    font-family: inherit;

    font-size: 18px;
    font-weight: 700;

    line-height: 1.4;
}


/* =====================================================
   PLUS CIRCLE
===================================================== */

.premium-faq-toggle {
    width: 31px;
    height: 31px;

    flex: 0 0 31px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        #C9A25B;

    border-radius: 50%;

    color: #C9A25B;

    font-size: 12px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.35s ease;
}


.premium-faq-item.active
.premium-faq-toggle {
    background: #C9A25B;

    color: #F8F7F4;

    transform: rotate(45deg);
}


/* =====================================================
   ANSWER
===================================================== */

.premium-faq-answer {
    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows
        0.4s ease;
}


.premium-faq-item.active
.premium-faq-answer {
    grid-template-rows: 1fr;
}


.premium-faq-answer-inner {
    overflow: hidden;
}


.premium-faq-answer p {
    margin:
        0;

    padding:
        2px 60px
        27px 25px;

    color:
        rgba(30, 30, 30, 0.72);

    font-size: 16px;

    font-weight: 400;

    line-height: 1.65;
}


/* =====================================================
   RIGHT VISUAL
===================================================== */

.premium-faq-visual {
    position: relative;

    min-height: 625px;

    display: flex;
    align-items: flex-end;
    justify-content: center;
}


/* Large background ellipse/circle */

.premium-faq-visual-circle {
    position: absolute;

    z-index: 1;

    top: 28px;
    left: 50%;

    width: 490px;
    height: 490px;

    border:
        1px solid
        rgba(201, 162, 91, 0.55);

    border-radius: 50%;

    transform:
        translateX(-50%);
}


.premium-faq-visual-circle::before {
    content: "";

    position: absolute;

    inset: 64px;

    border-radius: 50%;

    background:
        rgba(231, 225, 216, 0.48);
}


/* =====================================================
   IMAGE
===================================================== */

.premium-faq-image-wrap {
    position: relative;

    z-index: 3;

    width: 116%;
    max-width: 620px;

    margin:
        0 -40px
        -7px 0;
}


/*
   IMPORTANT:
   ONLY UPDATE THIS IMAGE PATH LATER
*/

.premium-faq-image-wrap img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;

    object-position:
        center bottom;

    filter:
        drop-shadow(
            0 25px 25px
            rgba(13, 28, 69, 0.13)
        );
}


/* =====================================================
   DECORATIVE TOP RIGHT CIRCLE
===================================================== */

.premium-faq-top-circle {
    position: absolute;

    z-index: 1;

    top: -135px;
    right: -105px;

    width: 310px;
    height: 310px;

    border:
        1px solid
        rgba(201, 162, 91, 0.50);

    border-radius: 50%;

    pointer-events: none;
}


/* =====================================================
   GOLD DOTS
===================================================== */

.premium-faq-dots {
    position: absolute;

    z-index: 2;

    top: 88px;
    right: 42px;

    display: grid;

    grid-template-columns:
        repeat(5, 6px);

    gap: 14px;

    pointer-events: none;
}


.premium-faq-dots span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background:
        #C9A25B;

    opacity: 0.75;
}

/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (min-width: 1500px) {

    .premium-faq-image-wrap {
        max-width: 670px;
    }

}


/* =====================================================
   LAPTOP
===================================================== */

@media (max-width: 1250px) {

    .premium-faq-layout {
        grid-template-columns:
            minmax(0, 1.25fr)
            minmax(350px, 0.8fr);

        gap: 25px;
    }


    .premium-faq-visual {
        min-height: 590px;
    }


    .premium-faq-visual-circle {
        width: 430px;
        height: 430px;
    }


    .premium-faq-image-wrap {
        width: 120%;

        margin-right: -55px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1024px) {

    .premium-faq-section {
        padding:
            75px 20px
            150px;
    }


    .premium-faq-layout {
        grid-template-columns:
            1fr;
    }


    .premium-faq-list {
        order: 1;
    }


    .premium-faq-visual {
        order: 2;

        min-height: 520px;

        margin-top: 10px;
    }


    .premium-faq-visual-circle {
        width: 470px;
        height: 470px;
    }


    .premium-faq-image-wrap {
        width: 100%;
        max-width: 650px;

        margin:
            0 auto
            -5px;
    }

}


/* =====================================================
   SMALL TABLET
===================================================== */

@media (max-width: 768px) {

    .premium-faq-heading h2 {
        font-size: 50px;
    }


    .premium-faq-question {
        font-size: 17px;
    }


    .premium-faq-visual {
        min-height: 440px;
    }


    .premium-faq-visual-circle {
        width: 390px;
        height: 390px;
    }


    .premium-faq-dots {
        display: none;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .premium-faq-section {
        padding:
            58px 15px
            105px;

        background-size:
            60px 60px;
    }


    .premium-faq-label {
        gap: 10px;

        margin-bottom: 20px;

        font-size: 10px;

        letter-spacing: 1.2px;
    }


    .faq-label-dash {
        width: 29px;
    }


    .premium-faq-heading {
        margin-bottom: 25px;
    }


    .premium-faq-heading h2 {
        font-size: 39px;

        line-height: 1.07;

        letter-spacing: -1.5px;
    }


    .premium-faq-heading-line {
        width: 58px;

        margin-top: 18px;
    }


    .premium-faq-list {
        gap: 9px;
    }


    .premium-faq-question {
        padding:
            21px 17px
            11px;

        gap: 15px;

        font-size: 15px;
    }


    .premium-faq-toggle {
        width: 28px;
        height: 28px;

        flex-basis: 28px;

        font-size: 10px;
    }


    .premium-faq-answer p {
        padding:
            2px 50px
            20px 17px;

        font-size: 14px;

        line-height: 1.6;
    }


    .premium-faq-visual {
        min-height: 330px;

        margin-top: 25px;
    }


    .premium-faq-visual-circle {
        top: 15px;

        width: 310px;
        height: 310px;
    }


    .premium-faq-visual-circle::before {
        inset: 45px;
    }


    .premium-faq-image-wrap {
        width: 110%;

        max-width: 420px;
    }


    .premium-faq-top-circle {
        display: none;
    }

}


/* =====================================================
   EXTRA SMALL MOBILE
===================================================== */

@media (max-width: 390px) {

    .premium-faq-heading h2 {
        font-size: 35px;
    }


    .premium-faq-visual {
        min-height: 285px;
    }


    .premium-faq-visual-circle {
        width: 270px;
        height: 270px;
    }

}

/* =========================================================
   WHITE LABEL REPORTING KIT FINAL CTA
========================================================= */

.wl-kit-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    min-height: 860px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 105px 24px 170px;

    background-image:
        url("assets/images/report-kit/report-kit-bg.jpg");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}


/* =========================================================
   NAVY OVERLAY
========================================================= */

.wl-kit-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            180deg,
            rgba(13, 28, 69, 0.88) 0%,
            rgba(13, 28, 69, 0.92) 48%,
            rgba(19, 40, 85, 0.92) 100%
        );
}


/* =========================================================
   CONTAINER
========================================================= */

.wl-kit-container {
    position: relative;
    z-index: 5;

    width: 100%;
    max-width: 1080px;

    margin: 0 auto;

    text-align: center;
}


/* =========================================================
   EYEBROW
========================================================= */

.wl-kit-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 13px;

    margin-bottom: 31px;

    color: #C9A25B;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;
    line-height: 1.3;

    text-transform: uppercase;
}


.wl-kit-eyebrow-line {
    display: block;

    width: 34px;
    height: 2px;

    flex: 0 0 auto;

    border-radius: 50px;

    background: #C9A25B;
}


/* =========================================================
   HEADING
========================================================= */

.wl-kit-heading {
    max-width: 1020px;

    margin: 0 auto;

    color: #F8F7F4;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(50px, 5.1vw, 50px);

    font-weight: 700;

    line-height: 1.12;

    letter-spacing: -2.2px;
}


.wl-kit-heading span {
    display: block;

    margin-top: 7px;
}


/* =========================================================
   SUBTITLE
========================================================= */

.wl-kit-subtitle {
    max-width: 820px;

    margin:
        26px auto
        0;

    color:
        rgba(248, 247, 244, 0.82);

    font-size: 19px;
    font-weight: 400;

    line-height: 1.65;
}


/* =========================================================
   FORM BOX
========================================================= */

.wl-kit-form-box {
    width: 100%;
    max-width: 1035px;

    margin:
        39px auto
        0;

    padding:
        31px 34px
        34px;

    border:
        1px solid
        rgba(201, 162, 91, 0.46);

    border-radius: 17px;

    background:
        rgba(13, 28, 69, 0.78);

    box-shadow:
        0 25px 60px
        rgba(13, 28, 69, 0.35);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


/* =========================================================
   FORM GRID
========================================================= */

.wl-kit-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    column-gap: 28px;
    row-gap: 24px;

    width: 100%;
}


/* =========================================================
   INPUT FIELD
========================================================= */

.wl-kit-field {
    position: relative;

    width: 100%;
    height: 72px;

    display: flex;
    align-items: center;

    overflow: hidden;

    border:
        1px solid
        rgba(231, 225, 216, 0.14);

    border-radius: 8px;

    background:
        rgba(19, 40, 85, 0.65);

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.wl-kit-field:focus-within {
    border-color:
        rgba(201, 162, 91, 0.82);

    background:
        rgba(19, 40, 85, 0.82);

    box-shadow:
        0 0 0 3px
        rgba(201, 162, 91, 0.07);
}


/* =========================================================
   INPUT ICON
========================================================= */

.wl-kit-field-icon {
    width: 64px;
    height: 100%;

    flex: 0 0 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #E7E1D8;

    font-size: 18px;
}


/* =========================================================
   INPUT
========================================================= */

.wl-kit-field input {
    width: 100%;
    height: 100%;

    min-width: 0;

    padding:
        0 20px
        0 0;

    border: none;
    outline: none;

    background: transparent;

    color: #F8F7F4;

    font-family: inherit;
    font-size: 16px;
}


.wl-kit-field input::placeholder {
    color:
        rgba(248, 247, 244, 0.72);

    opacity: 1;
}


/* =========================================================
   BUTTON
========================================================= */

.wl-kit-submit {
    width: 100%;
    min-height: 74px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    margin-top: 28px;

    padding:
        16px 28px;

    border:
        1.5px solid
        #C9A25B;

    border-radius: 8px;

    background:
        transparent;

    color: #C9A25B;

    font-family: inherit;

    font-size: 19px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.wl-kit-submit i {
    font-size: 15px;

    transition:
        transform 0.3s ease;
}


.wl-kit-submit:hover {
    background:
        #C9A25B;

    color:
        #0D1C45;

    transform:
        translateY(-2px);

    box-shadow:
        0 15px 35px
        rgba(201, 162, 91, 0.18);
}


.wl-kit-submit:hover i {
    transform:
        translateX(5px);
}

/* =========================================================
   LAPTOP / TABLET
========================================================= */

@media (max-width: 1050px) {

    .wl-kit-section {
        min-height: auto;

        padding:
            90px 20px
            150px;
    }


    .wl-kit-container {
        max-width: 900px;
    }


    .wl-kit-heading {
        font-size:
            56px;
    }


    .wl-kit-form-box {
        max-width:
            900px;

        padding:
            28px;
    }


    .wl-kit-grid {
        column-gap:
            20px;

        row-gap:
            18px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .wl-kit-section {
        padding:
            65px 15px
            105px;

        background-position:
            center center;
    }


    .wl-kit-container {
        max-width: 100%;
    }


    .wl-kit-eyebrow {
        gap: 8px;

        margin-bottom: 22px;

        font-size: 10px;

        letter-spacing: 2px;
    }


    .wl-kit-eyebrow-line {
        width: 24px;
    }


    .wl-kit-heading {
        max-width: 100%;

        font-size: 39px;

        line-height: 1.1;

        letter-spacing: -1.3px;
    }


    .wl-kit-heading span {
        margin-top: 5px;
    }


    .wl-kit-subtitle {
        max-width: 95%;

        margin-top: 20px;

        font-size: 15px;

        line-height: 1.6;
    }


    .wl-kit-form-box {
        max-width: 100%;

        margin-top: 29px;

        padding:
            20px;

        border-radius: 14px;
    }


    .wl-kit-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .wl-kit-field {
        height: 62px;
    }


    .wl-kit-field-icon {
        width: 54px;

        flex-basis: 54px;

        font-size: 16px;
    }


    .wl-kit-field input {
        font-size: 14px;
    }


    .wl-kit-submit {
        min-height: 62px;

        margin-top: 17px;

        font-size: 16px;
    }

}

/* =========================================================
   CONTRACTOR VISIBILITY
   REDIRECT CTA PAGE - FINAL MASTER MOBILE FIX
   DESKTOP 768PX+ UNTOUCHED
========================================================= */

@media (max-width: 767px) {

    /* =====================================================
       GLOBAL MOBILE SAFETY
    ===================================================== */

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden !important;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    img,
    video,
    iframe {
        max-width: 100%;
        height: auto;
    }

    section {
        max-width: 100%;
    }


    /* =====================================================
       COMMON CONTAINERS
    ===================================================== */

    .report-kit-container,
    .cv-kit-container,
    .rps-container,
    .included-container,
    .report-difference-container,
    .who-for-container,
    .howworks-dark-container,
    .template-library-container,
    .bonus-container,
    .why-choose-stats-container,
    .agency-testimonials-container,
    .premium-faq-container,
    .wl-kit-container {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }


    /* =====================================================
       COMMON MOBILE SIDE SPACING
    ===================================================== */

    .report-kit-hero,
    .cv-kit-section,
    .report-preview-simple,
    .included-section,
    .report-difference-section,
    .who-for-section,
    .howworks-dark-section,
    .template-library-section,
    .bonus-templates-section,
    .why-choose-stats-section,
    .agency-testimonials-section,
    .premium-faq-section {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }


    /* =====================================================
       REPORT DOWNLOAD HERO
    ===================================================== */

    .report-kit-hero {
        padding-top: 65px !important;
        padding-bottom: 55px !important;
    }

    .report-kit-container {
        display: grid;

        grid-template-columns: 1fr !important;

        gap: 32px !important;
    }

    .report-kit-content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }


    /* Badge */

    .report-resource-badge {
        width: fit-content;
        max-width: 100%;

        min-height: 36px !important;

        margin-bottom: 16px !important;

        padding:
            6px
            13px !important;

        gap: 7px;
    }

    .report-resource-badge span {
        font-size: 8px !important;
        line-height: 1.4;
        letter-spacing: 0.8px !important;
    }


    /* Heading */

    .report-kit-title {
        width: 100%;
        max-width: 100%;

        font-size: clamp(31px, 9vw, 36px) !important;
        line-height: 1.08 !important;
        letter-spacing: -1.2px !important;
    }


    /* Description */

    .report-kit-description {
        width: 100%;
        max-width: 100%;

        margin:
            17px
            0
            22px !important;

        font-size: 13px !important;
        line-height: 1.7 !important;
    }


    /* =====================================================
       DOWNLOAD FORM
    ===================================================== */

    .report-kit-form-wrap {
        width: 100%;
    }

    .report-kit-form {
        width: 100%;

        padding: 17px 15px !important;

        border-radius: 16px !important;
    }

    .report-kit-form::before {
        left: 20px !important;
        right: 20px !important;
    }

    .report-form-grid {
        width: 100%;

        grid-template-columns: 1fr !important;

        gap: 12px !important;
    }

    .report-field {
        width: 100%;
        min-width: 0;
    }

    .report-input-wrap {
        width: 100%;

        height: 48px !important;

        padding:
            0
            13px !important;
    }

    .report-input-wrap input {
        width: 100%;
        min-width: 0;

        font-size: 13px !important;
    }

    .report-download-btn {
        width: 100%;

        min-height: 50px !important;

        margin-top: 15px !important;

        padding:
            0
            15px !important;

        font-size: 13px !important;
    }

    .report-form-benefits {
        width: 100%;

        padding-top: 14px !important;

        flex-direction: column;
        align-items: flex-start !important;

        gap: 7px !important;
    }

    .report-form-benefits > div {
        font-size: 11px !important;
    }


    /* =====================================================
       HERO REPORT IMAGE
    ===================================================== */

    .report-kit-visual {
        width: 100%;
        max-width: 100%;

        min-height: 0 !important;

        margin: 0 !important;

        padding:
            5px
            0
            0 !important;
    }

    .report-main-image {
        width: 100%;
        max-width: 100% !important;

        margin: auto;
    }

    .report-main-image img {
        width: 100%;

        animation: none !important;
    }

    .report-float-card {
        display: none !important;
    }

    .report-image-shadow {
        opacity: 0.45;
    }

    .report-dots,
    .report-glow {
        display: none !important;
    }


    /* =====================================================
       REPORTING KIT FEATURES
    ===================================================== */

    .cv-kit-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .cv-kit-header {
        width: 100%;
        max-width: 100%;

        margin-bottom: 28px !important;
    }

    .cv-kit-label {
        gap: 7px !important;

        margin-bottom: 13px !important;

        font-size: 8px !important;
        letter-spacing: 1px !important;
    }

    .cv-kit-label-line {
        width: 20px !important;
    }

    .cv-kit-header h2 {
        width: 100%;

        font-size: clamp(30px, 9vw, 35px) !important;
        line-height: 1.1 !important;
        letter-spacing: -1.15px !important;
    }

    .cv-kit-title-line {
        width: 120px !important;

        margin:
            15px
            auto
            14px !important;
    }

    .cv-kit-header p {
        width: 100%;
        max-width: 100%;

        font-size: 13px !important;
        line-height: 1.65 !important;
    }


    /* Cards */

    .cv-kit-cards {
        width: 100%;

        grid-template-columns: 1fr !important;

        gap: 10px !important;
    }

    .cv-kit-card {
        width: 100%;

        min-height: auto !important;

        transform: none !important;
    }

    .cv-kit-card:hover {
        transform: none !important;
    }

    .cv-kit-card-inner {
        width: 100%;

        min-height: auto !important;

        display: grid;

        grid-template-columns:
            48px
            minmax(0, 1fr) !important;

        align-items: flex-start;

        gap: 13px !important;

        padding:
            18px
            15px !important;
    }

    .cv-kit-icon {
        width: 46px !important;
        height: 46px !important;

        font-size: 17px !important;
    }

    .cv-kit-card-content {
        width: 100%;
        min-width: 0;
    }

    .cv-kit-card-content h3 {
        padding-right: 22px;

        font-size: 15px !important;
        line-height: 1.3;
    }

    .cv-kit-small-line {
        margin:
            8px
            0 !important;
    }

    .cv-kit-card-content p {
        font-size: 12px !important;
        line-height: 1.6;
    }

    .cv-kit-number {
        width: 42px !important;
        height: 38px !important;

        padding-top: 6px !important;

        font-size: 10px !important;
    }


    /* Benefits */

    .cv-kit-benefits {
        width: 100%;

        min-height: auto !important;

        margin-top: 14px !important;

        padding:
            17px
            15px !important;

        grid-template-columns: 1fr !important;

        gap: 10px !important;
    }

    .cv-kit-benefit {
        width: 100%;

        gap: 9px;

        font-size: 12px !important;
    }

    .cv-kit-benefit-icon {
        width: 29px !important;
        height: 29px !important;

        flex-basis: 29px;

        font-size: 11px !important;
    }

    .cv-kit-benefit-divider {
        display: none !important;
    }

    .cv-kit-side-report,
    .cv-kit-dots {
        display: none !important;
    }


    /* =====================================================
       REPORT PREVIEW
    ===================================================== */

    .report-preview-simple {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .rps-container {
        width: 100%;

        display: grid;

        grid-template-columns: 1fr !important;

        gap: 30px !important;
    }

    .rps-content,
    .rps-visual {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .rps-kicker {
        gap: 8px !important;

        margin-bottom: 14px !important;
    }

    .rps-kicker span {
        width: 23px !important;
    }

    .rps-kicker p {
        font-size: 8px !important;
        letter-spacing: 1.2px !important;
    }

    .rps-content h2 {
        width: 100%;
        max-width: 100%;

        font-size: clamp(30px, 9vw, 35px) !important;
        line-height: 1.1 !important;
        letter-spacing: -1.15px !important;
    }

    .rps-description {
        width: 100%;
        max-width: 100%;

        margin:
            17px
            0
            23px !important;

        font-size: 13px !important;
        line-height: 1.7 !important;
    }

    .rps-points {
        width: 100%;

        gap: 13px !important;

        margin-bottom: 23px !important;
    }

    .rps-point {
        width: 100%;

        grid-template-columns:
            43px
            minmax(0, 1fr) !important;

        gap: 11px !important;
    }

    .rps-point-icon {
        width: 42px !important;
        height: 42px !important;

        font-size: 15px !important;
    }

    .rps-point h4 {
        font-size: 14px !important;
    }

    .rps-point p {
        font-size: 12px !important;
    }

    .rps-button {
        width: 100% !important;
        min-width: 0 !important;

        min-height: 50px !important;

        padding:
            0
            15px !important;

        font-size: 13px !important;
    }

    .rps-visual {
        min-height: 0 !important;
    }

    .rps-image {
        width: 100%;
        max-width: 100%;
    }

    .rps-image-backdrop {
        display: none !important;
    }

    .rps-float {
        display: none !important;
    }

    .rps-glow {
        display: none !important;
    }


    /* =====================================================
       WHAT'S INCLUDED
    ===================================================== */

    .included-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .included-header {
        width: 100%;

        margin-bottom: 28px !important;
    }

    .included-kicker {
        font-size: 8px !important;
        letter-spacing: 1.2px !important;
    }

    .included-header h2 {
        font-size: clamp(30px, 9vw, 35px) !important;
        line-height: 1.1 !important;
        letter-spacing: -1.15px !important;
    }

    .included-main-grid {
        width: 100%;

        grid-template-columns: 1fr !important;

        gap: 11px !important;
    }

    .included-analytics-card,
    .included-list-card {
        width: 100%;
        min-width: 0;

        min-height: auto !important;

        padding:
            20px
            16px !important;

        transform: none !important;
    }

    .included-metrics {
        width: 100%;

        grid-template-columns: 1fr !important;

        gap: 8px !important;
    }

    .included-metric {
        width: 100%;
        min-width: 0;
    }

    .included-dots,
    .included-glow {
        display: none !important;
    }


    /* =====================================================
       REPORT DIFFERENCE
    ===================================================== */

    .report-difference-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .report-difference-container {
        width: 100% !important;
    }

    .report-difference-header {
        width: 100%;

        margin-bottom: 28px !important;
    }

    .report-difference-header h2,
    .report-difference-heading h2 {
        font-size: clamp(30px, 9vw, 35px) !important;
        line-height: 1.1 !important;
        letter-spacing: -1.15px !important;
    }

    .report-difference-grid,
    .report-difference-layout {
        width: 100%;

        grid-template-columns: 1fr !important;

        gap: 10px !important;
    }

    .report-difference-card {
        width: 100%;
        min-width: 0;

        min-height: auto !important;

        transform: none !important;
    }


    /* =====================================================
       WHO THIS IS FOR
    ===================================================== */

    .who-for-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .who-for-header {
        width: 100%;

        margin-bottom: 27px !important;
    }

    .who-for-kicker {
        font-size: 8px !important;
        letter-spacing: 1.1px !important;
    }

    .who-for-header h2 {
        font-size: clamp(30px, 9vw, 35px) !important;
        line-height: 1.1 !important;
        letter-spacing: -1.15px !important;
    }

    .who-for-pills {
        width: 100%;

        display: grid !important;

        grid-template-columns: 1fr !important;

        gap: 8px !important;
    }

    .who-for-pill {
        width: 100%;

        min-height: auto !important;

        padding:
            13px
            14px !important;

        transform: none !important;
    }

    .who-for-icon {
        flex-shrink: 0;
    }

    .who-for-dots,
    .who-for-arc {
        display: none !important;
    }


    /* =====================================================
       HOW IT WORKS
    ===================================================== */

    .howworks-dark-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .howworks-dark-container {
        width: 100% !important;
    }

    .howworks-dark-header h2,
    .howworks-dark-heading h2 {
        font-size: clamp(30px, 9vw, 35px) !important;
        line-height: 1.1 !important;
        letter-spacing: -1.15px !important;
    }

    .howworks-dark-grid,
    .howworks-dark-steps {
        width: 100%;

        grid-template-columns: 1fr !important;

        gap: 10px !important;
    }

    .howworks-dark-card,
    .howworks-dark-step {
        width: 100%;

        min-height: auto !important;

        transform: none !important;
    }


    /* =====================================================
       TEMPLATE LIBRARY
    ===================================================== */

    .template-library-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .template-library-heading {
        width: 100%;
        max-width: 100%;

        margin-bottom: 28px !important;
    }

    .template-library-label {
        gap: 8px !important;

        font-size: 8px !important;
    }

    .template-library-label .label-line {
        width: 21px !important;
    }

    .template-library-heading h2 {
        width: 100%;

        font-size: clamp(30px, 9vw, 35px) !important;
        line-height: 1.1 !important;
        letter-spacing: -1.15px !important;
    }

    .template-library-heading p {
        width: 100%;
        max-width: 100%;

        margin-top: 13px !important;

        font-size: 13px !important;
        line-height: 1.65 !important;
    }

    .template-title-divider {
        width: 40px !important;

        margin-top: 14px !important;
    }

    .template-library-grid {
        width: 100%;

        grid-template-columns: 1fr !important;

        gap: 10px !important;
    }

    .template-report-card,
    .template-report-card:nth-child(n),
    .template-report-card:nth-child(7) {
        width: 100% !important;

        grid-column: auto !important;

        padding:
            16px
            14px
            19px !important;

        border-radius: 16px !important;

        transform: none !important;
    }

    .template-report-preview {
        width: 100%;

        height: auto !important;

        aspect-ratio: 16 / 10;

        border-radius: 14px !important;
    }

    .template-report-preview img {
        width: 100%;
        height: 100%;

        object-fit: cover;
    }

    .template-report-icon {
        width: 44px !important;
        height: 44px !important;

        margin-top: -20px !important;

        font-size: 14px !important;
    }

    .template-report-card h3 {
        font-size: 15px !important;
    }

    .template-bottom-waves {
        display: none !important;
    }


    /* =====================================================
       BONUS TEMPLATES
    ===================================================== */

    .bonus-templates-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .bonus-heading {
        width: 100%;
        max-width: 100%;

        margin-bottom: 28px !important;
    }

    .bonus-label {
        margin-bottom: 14px !important;
    }

    .bonus-heading h2 {
        font-size: clamp(30px, 9vw, 35px) !important;
        line-height: 1.1 !important;
        letter-spacing: -1.15px !important;
    }

    .bonus-grid {
        width: 100%;

        grid-template-columns: 1fr !important;

        gap: 10px !important;
    }

    .bonus-card {
        width: 100%;
        min-width: 0;

        min-height: auto !important;

        transform: none !important;
    }

    .bonus-card:hover {
        transform: none !important;
    }

    .bonus-circle,
    .bonus-dots,
    .bonus-bottom-shape {
        display: none !important;
    }


    /* =====================================================
       WHY CHOOSE / STATS
    ===================================================== */

    .why-choose-stats-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .why-choose-stats-container {
        width: 100% !important;
    }

    .why-choose-stats-header h2,
    .why-choose-stats-heading h2 {
        font-size: clamp(30px, 9vw, 35px) !important;
        line-height: 1.1 !important;
        letter-spacing: -1.15px !important;
    }

    .why-choose-stats-grid,
    .why-choose-stats-layout {
        width: 100%;

        grid-template-columns: 1fr !important;

        gap: 10px !important;
    }

    .why-choose-stats-card,
    .why-choose-stat {
        width: 100%;

        min-height: auto !important;

        transform: none !important;
    }


    /* =====================================================
       TESTIMONIALS
    ===================================================== */

    .agency-testimonials-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .agency-testimonials-container {
        width: 100% !important;
    }

    .agency-testimonials-header h2,
    .agency-testimonials-heading h2 {
        font-size: clamp(30px, 9vw, 35px) !important;
        line-height: 1.1 !important;
        letter-spacing: -1.15px !important;
    }

    .agency-testimonials-grid,
    .agency-testimonials-cards {
        width: 100%;

        grid-template-columns: 1fr !important;

        gap: 10px !important;
    }

    .agency-testimonial-card {
        width: 100%;

        min-height: auto !important;

        transform: none !important;
    }


    /* =====================================================
       PREMIUM FAQ
    ===================================================== */

    .premium-faq-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .premium-faq-container {
        width: 100% !important;
    }

    .premium-faq-label {
        gap: 8px !important;

        margin-bottom: 13px !important;

        font-size: 8px !important;
    }

    .faq-label-dash {
        width: 22px !important;
    }

    .premium-faq-heading h2 {
        width: 100%;

        font-size: clamp(30px, 9vw, 35px) !important;
        line-height: 1.1 !important;
        letter-spacing: -1.15px !important;
    }

    .premium-faq-heading-line {
        width: 42px !important;

        margin-top: 13px !important;
    }

    .premium-faq-layout {
        width: 100%;

        grid-template-columns: 1fr !important;

        gap: 24px !important;
    }

    .premium-faq-list {
        width: 100%;

        gap: 7px !important;
    }

    .premium-faq-item {
        width: 100%;
    }

    .premium-faq-question {
        width: 100%;

        padding:
            14px
            12px
            10px !important;

        gap: 9px !important;

        font-size: 13px !important;
        line-height: 1.45;
    }

    .premium-faq-toggle {
        width: 30px !important;
        height: 30px !important;

        flex: 0 0 30px !important;
    }

    .premium-faq-answer p {
        padding:
            0
            12px
            16px !important;

        font-size: 12.5px !important;
        line-height: 1.65 !important;
    }


    /* FAQ image */

    .premium-faq-visual {
        width: 100%;

        min-height: 250px !important;

        margin-top: 5px !important;
    }

    .premium-faq-visual-circle {
        width: 220px !important;
        height: 220px !important;

        top: 10px !important;
    }

    .premium-faq-visual-circle::before {
        inset: 35px !important;
    }

    .premium-faq-image-wrap {
        width: 100% !important;
        max-width: 300px !important;
    }

    .premium-faq-top-circle,
    .premium-faq-dots {
        display: none !important;
    }


    /* =====================================================
       FINAL CTA
    ===================================================== */

    .wl-kit-section {
        width: 100%;

        min-height: auto !important;

        padding:
            65px
            16px !important;
    }

    .wl-kit-container {
        width: 100%;
        max-width: 100%;
    }

    .wl-kit-eyebrow {
        gap: 8px !important;

        margin-bottom: 14px !important;

        font-size: 8px !important;
        letter-spacing: 1.1px !important;
    }

    .wl-kit-eyebrow-line {
        width: 22px !important;
    }

    .wl-kit-heading {
        width: 100%;

        font-size: clamp(30px, 9vw, 35px) !important;
        line-height: 1.1 !important;
        letter-spacing: -1.15px !important;
    }

    .wl-kit-subtitle {
        width: 100%;
        max-width: 100%;

        margin-top: 17px !important;

        font-size: 13px !important;
        line-height: 1.7 !important;
    }


    /* Final CTA form */

    .wl-kit-form-box {
        width: 100%;

        margin-top: 24px !important;

        padding:
            17px
            15px !important;

        border-radius: 16px !important;
    }

    .wl-kit-grid {
        width: 100%;

        grid-template-columns: 1fr !important;

        gap: 11px !important;
    }

    .wl-kit-field {
        width: 100%;
        min-width: 0;
    }

    .wl-kit-field input,
    .wl-kit-field textarea,
    .wl-kit-field select {
        width: 100%;
        max-width: 100%;
    }

    .wl-kit-submit {
        width: 100%;

        min-height: 50px !important;

        font-size: 13px !important;
    }

}


/* =========================================================
   SMALL MOBILE
   iPHONE SE / 320PX - 480PX
========================================================= */

@media (max-width: 480px) {

    /* -----------------------------------------
       Side Padding
    ----------------------------------------- */

    .report-kit-hero,
    .cv-kit-section,
    .report-preview-simple,
    .included-section,
    .report-difference-section,
    .who-for-section,
    .howworks-dark-section,
    .template-library-section,
    .bonus-templates-section,
    .why-choose-stats-section,
    .agency-testimonials-section,
    .premium-faq-section {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }


    /* -----------------------------------------
       Hero
    ----------------------------------------- */

    .report-kit-hero {
        padding-top: 55px !important;
        padding-bottom: 45px !important;
    }

    .report-kit-title {
        font-size: 30px !important;
        letter-spacing: -1px !important;
    }

    .report-kit-description {
        font-size: 12.5px !important;
    }

    .report-kit-form {
        padding:
            15px
            13px !important;
    }


    /* -----------------------------------------
       Common headings
    ----------------------------------------- */

    .cv-kit-header h2,
    .rps-content h2,
    .included-header h2,
    .report-difference-header h2,
    .report-difference-heading h2,
    .who-for-header h2,
    .howworks-dark-header h2,
    .howworks-dark-heading h2,
    .template-library-heading h2,
    .bonus-heading h2,
    .why-choose-stats-header h2,
    .why-choose-stats-heading h2,
    .agency-testimonials-header h2,
    .agency-testimonials-heading h2,
    .premium-faq-heading h2,
    .wl-kit-heading {
        font-size: 29px !important;
        line-height: 1.12 !important;
        letter-spacing: -1px !important;
    }


    /* -----------------------------------------
       CV KIT Card
    ----------------------------------------- */

    .cv-kit-card-inner {
        grid-template-columns:
            42px
            minmax(0, 1fr) !important;

        gap: 11px !important;

        padding:
            16px
            13px !important;
    }

    .cv-kit-icon {
        width: 40px !important;
        height: 40px !important;

        font-size: 15px !important;
    }


    /* -----------------------------------------
       Report Preview
    ----------------------------------------- */

    .rps-point {
        grid-template-columns:
            38px
            minmax(0, 1fr) !important;
    }

    .rps-point-icon {
        width: 37px !important;
        height: 37px !important;
    }


    /* -----------------------------------------
       FAQ
    ----------------------------------------- */

    .premium-faq-visual {
        min-height: 220px !important;
    }

    .premium-faq-visual-circle {
        width: 190px !important;
        height: 190px !important;
    }

    .premium-faq-image-wrap {
        max-width: 260px !important;
    }


    /* -----------------------------------------
       Final CTA
    ----------------------------------------- */

    .wl-kit-section {
        padding:
            55px
            15px !important;
    }

}