
/* =========================================================
   DAMIOLINK - SERVIZI V1
========================================================= */

* {
    box-sizing: border-box;
}


html {
    margin: 0;
    padding: 0;

    background: #020d18;
}


body {
    margin: 0;

    color: #f5f9fd;

    background:
        radial-gradient(
            circle at 72% 18%,
            rgba(0, 114, 214, .14),
            transparent 29%
        ),
        #020d18;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    -webkit-font-smoothing: antialiased;
}


a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: relative;
    z-index: 100;

    height: 76px;

    border-bottom:
        1px solid
        rgba(101, 151, 191, .17);

    background:
        rgba(2, 13, 24, .95);
}


.header-inner {
    width: min(1400px, calc(100% - 70px));
    height: 100%;

    display: flex;
    align-items: center;

    margin: 0 auto;
}


.brand {
    flex-shrink: 0;

    min-width: 255px;
}


.brand-main {
    line-height: .92;

    font-size: 35px;
    font-weight: 800;

    letter-spacing: -2.2px;
}


.brand-main span {
    color: white;
}


.brand-main strong {
    color: #0baaff;
}


.brand-tagline {
    margin-top: 7px;

    color: #c0d2e2;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 2.7px;
}


.main-nav {
    display: flex;
    align-items: stretch;
    justify-content: center;

    height: 100%;

    margin-left: auto;
}


.main-nav a {
    position: relative;

    display: flex;
    align-items: center;

    padding: 0 18px;

    color: #e6edf4;

    font-size: 13px;
    font-weight: 500;

    white-space: nowrap;
}


.main-nav a:hover {
    color: #20baff;
}


.main-nav a.active {
    color: #16b5ff;
}


.main-nav a.active::after {
    content: "";

    position: absolute;

    left: 18px;
    right: 18px;
    bottom: 0;

    height: 3px;

    background: #16b5ff;

    box-shadow:
        0 0 12px
        rgba(22, 181, 255, .45);
}


.remote-button {
    min-width: 184px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-left: 26px;

    border:
        1px solid
        #11b9ff;

    border-radius: 24px;

    color: white;

    background:
        rgba(0, 92, 163, .12);

    box-shadow:
        inset 0 0 18px
        rgba(0, 130, 220, .08);

    font-size: 12px;
    font-weight: 700;
}


.remote-button:hover {
    background:
        rgba(0, 132, 222, .19);

    box-shadow:
        0 0 19px
        rgba(0, 167, 255, .14);
}


.remote-dot {
    width: 9px;
    height: 9px;

    border:
        2px solid
        #0fc4ff;

    border-radius: 50%;

    box-shadow:
        0 0 9px
        rgba(0, 191, 255, .7);
}


/* =========================================================
   HERO
========================================================= */

.services-hero {
    position: relative;

    min-height: 390px;

    overflow: hidden;

    border-bottom:
        1px solid
        rgba(36, 125, 188, .16);

    background:
        linear-gradient(
            90deg,
            #03101d 0%,
            #031221 41%,
            #06223b 68%,
            #03111e 100%
        );
}


.hero-grid-bg {
    position: absolute;

    inset: 0;

    opacity: .12;

    background-image:
        linear-gradient(
            rgba(48, 139, 201, .13) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(48, 139, 201, .13) 1px,
            transparent 1px
        );

    background-size:
        64px
        64px;

    mask-image:
        linear-gradient(
            to right,
            transparent,
            black 52%,
            black 100%
        );
}


.orbit-left {
    position: absolute;

    left: -160px;
    bottom: -140px;

    width: 300px;
    height: 300px;

    border:
        1px solid
        rgba(0, 152, 255, .28);

    border-radius: 50%;
}


.orbit-left::before {
    content: "";

    position: absolute;

    right: -4px;
    top: 83px;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: white;

    box-shadow:
        0 0 15px
        #12c5ff;
}


.hero-inner {
    position: relative;
    z-index: 2;

    width: min(1400px, calc(100% - 70px));

    display: grid;

    grid-template-columns:
        .86fr
        1.14fr;

    margin: 0 auto;
}


/* =========================================================
   HERO COPY
========================================================= */

.hero-copy {
    position: relative;
    z-index: 5;

    padding:
        42px
        0
        27px;
}


