/* Home page only. Keep other page rules in a matching page-specific file. */
.hero {
    background: radial-gradient(circle at 7% 15%, #143b61 0, transparent 23%), linear-gradient(112deg, var(--fx-navy) 0 63%, #102e49 63% 100%);
    color: var(--fx-white);
    min-height: 438px;
    padding: 60px 0 44px;
    position: relative;
}

.hero:before {
    background-image: radial-gradient(rgba(255, 255, 255, .14) 1px, transparent 1px);
    background-size: 10px 10px;
    content: "";
    height: 220px;
    left: 0;
    opacity: .5;
    position: absolute;
    top: 0;
    width: 220px;
}

.hero__grid {
    align-items: center;
    display: grid;
    gap: 40px;
    grid-template-columns: 1.05fr .95fr;
    position: relative;
}

.hero h1 {
    font-size: clamp(2.45rem, 4.5vw, 4.35rem);
    letter-spacing: -.055em;
    line-height: 1.03;
    margin: 0 0 17px;
    max-width: 600px;
}

.hero h1 span {
    color: var(--fx-gold);
    display: block;
}

.hero p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 20px;
    max-width: 490px;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
}

.hero__buttons {
    gap: 14px;
    margin: 0 0 20px;
}

.hero__points {
    gap: 22px;
    font-size: .82rem;
    font-weight: 700;
}

.hero__points span:before {
    color: var(--fx-gold);
    content: "✓";
    font-weight: 900;
    margin-right: 7px;
}

