/* ==========================================================================
   FERRODEI HOME
   REDESIGN 2026
   ==========================================================================

   White      #FFFFFF
   Violet     #330456
   Text       #16181B

   IMPORTANT:
   #16181B IS USED FOR TEXT / LINES ONLY.
   NOT FOR LARGE BACKGROUNDS OR PRIMARY HOVERS.
   ========================================================================== */


/* ==========================================================================
   BASE
   ========================================================================== */

.page-home .site-main {
    overflow: hidden;
}


.page-home .fdx-eyebrow {
    margin: 0 0 17px;

    color: #330456;

    font-size: 9px;
    line-height: 1;

    font-weight: 700;

    letter-spacing: .17em;

    text-transform: uppercase;
}


/* ==========================================================================
   HERO
   ========================================================================== */

body.page-home
.site-main
> .fdx-hero {
    position: relative;

    width: 100vw !important;
    max-width: none !important;

    height: min(62vw, 820px);

    margin:
        0
        calc(50% - 50vw)
        0 !important;

    padding: 0 !important;

    overflow: hidden;

    background: #FFFFFF;
}


.page-home .fdx-hero__ambient {
    position: absolute;

    inset: -55px;

    z-index: 0;

    background:
        url('/assets/img/hero/ferrodei-home-banner.png')
        center / cover
        no-repeat;

    filter: blur(35px);

    transform: scale(1.08);

    opacity: .50;
}


.page-home .fdx-hero__artwork {
    position: absolute;

    inset: 0;

    z-index: 1;

    display: flex;

    align-items: center;
    justify-content: center;
}


.page-home
.fdx-hero__artwork
img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
    object-position: center;
}


.page-home .fdx-hero__fade {
    position: absolute;

    z-index: 3;

    left: 0;
    right: 0;
    bottom: -1px;

    height: 115px;

    background:
        linear-gradient(
            to bottom,
            rgba(255,255,255,0),
            #FFFFFF
        );

    pointer-events: none;
}


.page-home .fdx-hero__seo {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    margin: -1px !important;
    padding: 0 !important;

    overflow: hidden !important;

    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;

    white-space: nowrap !important;

    border: 0 !important;
}


/* ==========================================================================
   QUICK ACCESS
   ========================================================================== */

.page-home .fdx-access {
    position: relative;

    z-index: 10;

    display: grid;

    grid-template-columns:
        1fr
        1fr
        1.22fr;

    margin-top: -22px !important;

    overflow: hidden;

    border: 1px solid #16181B;

    border-radius: 18px;

    background: #FFFFFF;
}


.page-home .fdx-access__item {
    min-height: 130px;

    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 25px;

    padding: 23px;

    border-right: 1px solid #16181B;

    background: #FFFFFF;

    color: #16181B;

    transition:
        background-color 220ms ease,
        color 220ms ease;
}


.page-home
.fdx-access__item:last-child {
    border-right: 0;
}


.page-home
.fdx-access__item
small {
    display: block;

    margin-bottom: 7px;

    color: #330456;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .13em;

    text-transform: uppercase;
}


.page-home
.fdx-access__item
strong {
    display: block;

    font-size: clamp(20px, 1.8vw, 28px);

    line-height: 1;

    letter-spacing: -.035em;
}


.page-home
.fdx-access__item
> span {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: grid;

    place-items: center;

    border: 1px solid #330456;

    border-radius: 50%;

    color: #330456;

    transition:
        background-color 220ms ease,
        color 220ms ease,
        transform 220ms ease;
}


.page-home
.fdx-access__item:hover {
    background: #330456;

    color: #FFFFFF;
}


.page-home
.fdx-access__item:hover
small {
    color: #FFFFFF;
}


.page-home
.fdx-access__item:hover
> span {
    background: #FFFFFF;

    color: #330456;

    transform: rotate(8deg);
}


.page-home
.fdx-access__item--primary {
    background: #330456;

    color: #FFFFFF;
}


.page-home
.fdx-access__item--primary
small {
    color: #FFFFFF;
}


.page-home
.fdx-access__item--primary
> span {
    border-color: #FFFFFF;

    color: #FFFFFF;
}