.eyebrow {
    margin-bottom: 14px;

    color: #a7c4db;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 4px;
}


.hero-copy h1 {
    margin: 0;

    font-size: clamp(43px, 4vw, 64px);
    line-height: .89;

    letter-spacing: -3px;
}


.hero-copy h1 span,
.hero-copy h1 strong {
    display: block;
}


.hero-copy h1 span {
    color: #f8fbff;

    font-weight: 850;
}


.hero-copy h1 strong {
    margin-top: 8px;

    color: #0b9cff;

    font-weight: 900;

    text-shadow:
        0 0 28px
        rgba(0, 139, 255, .15);
}


.hero-copy h2 {
    margin:
        16px
        0
        0;

    color: white;

    font-size: 27px;
    line-height: 1.15;

    letter-spacing: -.7px;
}


.hero-description {
    max-width: 550px;

    margin:
        12px
        0
        0;

    color: #b6c9da;

    font-size: 15px;
    line-height: 1.5;
}


.hero-benefits {
    display: flex;

    gap: 34px;

    margin-top: 26px;
}


.hero-benefit {
    display: flex;
    align-items: center;

    gap: 11px;

    color: #c6d6e4;

    font-size: 10px;
    line-height: 1.45;
}


.benefit-icon {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #13b9ff;

    font-size: 24px;
}


.headset-icon,
.headset-large {
    position: relative;

    display: block;

    width: 24px;
    height: 18px;

    border:
        3px solid
        #13b9ff;

    border-bottom: 0;

    border-radius:
        14px
        14px
        0
        0;
}


.headset-icon::before,
.headset-icon::after,
.headset-large::before,
.headset-large::after {
    content: "";

    position: absolute;

    top: 9px;

    width: 5px;
    height: 9px;

    border-radius: 3px;

    background: #13b9ff;
}


.headset-icon::before,
.headset-large::before {
    left: -5px;
}


.headset-icon::after,
.headset-large::after {
    right: -5px;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    position: relative;

    min-height: 390px;
}


.visual-glow {
    position: absolute;

    left: 18%;
    right: 10%;
    bottom: 1%;

    height: 75%;

    background:
        radial-gradient(
            ellipse,
            rgba(0, 133, 255, .30),
            rgba(0, 91, 171, .10) 42%,
            transparent 72%
        );

    filter: blur(12px);
}


.desk-line {
    position: absolute;

    left: 1%;
    right: 2%;
    bottom: 39px;

    height: 3px;

    transform: perspective(250px)
        rotateX(58deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            #0b3b61 13%,
            #11689c 57%,
            #092c4a 86%,
            transparent
        );

    box-shadow:
        0 10px 24px
        rgba(0, 91, 171, .35);
}


/* MONITOR */

.monitor {
    position: absolute;

    left: 19%;
    top: 51px;

    width: 45%;
}


.monitor-screen {
    position: relative;

    height: 220px;

    overflow: hidden;

    border:
        3px solid
        #05090e;

    border-radius: 4px;

    transform:
        perspective(1000px)
        rotateY(-3deg);

    background:
        linear-gradient(
            145deg,
            #061424,
            #04101c 54%,
            #062443
        );

    box-shadow:
        0 24px 38px
        rgba(0, 0, 0, .50),
        0 0 1px
        #26c3ff;
}


.monitor-screen::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            115deg,
            transparent 20%,
            rgba(22, 151, 255, .05) 51%,
            transparent 66%
        );
}


.screen-brand {
    position: absolute;

    left: 50%;
    top: 59px;

    transform: translateX(-50%);

    font-size: 25px;
    font-weight: 800;

    letter-spacing: -1.5px;
}


.screen-brand span {
    color: white;
}


.screen-brand strong {
    color: #0baaff;
}


.screen-line {
    position: absolute;

    left: 38%;
    right: 24%;
    top: 98px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #168fd1,
            transparent
        );
}


.screen-copy {
    position: absolute;

    left: 45%;
    top: 112px;

    color: #92b9d6;

    font-size: 8px;
    line-height: 1.8;

    letter-spacing: 3px;
}


.screen-flare {
    position: absolute;

    right: 15%;
    bottom: 20%;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: white;

    box-shadow:
        0 0 8px 3px #009dff,
        0 0 40px 12px rgba(0, 142, 255, .65);
}


