/* =========================================================
   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: 95px 24px 70px;

    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.8vw, 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: 100px 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: 105px 24px 110px;

    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: 85px 24px 65px;

    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,
            5vw,
            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: 90px 24px 90px;

    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,
            74px
        );

    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: 110px 24px 120px;

    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,
            5vw,
            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: 100px 24px 110px;

    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: flex-start;

    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, 72px);

    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;
    }

}