.page-home
.fdx-access__item--primary:hover {
    background: #FFFFFF;

    color: #330456;
}


.page-home
.fdx-access__item--primary:hover
small {
    color: #330456;
}


.page-home
.fdx-access__item--primary:hover
> span {
    background: #330456;

    color: #FFFFFF;
}


/* ==========================================================================
   BUTTON
   ========================================================================== */

.page-home .fdx-button {
    min-height: 47px;

    display: inline-flex;

    align-items: center;
    justify-content: space-between;

    gap: 23px;

    padding:
        0
        7px
        0
        18px;

    border: 1px solid #330456;

    border-radius: 999px;

    background: #FFFFFF;

    color: #330456;

    font-size: 11px;

    font-weight: 700;

    white-space: nowrap;

    transition:
        background-color 180ms ease,
        color 180ms ease,
        transform 180ms ease,
        box-shadow 180ms ease;
}


.page-home
.fdx-button
i {
    width: 32px;
    height: 32px;

    flex: 0 0 32px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: #330456;

    color: #FFFFFF;

    font-style: normal;

    transition:
        background-color 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}


.page-home .fdx-button:hover {
    background: #330456;

    color: #FFFFFF;

    transform: translateY(-2px);

    box-shadow:
        0
        14px
        32px
        rgba(51, 4, 86, .16);
}


.page-home
.fdx-button:hover
i {
    background: #FFFFFF;

    color: #330456;

    transform: rotate(8deg);
}


/* ==========================================================================
   INTRO
   ========================================================================== */

.page-home .fdx-intro {
    display: grid;

    grid-template-columns:
        minmax(0, 1.3fr)
        minmax(300px, .7fr);

    gap:
        55px
        clamp(60px, 9vw, 145px);

    align-items: end;

    padding:
        120px
        0
        75px;
}


.page-home
.fdx-intro__statement
h2 {
    max-width: 790px;

    margin: 0;

    color: #16181B;

    font-size:
        clamp(
            46px,
            5vw,
            72px
        );

    line-height: .97;

    letter-spacing: -.055em;
}


.page-home
.fdx-intro__statement
h2 span {
    display: block;

    color: #330456;
}


.page-home
.fdx-intro__aside
> p {
    max-width: 450px;

    margin: 0 0 29px;

    color: #16181B;

    font-size: 16px;

    line-height: 1.72;
}


/* applications */

.page-home
.fdx-intro__applications {
    grid-column: 1 / -1;

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    padding-top: 26px;

    border-top: 1px solid #16181B;
}


.page-home
.fdx-intro__applications
span {
    min-height: 38px;

    display: inline-flex;

    align-items: center;

    padding: 0 16px;

    border: 1px solid #16181B;

    border-radius: 999px;

    color: #16181B;

    font-size: 10px;

    font-weight: 600;

    transition:
        border-color 180ms ease,
        color 180ms ease,
        background-color 180ms ease;
}


.page-home
.fdx-intro__applications
span:hover {
    border-color: #330456;

    background: #330456;

    color: #FFFFFF;
}


/* ==========================================================================
   SECTION HEADER
   ========================================================================== */

.page-home .fdx-section-header {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 38px;
}


.page-home
.fdx-section-header
h2 {
    margin: 0;

    color: #16181B;

    font-size:
        clamp(
            42px,
            4.7vw,
            66px
        );

    line-height: .96;

    letter-spacing: -.05em;
}


.page-home
.fdx-section-header
h2 span {
    display: block;

    color: #330456;
}


/* ==========================================================================
   PRODUCTS
   ========================================================================== */

.page-home .fdx-products {
    padding:
        80px
        0
        115px;
}


.page-home
.fdx-products__grid {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 13px;
}


/* product */

.page-home .fdx-product {
    min-width: 0;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    border: 1px solid #16181B;

    border-radius: 15px;

    background: #FFFFFF;

    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}


.page-home .fdx-product:hover {
    transform: translateY(-5px);

    border-color: #330456;

    box-shadow:
        0
        20px
        48px
        rgba(51, 4, 86, .11);
}