.monitor-neck {
    width: 31px;
    height: 44px;

    margin: 0 auto;

    background:
        linear-gradient(
            90deg,
            #111c25,
            #263745,
            #0b141c
        );
}


.monitor-base {
    width: 118px;
    height: 7px;

    margin: -1px auto 0;

    border-radius: 50%;

    background:
        #1d2d39;

    box-shadow:
        0 5px 9px
        rgba(0, 0, 0, .6);
}


/* COMPUTER */

.computer {
    position: absolute;

    left: 65%;
    top: 105px;

    width: 92px;
    height: 225px;

    overflow: hidden;

    border:
        1px solid
        #174567;

    border-radius: 4px;

    background:
        linear-gradient(
            90deg,
            #07101a,
            #0a1722
        );

    box-shadow:
        0 17px 28px
        rgba(0, 0, 0, .65),
        inset 0 0 20px
        rgba(0, 114, 255, .10);
}


.computer-glass {
    position: absolute;

    inset:
        5px
        6px;

    border:
        1px solid
        rgba(25, 116, 180, .25);

    background:
        linear-gradient(
            120deg,
            rgba(0, 123, 255, .03),
            rgba(0, 57, 104, .14)
        );
}


.fan {
    position: absolute;

    left: 23px;

    width: 46px;
    height: 46px;

    border:
        2px solid
        #087cf6;

    border-radius: 50%;

    box-shadow:
        0 0 12px
        rgba(0, 128, 255, .55),
        inset 0 0 10px
        rgba(0, 128, 255, .4);
}


.fan i {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 8px;
    height: 8px;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: #0a95ff;

    box-shadow:
        0 0 12px
        #008cff;
}


.fan-one {
    top: 22px;
}


.fan-two {
    top: 86px;
}


.fan-three {
    top: 150px;
}


/* DESK ITEMS */

.keyboard {
    position: absolute;

    left: 28%;
    bottom: 34px;

    width: 246px;
    height: 28px;

    display: flex;

    gap: 5px;

    padding:
        8px
        12px;

    transform:
        perspective(220px)
        rotateX(58deg);

    border:
        1px solid
        #233a4d;

    background:
        #101b24;

    box-shadow:
        0 10px 16px
        rgba(0, 0, 0, .45);
}


.keyboard span {
    flex: 1;

    border:
        1px solid
        #334958;

    background: #1c2a34;
}


.mouse {
    position: absolute;

    left: 60%;
    bottom: 30px;

    width: 35px;
    height: 25px;

    border-radius:
        50%
        50%
        42%
        42%;

    background:
        linear-gradient(
            #253744,
            #101820
        );

    box-shadow:
        0 8px 10px
        rgba(0, 0, 0, .45);
}


/* VISUAL CAPTION */

.visual-caption {
    position: absolute;

    right: 0;
    top: 55px;

    width: 145px;

    color: #91afc6;

    font-size: 10px;
    line-height: 1.8;

    letter-spacing: 3px;
}


.visual-caption i {
    display: block;

    width: 34px;
    height: 1px;

    margin-bottom: 17px;

    background: #10aef8;
}


.visual-caption::after {
    content: "";

    display: block;

    width: 34px;
    height: 1px;

    margin-top: 18px;

    background: #10aef8;
}


.tech-node {
    position: absolute;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: white;

    box-shadow:
        0 0 14px
        #0dbfff;
}


.node-one {
    right: 5%;
    bottom: 50px;
}


.node-two {
    left: 2%;
    top: 94px;
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    position: relative;

    padding:
        22px
        0
        0;

    background:
        radial-gradient(
            circle at 50% 0,
            rgba(0, 104, 184, .11),
            transparent 37%
        ),
        #020d18;
}


.services-container {
    width: min(1400px, calc(100% - 70px));

    margin: 0 auto;
}


.service-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;
}


.service-card {
    position: relative;

    min-height: 247px;

    overflow: hidden;

    padding:
        22px
        21px;

    border:
        1px solid
        rgba(0, 147, 245, .65);

    border-radius: 10px;

    background:
        linear-gradient(
            145deg,
            rgba(7, 34, 57, .95),
            rgba(3, 20, 35, .98)
        );

    box-shadow:
        inset 0 0 35px
        rgba(0, 103, 179, .07);

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}