.hero-visual {
    background: linear-gradient(135deg, #9e765d, #332c2b 55%, #162f45);
    border-radius: 58% 0 0 0;
    height: 405px;
    overflow: hidden;
    position: relative;
}

.hero-visual__image {
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center;
    position: absolute;
    width: 100%;
}

.hero-visual:before {
    background: linear-gradient(120deg, transparent 35%, rgba(255, 173, 22, .55) 36% 39%, transparent 40%), repeating-linear-gradient(90deg, rgba(255, 255, 255, .08) 0 2px, transparent 2px 54px);
    content: "";
    inset: 0;
    position: absolute;
}

.hero-visual__worker {
    background: linear-gradient(145deg, #182b3c, #0b1520 54%, #b07a56 55% 70%, #162637 71%);
    border: 7px solid rgba(255, 255, 255, .08);
    border-radius: 45% 42% 12% 46%;
    bottom: -55px;
    height: 360px;
    position: absolute;
    right: 46px;
    transform: rotate(-8deg);
    width: 230px;
}

.hero-visual__tool {
    background: #f0a414;
    border: 12px solid #192735;
    border-radius: 12px;
    bottom: 55px;
    height: 100px;
    left: 78px;
    position: absolute;
    transform: rotate(22deg);
    width: 70px;
}

.review-card {
    align-items: center;
    backdrop-filter: blur(10px);
    background: rgba(7, 20, 33, .77);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 12px;
    bottom: 36px;
    display: flex;
    gap: 13px;
    padding: 12px 17px;
    position: absolute;
    right: 22px;
    z-index: 2;
}

.review-avatars {
    display: flex;
}

.review-avatars i {
    background: #e1b08d;
    border: 2px solid #fff;
    border-radius: 50%;
    display: block;
    height: 34px;
    margin-right: -8px;
    width: 34px;
}

.review-card strong {
    color: var(--fx-gold);
    font-size: 1rem;
}

.review-card small {
    display: block;
    font-size: .73rem;
}

.services {
    margin: -20px auto 0;
    position: relative;
    z-index: 3;
}

.service-grid {
    background: var(--fx-white);
    border-radius: var(--fx-radius-lg);
    box-shadow: var(--fx-shadow);
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    padding: 20px 12px;
    text-align: center;
}

.service-card {
    align-items: center;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    font-size: .72rem;
    font-weight: 800;
    gap: 8px;
    padding: 8px 5px;
    transition: background .2s, color .2s, transform .2s;
}

.service-card:hover {
    background: #fff6e5;
    color: #bc7800;
    transform: translateY(-3px);
}

.service-card__icon {
    align-items: center;
    border: 1.5px solid #122943;
    border-radius: 50%;
    display: flex;
    height: 43px;
    justify-content: center;
    transition: border-color .2s, background .2s;
    width: 43px;
}

.service-card:hover .service-card__icon {
    background: var(--fx-gold);
    border-color: var(--fx-gold);
    color: var(--fx-navy);
}

.service-card__icon svg {
    height: 25px;
    width: 25px;
}

.steps {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, 1fr);
    margin: 34px 0 0;
}

.step {
    background: var(--fx-white);
    border: 1px solid var(--fx-line);
    border-radius: var(--fx-radius-md);
    min-height: 239px;
    overflow: hidden;
    padding: 25px 23px 22px;
    position: relative;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.step::after {
    background: linear-gradient(90deg, var(--fx-gold), #ffd879);
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    top: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s;
    width: 100%;
}

.step:hover {
    border-color: #f6bf58;
    box-shadow: var(--fx-shadow);
    transform: translateY(-4px);
}

.step:hover::after {
    transform: scaleX(1);
}

.step__number {
    color: #d89612;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .1em;
    position: absolute;
    right: 23px;
    top: 25px;
}

.process-step-icon {
    align-items: center;
    background: #fff7e7;
    border-radius: 14px;
    color: var(--fx-navy-2);
    display: flex;
    height: 69px;
    justify-content: center;
    width: 69px;
}

.process-step-icon svg {
    height: 45px;
    width: 45px;
}

.step h3 {
    font-size: 1.04rem;
    letter-spacing: -.02em;
    margin: 22px 0 7px;
}

.step p {
    color: var(--fx-muted);
    font-size: .8rem;
    line-height: 1.6;
    margin: 0;
    max-width: 280px;
}

.audiences {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr 1fr;
    margin-top: 39px;
}

.audience {
    border-radius: 11px;
    min-height: 252px;
    overflow: hidden;
    padding: 29px 33px;
    position: relative;
}

.audience--home {
    background: linear-gradient(135deg, #0b2944, #061525);
    color: var(--fx-white);
}

.audience--trade {
    background: #fcfaf6;
    color: #11243b;
}

.audience h2 {
    font-size: 1.28rem;
    margin: 0 0 13px;
}

.audience-art {
    bottom: 10px;
    color: rgba(255, 255, 255, .35);
    font-size: 6.7rem;
    position: absolute;
    right: 28px;
}

.audience--trade .audience-art {
    color: #e6ad34;
}

.audience .fixquo-button {
    min-height: 41px;
    padding: 0 18px;
    position: relative;
    z-index: 1;
}

.cta-band {
    align-items: center;
    background: linear-gradient(110deg, #102f4d, #05182b);
    border-radius: 11px;
    color: var(--fx-white);
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin-top: 20px;
    padding: 25px 34px;
}

.cta-band__intro {
    align-items: center;
    display: flex;
    gap: 20px;
}

.cta-band h2 {
    font-size: 1.26rem;
    margin: 0 0 3px;
}

.cta-band p {
    font-size: .82rem;
    margin: 0;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 1200px) {

    .service-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
    }

}

@media (max-width: 992px) {

    .hero {
        min-height: auto;
        padding: 4rem 0 3rem;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero h1,
    .hero p {
        margin-inline: auto;
    }

    .hero__buttons,
    .hero__points {
        justify-content: center;
    }

    .hero-visual {
        height: 360px;
        max-width: 640px;
        margin: 0 auto;
    }

    .hero-visual__worker {
        right: 50%;
        transform: translateX(50%) rotate(-8deg);
    }

    .review-card {
        right: 1.5rem;
    }

    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .audiences {
        grid-template-columns: 1fr;
    }

    .cta-band {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

}

@media (max-width: 768px) {

    .hero {
        padding: 3rem 0 2.5rem;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 8vw, 3rem);
    }

    .hero p {
        font-size: 1rem;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__buttons .fixquo-button {
        width: 100%;
        justify-content: center;
    }

    .hero__points {
        justify-content: center;
        gap: .75rem 1.5rem;
    }

    .hero-visual {
        height: 300px;
        border-radius: 2rem;
    }

    .hero-visual__worker {
        width: 180px;
        height: 280px;
        bottom: -30px;
    }

    .review-card {
        position: static;
        margin-top: 1rem;
        width: fit-content;
    }

    .services {
        margin-top: 1.5rem;
    }

    .service-grid {
        grid-template-columns: repeat(3, 3fr);
        padding: 1rem;
    }

    .service-card {
        font-size: .8rem;
    }

    .step {
        min-height: auto;
    }

    .audience {
        min-height: auto;
        padding: 2rem;
    }

    .audience-art {
        display: none;
    }

    .cta-band {
        padding: 2rem;
    }

    .cta-band__intro {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cta-band .fixquo-button {
        width: 100%;
        justify-content: center;
    }

    /* .steps {
        grid-template-columns: 1fr;
    } */

}

@media (max-width: 480px) {

    .hero__points {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-grid {
        grid-template-columns: repeat(3, 3fr);
    }


    .process-step-icon {
        width: 60px;
        height: 60px;
    }

    .process-step-icon svg {
        width: 36px;
        height: 36px;
    }

    .steps {
        grid-template-columns: 1fr;
    }

}