/* product media */

.page-home
.fdx-product__media {
    position: relative;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    background: #FFFFFF;
}


.page-home
.fdx-product__media
img {
    position: relative;

    z-index: 2;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 550ms ease,
        filter 550ms ease;
}


.page-home
.fdx-product:hover
.fdx-product__media
img {
    transform: scale(1.045);
}


/* image overlay */

.page-home
.fdx-product__media::after {
    content: '';

    position: absolute;

    z-index: 3;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(51,4,86,0) 58%,
            rgba(51,4,86,.20) 100%
        );

    opacity: 0;

    transition: opacity 220ms ease;

    pointer-events: none;
}


.page-home
.fdx-product:hover
.fdx-product__media::after {
    opacity: 1;
}


/* view badge */

.page-home
.fdx-product__view {
    position: absolute;

    z-index: 5;

    right: 12px;
    bottom: 12px;

    min-width: 42px;
    height: 30px;

    display: grid;

    place-items: center;

    padding: 0 10px;

    border-radius: 999px;

    background: #330456;

    color: #FFFFFF;

    font-size: 9px;

    font-weight: 700;

    opacity: 0;

    transform: translateY(6px);

    transition:
        opacity 220ms ease,
        transform 220ms ease;
}


.page-home
.fdx-product:hover
.fdx-product__view {
    opacity: 1;

    transform: translateY(0);
}


/* fallback */

.page-home
.fdx-product__fallback {
    position: absolute;

    inset: 0;

    z-index: 1;

    display: grid;

    place-items: center;

    padding: 20px;

    background: #FFFFFF;

    color: #330456;

    font-size: 16px;

    font-weight: 700;

    letter-spacing: .08em;
}


.page-home
.fdx-product__media.is-missing
.fdx-product__fallback {
    z-index: 4;
}


/* body */

.page-home
.fdx-product__body {
    min-height: 190px;

    display: flex;

    flex-direction: column;

    padding:
        18px
        16px;
}


.page-home
.fdx-product__body
small {
    min-height: 14px;

    margin-bottom: 8px;

    color: #330456;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .11em;

    text-transform: uppercase;
}


.page-home
.fdx-product__body
h3 {
    min-height: 31px;

    margin: 0 0 10px;

    color: #16181B;

    font-size: 22px;

    line-height: 1.05;
}


.page-home
.fdx-product__body
p {
    margin: 0;

    color: #16181B;

    font-size: 12px;

    line-height: 1.57;
}


/* ==========================================================================
   EXPERIENCE
   ========================================================================== */

.page-home .fdx-experience {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(340px, .85fr);

    gap:
        clamp(60px, 9vw, 140px);

    align-items: start;

    padding:
        clamp(48px, 6vw, 75px);

    border: 1px solid #330456;

    border-radius: 24px;

    background: #FFFFFF;
}


.page-home
.fdx-experience__content
h2 {
    max-width: 760px;

    margin: 0;

    color: #16181B;

    font-size:
        clamp(
            40px,
            4.6vw,
            63px
        );

    line-height: .97;

    letter-spacing: -.05em;
}


.page-home
.fdx-experience__content
h2 span {
    display: block;

    color: #330456;
}


.page-home
.fdx-experience__text {
    max-width: 520px;

    margin:
        30px
        0
        0;

    color: #16181B;

    font-size: 14px;

    line-height: 1.7;
}


/* experience feature list */

.page-home
.fdx-experience__features {
    display: flex;

    flex-direction: column;
}


.page-home
.fdx-experience__features
article {
    padding:
        24px
        0;

    border-bottom:
        1px solid #16181B;
}


.page-home
.fdx-experience__features
article:first-child {
    padding-top: 0;
}


.page-home
.fdx-experience__features
article:last-child {
    padding-bottom: 0;

    border-bottom: 0;
}


.page-home
.fdx-experience__features
strong {
    display: block;

    margin-bottom: 7px;

    color: #330456;

    font-size: 17px;

    line-height: 1.15;
}


.page-home
.fdx-experience__features
p {
    max-width: 380px;

    margin: 0;

    color: #16181B;

    font-size: 12px;

    line-height: 1.6;
}