.service-card:hover {
    transform:
        translateY(-4px);

    border-color:
        #18bfff;

    box-shadow:
        0 13px 30px
        rgba(0, 0, 0, .22),
        inset 0 0 38px
        rgba(0, 127, 218, .10);
}


.card-decoration {
    position: absolute;

    right: -30px;
    top: -45px;

    width: 180px;
    height: 180px;

    border:
        1px solid
        rgba(0, 155, 255, .10);

    border-radius: 50%;
}


.service-icon {
    position: relative;

    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 16px;

    border:
        1px solid
        #0aaaff;

    border-radius: 50%;

    color: white;

    background:
        rgba(0, 83, 145, .15);

    box-shadow:
        inset 0 0 15px
        rgba(0, 139, 255, .08);

    font-size: 25px;
}


.service-card h3 {
    margin:
        0
        0
        8px;

    color: white;

    font-size: 18px;
    letter-spacing: -.3px;
}


.service-card p {
    min-height: 67px;

    margin: 0;

    color: #a7bdd0;

    font-size: 13px;
    line-height: 1.48;
}


.card-link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-top: 13px;

    color: #08aaff;

    font-size: 11px;
    font-weight: 700;
}


.card-link b {
    font-size: 17px;
}


/* TOOL ICON */

.tool-line {
    position: absolute;

    left: 25px;
    top: 14px;

    width: 4px;
    height: 27px;

    border-radius: 3px;

    background: white;
}


.tool-a {
    transform:
        rotate(43deg);
}


.tool-b {
    transform:
        rotate(-43deg);
}


/* MINI MONITOR */

.monitor-mini {
    position: relative;

    width: 27px;
    height: 20px;

    border:
        2px solid
        #0dbbff;

    border-radius: 2px;
}


.monitor-mini::before {
    content: "";

    position: absolute;

    left: 11px;
    bottom: -7px;

    width: 2px;
    height: 6px;

    background: #0dbbff;
}


.monitor-mini::after {
    content: "";

    position: absolute;

    left: 6px;
    bottom: -8px;

    width: 12px;
    height: 2px;

    background: #0dbbff;
}


.apple-icon {
    color: white;

    font-size: 33px;
}


/* CLOUD */

.cloud-icon {
    position: relative;

    width: 30px;
    height: 15px;

    border:
        2px solid
        #0dbbff;

    border-radius: 14px;
}


.cloud-icon::before {
    content: "";

    position: absolute;

    left: 5px;
    top: -10px;

    width: 13px;
    height: 13px;

    border:
        2px solid
        #0dbbff;

    border-bottom: 0;

    border-radius:
        50%
        50%
        0
        0;

    background:
        #06213a;
}


/* =========================================================
   REMOTE CTA
========================================================= */

.remote-cta {
    min-height: 92px;

    display: grid;

    grid-template-columns:
        115px
        1fr
        315px;

    align-items: center;

    margin:
        18px
        48px
        0;

    padding:
        0
        30px;

    border:
        1px solid
        rgba(0, 145, 240, .65);

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #05213a,
            #052b4b 60%,
            #06365c
        );

    box-shadow:
        inset 0 0 35px
        rgba(0, 134, 231, .08);
}


.remote-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 64px;
    height: 64px;

    border:
        2px solid
        #0dbbff;

    border-radius: 50%;
}


.headset-large {
    transform:
        scale(1.25);
}


.remote-cta-copy {
    padding-left: 7px;

    border-left:
        1px solid
        rgba(18, 160, 238, .38);
}


.remote-cta-copy h3 {
    margin:
        0
        0
        4px;

    padding-left: 28px;

    color: white;

    font-size: 19px;
}


.remote-cta-copy p {
    margin: 0;

    padding-left: 28px;

    color: #9cb6cb;

    font-size: 12px;
}


.remote-cta-button {
    min-height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    border:
        1px solid
        #28d0ff;

    border-radius: 8px;

    color: white;

    background:
        linear-gradient(
            90deg,
            #0874ff,
            #0ab4f6
        );

    box-shadow:
        0 0 21px
        rgba(0, 166, 255, .25);

    font-size: 14px;
    font-weight: 800;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.remote-cta-button:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 0 28px
        rgba(0, 183, 255, .38);
}