/* ==========================================================================
   QUALITY
   ========================================================================== */

.page-home .fdx-quality {
    display: grid;

    grid-template-columns:
        minmax(0, 1.12fr)
        minmax(350px, .88fr);

    margin-top: 105px !important;
    margin-bottom: 105px !important;

    overflow: hidden;

    border: 1px solid #16181B;

    border-radius: 24px;

    background: #FFFFFF;
}


.page-home
.fdx-quality__media {
    min-height: 520px;

    overflow: hidden;
}


.page-home
.fdx-quality__media
img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 650ms ease;
}


.page-home
.fdx-quality:hover
.fdx-quality__media
img {
    transform: scale(1.025);
}


.page-home
.fdx-quality__content {
    display: flex;

    flex-direction: column;
    justify-content: space-between;

    gap: 70px;

    padding:
        clamp(40px, 5vw, 68px);
}


.page-home
.fdx-quality__content
h2 {
    margin: 0;

    color: #16181B;

    font-size:
        clamp(
            38px,
            4vw,
            56px
        );

    line-height: .98;

    letter-spacing: -.05em;
}


.page-home
.fdx-quality__content
h2 span {
    display: block;

    color: #330456;
}


.page-home
.fdx-quality__bottom
> p {
    max-width: 430px;

    margin: 0 0 28px;

    color: #16181B;

    font-size: 15px;

    line-height: 1.7;
}


/* ==========================================================================
   FINAL CTA
   ========================================================================== */

.page-home .fdx-cta {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(220px, 290px);

    gap:
        clamp(55px, 8vw, 120px);

    align-items: end;

    margin-bottom: 90px !important;

    padding:
        clamp(42px, 5vw, 64px);

    overflow: hidden;

    border: 1px solid #330456;

    border-radius: 24px;

    background: #FFFFFF;
}


/* subtle violet accent */

.page-home
.fdx-cta::after {
    content: '';

    position: absolute;

    width: 300px;
    height: 300px;

    right: -190px;
    top: -190px;

    border: 1px solid #330456;

    border-radius: 50%;

    pointer-events: none;
}


.page-home
.fdx-cta__content {
    position: relative;

    z-index: 2;
}


.page-home
.fdx-cta__content
h2 {
    max-width: 760px;

    margin: 0;

    color: #16181B;

    font-size:
        clamp(39px, 4.5vw, 61px);

    line-height: .97;

    letter-spacing: -.05em;
}


.page-home
.fdx-cta__content
h2 span {
    display: block;

    color: #330456;
}


/* actions */

.page-home
.fdx-cta__actions {
    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    gap: 9px;
}


.page-home
.fdx-cta__primary,
.page-home
.fdx-cta__secondary {
    width: 100%;
    min-height: 51px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 20px;

    padding: 0 19px;

    border-radius: 999px;

    font-size: 11px;

    font-weight: 700;

    transition:
        color 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        transform 180ms ease;
}


.page-home
.fdx-cta__primary {
    justify-content: space-between;

    background: #330456;

    color: #FFFFFF;
}


.page-home
.fdx-cta__primary
i {
    font-style: normal;
}


.page-home
.fdx-cta__primary:hover {
    background: #FFFFFF;

    color: #330456;

    box-shadow:
        inset 0 0 0 1px #330456;

    transform: translateY(-2px);
}


.page-home
.fdx-cta__secondary {
    border: 1px solid #330456;

    background: #FFFFFF;

    color: #330456;
}


.page-home
.fdx-cta__secondary:hover {
    background: #330456;

    color: #FFFFFF;
}


/* ==========================================================================
   PRIVACY MODAL
   ========================================================================== */

body.fdx-privacy-open {
    overflow: hidden;
}


.fdx-privacy[hidden] {
    display: none !important;
}


.page-home .fdx-privacy {
    position: fixed;

    inset: 0;

    z-index: 1000000;

    display: grid;

    place-items: center;

    padding: 24px;
}