.remote-cta-button span {
    font-size: 23px;
}


/* =========================================================
   AUDIENCE
========================================================= */

.audience-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    margin-top: 20px;

    padding:
        0
        25px;
}


.audience-item {
    min-height: 67px;

    display: flex;
    align-items: center;

    gap: 16px;

    padding:
        0
        30px;

    border-right:
        1px solid
        rgba(50, 128, 183, .31);
}


.audience-item:first-child {
    padding-left: 0;
}


.audience-item:last-child {
    border-right: 0;
}


.audience-icon {
    flex-shrink: 0;

    color: #0bb9ff;

    font-size: 29px;
}


.audience-item strong,
.audience-item span {
    display: block;
}


.audience-item strong {
    margin-bottom: 4px;

    color: white;

    font-size: 11px;
}


.audience-item span {
    color: #8faac0;

    font-size: 10px;
    line-height: 1.45;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    width: min(1400px, calc(100% - 70px));

    margin:
        17px
        auto
        0;

    padding-bottom: 22px;

    text-align: center;
}


.footer-line {
    height: 1px;

    margin-bottom: 10px;

    background:
        linear-gradient(
            90deg,
            rgba(25, 137, 202, .45),
            transparent 40%,
            transparent 60%,
            rgba(25, 137, 202, .45)
        );
}


.footer-brand {
    font-size: 23px;
    font-weight: 850;

    letter-spacing: -1.4px;
}


.footer-brand span {
    color: white;
}


.footer-brand strong {
    color: #0baaff;
}


.footer-tagline {
    margin-top: 4px;

    color: #9bb3c7;

    font-size: 6px;
    font-weight: 700;

    letter-spacing: 2.6px;
}


.footer-bottom {
    display: flex;
    justify-content: space-between;

    margin-top: 14px;

    padding-top: 12px;

    border-top:
        1px solid
        rgba(47, 113, 159, .15);

    color: #55758f;

    font-size: 8px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1250px) {

    .header-inner,
    .hero-inner,
    .services-container,
    .site-footer {
        width:
            min(
                1120px,
                calc(100% - 40px)
            );
    }


    .brand {
        min-width: 205px;
    }


    .brand-main {
        font-size: 31px;
    }


    .brand-tagline {
        letter-spacing: 2px;
    }


    .main-nav a {
        padding:
            0
            10px;

        font-size: 11px;
    }


    .main-nav a.active::after {
        left: 10px;
        right: 10px;
    }


    .remote-button {
        min-width: 155px;

        margin-left: 13px;

        font-size: 10px;
    }


    .hero-inner {
        grid-template-columns:
            1fr
            .95fr;
    }


    .visual-caption {
        display: none;
    }


    .monitor {
        left: 10%;

        width: 58%;
    }


    .computer {
        left: 70%;
    }


    .remote-cta {
        margin-left: 0;
        margin-right: 0;
    }

}


@media (max-width: 980px) {

    .site-header {
        height: auto;
    }


    .header-inner {
        min-height: 72px;

        flex-wrap: wrap;

        padding:
            12px
            0;
    }


    .main-nav {
        order: 3;

        width: 100%;
        height: auto;

        overflow-x: auto;

        justify-content: flex-start;

        margin-top: 12px;
    }


    .main-nav a {
        min-height: 38px;
    }


    .remote-button {
        margin-left: auto;
    }


    .hero-inner {
        grid-template-columns: 1fr;
    }


    .hero-copy {
        padding-bottom: 15px;
    }


    .hero-visual {
        min-height: 310px;
    }


    .monitor {
        top: 30px;
        left: 21%;
        width: 46%;
    }


    .computer {
        top: 73px;
        left: 68%;
    }


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


    .remote-cta {
        grid-template-columns:
            80px
            1fr;

        padding:
            20px;
    }


    .remote-cta-button {
        grid-column:
            1 / -1;

        margin-top: 15px;
    }


    .audience-grid {
        grid-template-columns:
            repeat(2, 1fr);

        row-gap: 18px;
    }


    .audience-item:nth-child(2) {
        border-right: 0;
    }

}