.page-home
.fdx-privacy__backdrop {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;

    background:
        rgba(51, 4, 86, .72);

    backdrop-filter: blur(8px);

    -webkit-backdrop-filter: blur(8px);
}


.page-home
.fdx-privacy__dialog {
    position: relative;

    z-index: 2;

    width:
        min(
            100%,
            690px
        );

    max-height:
        calc(100dvh - 48px);

    overflow-y: auto;

    padding: 32px;

    border: 1px solid #330456;

    border-radius: 20px;

    background: #FFFFFF;

    box-shadow:
        0
        35px
        100px
        rgba(51, 4, 86, .22);
}


/* header */

.page-home
.fdx-privacy__header {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 25px;

    margin-bottom: 26px;
}


.page-home
.fdx-privacy__header
> div
> span {
    display: block;

    margin-bottom: 8px;

    color: #330456;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .15em;
}


.page-home
.fdx-privacy__header
h2 {
    margin: 0;

    color: #16181B;

    font-size:
        clamp(
            29px,
            4vw,
            40px
        );

    line-height: 1;

    letter-spacing: -.04em;
}


/* close */

.page-home
.fdx-privacy__close {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: grid;

    place-items: center;

    padding: 0;

    border: 1px solid #330456;

    border-radius: 50%;

    background: #FFFFFF;

    color: #330456;

    font-size: 22px;

    cursor: pointer;

    transition:
        color 180ms ease,
        background-color 180ms ease;
}


.page-home
.fdx-privacy__close:hover {
    background: #330456;

    color: #FFFFFF;
}


/* body */

.page-home
.fdx-privacy__body
p {
    margin: 0 0 18px;

    color: #16181B;

    font-size: 13px;

    line-height: 1.68;
}


/* channels */

.page-home
.fdx-privacy__channels {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 10px;

    margin: 22px 0;
}


.page-home
.fdx-privacy__channels
> div {
    min-height: 100px;

    display: flex;

    flex-direction: column;
    justify-content: space-between;

    padding: 16px;

    border: 1px solid #330456;

    border-radius: 12px;
}


.page-home
.fdx-privacy__channels
span {
    color: #330456;

    font-size: 8px;

    font-weight: 700;

    text-transform: uppercase;
}


.page-home
.fdx-privacy__channels
strong {
    color: #16181B;

    font-size: 12px;

    line-height: 1.5;
}


/* footer */

.page-home
.fdx-privacy__footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid #330456;
}


.page-home
.fdx-privacy__footer
> span {
    color: #16181B;

    font-size: 9px;

    font-weight: 700;
}


.page-home
.fdx-privacy__footer
button {
    min-width: 120px;
    min-height: 43px;

    border: 1px solid #330456;

    border-radius: 999px;

    background: #330456;

    color: #FFFFFF;

    font-size: 11px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background-color 180ms ease,
        color 180ms ease;
}


.page-home
.fdx-privacy__footer
button:hover {
    background: #FFFFFF;

    color: #330456;
}


/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 1100px) {

    .page-home
    .fdx-products__grid {
        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            );
    }

}