@media (max-width: 650px) {

    .header-inner,
    .hero-inner,
    .services-container,
    .site-footer {
        width:
            calc(100% - 28px);
    }


    .brand {
        min-width: 0;
    }


    .brand-main {
        font-size: 29px;
    }


    .brand-tagline {
        display: none;
    }


    .remote-button {
        min-width: auto;

        height: 38px;

        padding:
            0
            13px;

        font-size: 9px;
    }


    .hero-copy {
        padding-top: 34px;
    }


    .eyebrow {
        font-size: 8px;

        letter-spacing: 2.8px;
    }


    .hero-copy h1 {
        font-size: 42px;

        letter-spacing: -2px;
    }


    .hero-copy h2 {
        font-size: 22px;
    }


    .hero-description {
        font-size: 13px;
    }


    .hero-benefits {
        flex-direction: column;

        gap: 12px;
    }


    .hero-visual {
        min-height: 270px;

        transform:
            scale(.88);

        transform-origin:
            top center;
    }


    .monitor {
        left: 8%;

        width: 62%;
    }


    .computer {
        left: 73%;
    }


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


    .service-card {
        min-height: 220px;
    }


    .service-card p {
        min-height: auto;
    }


    .remote-cta {
        display: flex;
        flex-direction: column;

        align-items: stretch;

        text-align: center;
    }


    .remote-cta-icon {
        margin:
            0
            auto
            14px;
    }


    .remote-cta-copy {
        padding: 0;

        border-left: 0;
    }


    .remote-cta-copy h3,
    .remote-cta-copy p {
        padding-left: 0;
    }


    .audience-grid {
        grid-template-columns: 1fr;

        padding:
            0
            5px;
    }


    .audience-item {
        padding:
            13px
            0;

        border-right: 0;

        border-bottom:
            1px solid
            rgba(50, 128, 183, .20);
    }


    .audience-item:last-child {
        border-bottom: 0;
    }


    .footer-bottom {
        flex-direction: column;

        gap: 6px;
    }

}



/* =========================================================
   DAMIOLINK
   SERVIZI CARD REFINEMENT V2
========================================================= */


/* ---------------------------------------------------------
   SERVICE CARDS
--------------------------------------------------------- */

.service-grid {
    gap: 16px;
}


.service-card {
    min-height: 224px;

    display: flex;
    flex-direction: column;

    padding:
        20px
        21px
        18px;

    isolation: isolate;

    background:
        linear-gradient(
            145deg,
            rgba(6, 36, 61, .97),
            rgba(3, 22, 38, .99)
        );

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, .025),
        inset 0 0 42px
        rgba(0, 118, 205, .055);
}


.service-card::before {
    content: "";

    position: absolute;
    z-index: -1;

    left: 0;
    right: 0;
    top: 0;

    height: 1px;

    opacity: .75;

    background:
        linear-gradient(
            90deg,
            transparent 3%,
            rgba(25, 196, 255, .75) 30%,
            rgba(25, 196, 255, .16) 72%,
            transparent
        );
}


.service-card::after {
    content: "";

    position: absolute;
    z-index: -1;

    right: -80px;
    bottom: -100px;

    width: 210px;
    height: 210px;

    border-radius: 50%;

    opacity: 0;

    background:
        radial-gradient(
            circle,
            rgba(0, 159, 255, .13),
            transparent 67%
        );

    transition:
        opacity .3s ease;
}


.service-card:hover {
    transform:
        translateY(-3px);

    border-color:
        rgba(23, 190, 255, .90);

    box-shadow:
        0 14px 30px
        rgba(0, 0, 0, .18),
        0 0 19px
        rgba(0, 139, 255, .055),
        inset 0 0 42px
        rgba(0, 127, 218, .08);
}


.service-card:hover::after {
    opacity: 1;
}


/* ---------------------------------------------------------
   CARD DECORATION
--------------------------------------------------------- */

.card-decoration {
    right: -56px;
    top: -66px;

    width: 190px;
    height: 190px;

    border-color:
        rgba(0, 164, 255, .08);
}


.card-decoration::before {
    content: "";

    position: absolute;

    inset: 28px;

    border:
        1px solid
        rgba(0, 164, 255, .045);

    border-radius: 50%;
}


/* ---------------------------------------------------------
   PROFESSIONAL SVG ICON
--------------------------------------------------------- */

.service-icon {
    width: 50px;
    height: 50px;

    margin-bottom: 14px;

    border:
        1px solid
        rgba(14, 181, 255, .88);

    background:
        linear-gradient(
            145deg,
            rgba(0, 105, 181, .16),
            rgba(0, 58, 101, .10)
        );

    box-shadow:
        inset 0 0 17px
        rgba(0, 150, 255, .07),
        0 0 0
        rgba(0, 171, 255, 0);

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}


.service-card:hover .service-icon {
    border-color:
        #22c5ff;

    background:
        linear-gradient(
            145deg,
            rgba(0, 130, 218, .23),
            rgba(0, 73, 126, .13)
        );

    box-shadow:
        inset 0 0 18px
        rgba(0, 162, 255, .10),
        0 0 16px
        rgba(0, 174, 255, .08);
}


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

    fill: none;

    stroke:
        #18bdff;

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;

    transition:
        stroke .25s ease,
        transform .25s ease;
}


.service-card:hover .service-svg {
    stroke:
        #6cddff;

    transform:
        scale(1.04);
}


/* ---------------------------------------------------------
   TYPOGRAPHY
--------------------------------------------------------- */

.service-card h3 {
    position: relative;

    margin:
        0
        0
        7px;

    font-size: 17px;
    line-height: 1.2;

    letter-spacing: -.35px;
}


.service-card p {
    min-height: 58px;

    margin: 0;

    color:
        #9eb5c8;

    font-size: 12px;
    line-height: 1.5;
}


/* ---------------------------------------------------------
   CARD LINK
--------------------------------------------------------- */

.card-link {
    position: relative;

    margin-top: auto;
    padding-top: 13px;

    gap: 9px;

    color:
        #10b7ff;

    font-size: 10px;
    font-weight: 750;

    letter-spacing: .1px;
}


.card-link::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: -4px;

    width: 0;
    height: 1px;

    background:
        #18bfff;

    transition:
        width .25s ease;
}


.service-card:hover .card-link::before {
    width: 32px;
}


.card-link b {
    display: inline-block;

    font-size: 16px;

    transition:
        transform .25s ease;
}


.service-card:hover .card-link b {
    transform:
        translateX(3px);
}


/* ---------------------------------------------------------
   REMOVE OLD CSS ICON IMPLEMENTATIONS
   SVG now takes precedence.
--------------------------------------------------------- */

.service-card .tool-line,
.service-card .monitor-mini,
.service-card .cloud-icon {
    display: none;
}


/* =========================================================
   AUDIENCE ICON REFINEMENT
========================================================= */

.audience-grid {
    margin-top: 18px;
}


.audience-item {
    min-height: 65px;

    gap: 15px;
}


.audience-icon {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color:
        #10baff;

    font-size: 0;
}


.audience-icon svg {
    width: 27px;
    height: 27px;

    fill: none;

    stroke:
        #10baff;

    stroke-width: 1.65;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.audience-item strong {
    font-size: 10px;
    font-weight: 750;
}


.audience-item span {
    color:
        #829eb5;

    font-size: 9px;
    line-height: 1.45;
}


/* =========================================================
   SLIGHT SPACING REFINEMENT
========================================================= */

.remote-cta {
    margin-top: 16px;
}


.site-footer {
    margin-top: 22px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 980px) {

    .service-card {
        min-height: 215px;
    }

}


@media (max-width: 650px) {

    .service-card {
        min-height: 205px;

        padding:
            19px
            19px
            17px;
    }


    .service-card p {
        min-height: auto;
    }


    .service-icon {
        width: 48px;
        height: 48px;
    }


    .audience-icon {
        width: 30px;
        height: 30px;
    }

}



/* =========================================================
   DAMIOLINK
   SERVIZI BRAND ICONS V3
========================================================= */

.apple-brand-icon {
    background:
        linear-gradient(
            145deg,
            rgba(0, 105, 181, .17),
            rgba(0, 58, 101, .11)
        );
}


.apple-logo {
    width: 27px;
    height: 27px;

    display: block;

    fill: #f7fbff;

    filter:
        drop-shadow(
            0 0 5px
            rgba(255, 255, 255, .10)
        );

    transition:
        transform .25s ease,
        filter .25s ease;
}


.service-card:hover .apple-logo {
    transform:
        scale(1.055);

    filter:
        drop-shadow(
            0 0 7px
            rgba(255, 255, 255, .18)
        );
}