@media (max-width: 900px) {

    .page-home
    .fdx-intro {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .page-home
    .fdx-experience {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .page-home
    .fdx-quality {
        grid-template-columns: 1fr;
    }


    .page-home
    .fdx-quality__media {
        min-height: 390px;
    }


    .page-home
    .fdx-cta {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .page-home
    .fdx-cta__actions {
        max-width: 330px;
    }

}


/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 768px) {


    /* HERO */

    body.page-home
    .site-main
    > .fdx-hero {
        height: auto;
    }


    .page-home
    .fdx-hero__ambient {
        display: none;
    }


    .page-home
    .fdx-hero__artwork {
        position: relative;
    }


    .page-home
    .fdx-hero__artwork
    img {
        height: auto;
    }


    .page-home
    .fdx-hero__fade {
        height: 55px;
    }


    /* ACCESS */

    .page-home
    .fdx-access {
        grid-template-columns: 1fr;

        margin-top: -8px !important;

        border-radius: 15px;
    }


    .page-home
    .fdx-access__item {
        min-height: 100px;

        border-right: 0;

        border-bottom: 1px solid #16181B;

        padding: 18px;
    }


    .page-home
    .fdx-access__item:last-child {
        border-bottom: 0;
    }


    /* INTRO */

    .page-home
    .fdx-intro {
        padding:
            78px
            0
            55px;
    }


    .page-home
    .fdx-intro__statement
    h2 {
        font-size:
            clamp(
                38px,
                11vw,
                53px
            );
    }


    /* SECTION HEADER */

    .page-home
    .fdx-section-header {
        align-items: flex-start;

        flex-direction: column;

        gap: 20px;

        margin-bottom: 28px;
    }


    .page-home
    .fdx-section-header
    h2 {
        font-size: 40px;
    }


    /* PRODUCTS */

    .page-home
    .fdx-products {
        padding:
            70px
            0
            80px;
    }


    .page-home
    .fdx-products__grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        gap: 9px;
    }


    .page-home
    .fdx-product:nth-child(5) {
        display: none;
    }


    .page-home
    .fdx-product {
        border-radius: 12px;
    }


    .page-home
    .fdx-product__media {
        aspect-ratio: 1 / .9;
    }


    .page-home
    .fdx-product__body {
        min-height: 175px;

        padding:
            14px
            12px;
    }


    .page-home
    .fdx-product__body
    h3 {
        font-size: 18px;
    }


    .page-home
    .fdx-product__body
    p {
        font-size: 10px;
    }


    .page-home
    .fdx-product__view {
        display: none;
    }


    /* EXPERIENCE */

    .page-home
    .fdx-experience {
        padding:
            38px
            24px;

        border-radius: 18px;
    }


    .page-home
    .fdx-experience__content
    h2 {
        font-size: 39px;
    }


    /* QUALITY */

    .page-home
    .fdx-quality {
        margin-top: 72px !important;
        margin-bottom: 72px !important;

        border-radius: 18px;
    }


    .page-home
    .fdx-quality__media {
        min-height: 290px;
    }


    .page-home
    .fdx-quality__content {
        gap: 50px;

        padding:
            32px
            24px;
    }


    .page-home
    .fdx-quality__content
    h2 {
        font-size: 39px;
    }


    /* CTA */

    .page-home
    .fdx-cta {
        margin-bottom: 65px !important;

        padding:
            38px
            24px;

        border-radius: 18px;
    }


    .page-home
    .fdx-cta__content
    h2 {
        font-size: 39px;
    }


    .page-home
    .fdx-cta__actions {
        width: 100%;

        max-width: none;
    }


    /* PRIVACY */

    .page-home
    .fdx-privacy {
        align-items: end;

        padding: 12px;
    }


    .page-home
    .fdx-privacy__dialog {
        width: 100%;

        max-height:
            calc(100dvh - 24px);

        padding:
            24px
            20px;

        border-radius: 17px;
    }


    .page-home
    .fdx-privacy__channels {
        grid-template-columns: 1fr;
    }

}


/* ==========================================================================
   SMALL MOBILE
   ========================================================================== */

@media (max-width: 520px) {

    .page-home
    .fdx-product__body {
        min-height: 165px;
    }


    .page-home
    .fdx-product__body
    small {
        font-size: 7px;
    }


    .page-home
    .fdx-experience__features
    strong {
        font-size: 16px;
    }


    .page-home
    .fdx-privacy__footer {
        align-items: stretch;

        flex-direction: column;
    }


    .page-home
    .fdx-privacy__footer
    button {
        width: 100%;
    }

}


/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

    .page-home *,
    .page-home *::before,
    .page-home *::after {
        transition-duration: .01ms !important;

        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;
    }

}
/* ==========================================================================
   PRIVACY NOTICE - CENTERED CONTENT
   ========================================================================== */

.page-home .fdx-privacy__header {
    text-align: center;
}

.page-home .fdx-privacy__header > div {
    width: 100%;
}

.page-home .fdx-privacy__body {
    text-align: center;
}

.page-home .fdx-privacy__body p {
    max-width: 560px;

    margin-left: auto;
    margin-right: auto;
}

.page-home .fdx-privacy__footer {
    text-align: center;
}