
.avyro-dm-hero {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 100px 20px;

    background:
        radial-gradient(
            circle at 15% 30%,
            rgba(24, 112, 232, 0.10),
            transparent 28%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(126, 207, 39, 0.11),
            transparent 28%
        ),
        #f8fbff;
}


.avyro-dm-bg {
    position: absolute;
    inset: 0;

    pointer-events: none;
}

.avyro-dm-bg span {
    position: absolute;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #176fe5;

    opacity: .35;

    animation: avyroFloat 5s ease-in-out infinite;
}
body {
    font-family: "Poppins", sans-serif;
}

.avyro-dm-hero,
.avyro-dm-services,
.avyro-dm-strategy,
.avyro-tool-strip,
.avyro-dm-faq {
    font-family: "Poppins", sans-serif;
}
.avyro-dm-bg span:nth-child(1) {
    left: 18%;
    top: 25%;
}

.avyro-dm-bg span:nth-child(2) {
    right: 20%;
    top: 35%;

    background: #82cf25;

    animation-delay: 1.5s;
}

.avyro-dm-bg span:nth-child(3) {
    left: 28%;
    bottom: 20%;

    animation-delay: 3s;
}

@keyframes avyroFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-18px) scale(1.3);
    }
}



.avyro-dm-center {
    position: relative;
    z-index: 5;

    width: 100%;
    max-width: 850px;

    text-align: center;
}



.avyro-dm-badge {
    display: inline-flex;

    align-items: center;
    gap: 9px;

    padding: 8px 16px;

    border: 1px solid rgba(23, 111, 229, .18);

    border-radius: 50px;

    background: rgba(255, 255, 255, .75);

    color: #176fe5;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;

    box-shadow: 0 8px 25px rgba(24, 80, 140, .06);

    backdrop-filter: blur(10px);
}

.avyro-dm-badge i {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #82cf25;

    box-shadow:
        0 0 0 5px rgba(130, 207, 37, .10);

    animation: avyroPulse 2s infinite;
}

@keyframes avyroPulse {

    0% {
        box-shadow: 0 0 0 0 rgba(130, 207, 37, .35);
    }

    70% {
        box-shadow: 0 0 0 7px rgba(130, 207, 37, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(130, 207, 37, 0);
    }
}




.avyro-dm-center h1 {
    margin: 23px auto 0;

    max-width: 820px;

    color: #081d3d;

    font-size: clamp(42px, 6vw, 70px);

    line-height: 1.04;

    letter-spacing: -3px;

    font-weight: 800;
}

.avyro-dm-center h1 span {
    display: block;

    background: linear-gradient(
        90deg,
        #075fe2,
        #2b8cff,
        #73c82b
    );

    background-size: 200% auto;

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    animation: avyroGradient 5s linear infinite;
}

@keyframes avyroGradient {

    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}




.avyro-dm-center p {
    max-width: 590px;

    margin: 22px auto 0;

    color: #667a94;

    font-size: 16px;

    line-height: 1.7;
}


.avyro-dm-actions {
    display: flex;

    justify-content: center;

    gap: 14px;

    margin-top: 30px;
}

.avyro-call-btn,
.avyro-whatsapp-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    min-height: 50px;

    padding: 0 20px;

    border-radius: 10px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition: .3s ease;
}


/* CALL */

.avyro-call-btn {
    color: #fff;

    background: linear-gradient(
        135deg,
        #075fe2,
        #258cff
    );

    box-shadow:
        0 12px 25px rgba(23, 111, 229, .20);
}

.avyro-call-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    border-radius: 7px;

    background: rgba(255,255,255,.16);
}

.avyro-call-btn:hover {
    transform: translateY(-4px);

    box-shadow:
        0 17px 32px rgba(23,111,229,.28);
}


/* WHATSAPP */

.avyro-whatsapp-btn {
    color: #173553;

    background: #fff;

    border: 1px solid #dce7f2;

    box-shadow:
        0 8px 22px rgba(20,60,100,.06);
}

.avyro-wa-icon {
    color: #65b928;

    font-size: 17px;
}

.avyro-whatsapp-btn:hover {
    transform: translateY(-4px);

    border-color: #82cf25;

    box-shadow:
        0 15px 30px rgba(80,140,40,.12);
}


@media (max-width: 600px) {

    .avyro-dm-hero {
        min-height: auto;
        padding: 90px 18px;
    }

    .avyro-dm-center h1 {
        font-size: 39px;

        letter-spacing: -1.8px;
    }

    .avyro-dm-center p {
        font-size: 14px;

        margin-top: 18px;
    }

    .avyro-dm-actions {
        flex-direction: column;

        width: 100%;

        max-width: 280px;

        margin-left: auto;
        margin-right: auto;
    }

    .avyro-call-btn,
    .avyro-whatsapp-btn {
        justify-content: center;

        width: 100%;
    }
}



.avyro-dm-services {
    position: relative;
    padding: 90px 6%;
    background: #f8fbff;
    overflow: hidden;
}



.avyro-dm-services::before {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    top: -220px;
    right: -150px;

    background: rgba(23, 105, 232, 0.07);

    border-radius: 50%;

    filter: blur(80px);

    pointer-events: none;
}

.avyro-dm-services::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -180px;
    left: -120px;
    background: rgba(131, 206, 39, 0.07);
    border-radius: 50%;
    filter: blur(75px);

    pointer-events: none;
}


.avyro-dm-heading {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}


.avyro-dm-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 14px;

    color: #1769e8;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.4px;
}


.avyro-dm-eyebrow span {
    width: 27px;
    height: 2px;

    background: #83ce27;

    border-radius: 20px;
}


.avyro-dm-heading h2 {
    margin: 0;

    color: #071a38;

    font-size: clamp(35px, 4.2vw, 55px);

    line-height: 1.07;

    letter-spacing: -1.8px;

    font-weight: 800;
}


.avyro-dm-heading h2 em {
    display: block;

    color: #1769e8;

    font-style: normal;
}


.avyro-dm-heading p {
    max-width: 620px;

    margin: 17px auto 0;

    color: #647690;

    font-size: 15px;

    line-height: 1.7;
}




.avyro-dm-grid {
    position: relative;

    z-index: 2;

    max-width: 1120px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 17px;
}


.avyro-dm-card {
    position: relative;

    min-height: 238px;

    padding: 25px;

    display: flex;

    flex-direction: column;

    background: #ffffff;

    border: 1px solid #e1e9f2;

    border-radius: 15px;

    box-shadow:
        0 7px 25px rgba(22, 55, 90, 0.045);

    overflow: hidden;

    opacity: 0;

    transform: translateY(22px);

    animation:
        avyroDmCardIn .65s
        cubic-bezier(.22,.61,.36,1)
        forwards;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}



.avyro-dm-card:nth-child(1) {
    animation-delay: .05s;
}

.avyro-dm-card:nth-child(2) {
    animation-delay: .10s;
}

.avyro-dm-card:nth-child(3) {
    animation-delay: .15s;
}

.avyro-dm-card:nth-child(4) {
    animation-delay: .20s;
}

.avyro-dm-card:nth-child(5) {
    animation-delay: .25s;
}

.avyro-dm-card:nth-child(6) {
    animation-delay: .30s;
}

.avyro-dm-card:nth-child(7) {
    animation-delay: .35s;
}

.avyro-dm-card:nth-child(8) {
    animation-delay: .40s;
}

.avyro-dm-card:nth-child(9) {
    animation-delay: .45s;
}

.avyro-dm-card:nth-child(10) {
    animation-delay: .50s;
}



.avyro-dm-card::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 3px;

    background: linear-gradient(
        90deg,
        #1769e8,
        #83ce27
    );

    transition: width .4s ease;
}

.avyro-dm-card:hover::after {
    width: 100%;
}


.avyro-dm-card:hover {
    transform: translateY(-6px);

    border-color: #d2dfed;

    box-shadow:
        0 18px 40px rgba(22, 57, 95, 0.10);
}


.avyro-dm-top {
    display: flex;

    align-items: center;

    justify-content: space-between;
}



.avyro-dm-icon {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background: #edf5ff;

    color: #1769e8;

    font-size: 17px;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}


.avyro-dm-card:hover .avyro-dm-icon {
    background: #1769e8;

    color: #ffffff;

    transform:
        translateY(-2px)
        rotate(-4deg);
}


.avyro-dm-top > span {
    color: #b8c5d4;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    transition: color .3s ease;
}


.avyro-dm-card:hover .avyro-dm-top > span {
    color: #1769e8;
}


.avyro-dm-card h3 {
    margin: 20px 0 8px;

    color: #081c3b;

    font-size: 19px;

    line-height: 1.25;

    letter-spacing: -.35px;

    font-weight: 750;
}


.avyro-dm-card p {
    margin: 0;
    color: #687b95;
    font-size: 13.5px;
    line-height: 1.65;
}

.avyro-service-call {
    margin-top: auto;

    padding-top: 18px;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    width: fit-content;

    color: #1769e8;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition:
        color .3s ease,
        gap .3s ease;
}


.avyro-service-call i {
    font-size: 11px;

    transition:
        transform .3s ease;
}


.avyro-service-call:hover {
    color: #0d51ba;

    gap: 11px;
}


.avyro-service-call:hover i {
    transform: rotate(-10deg);
}

.avyro-dm-cta {
    position: relative;

    z-index: 2;

    max-width: 1120px;

    margin: 42px auto 0;

    padding: 26px 29px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    background: #071a38;

    border-radius: 15px;

    overflow: hidden;
}


.avyro-dm-cta::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    right: -80px;
    top: -140px;

    background: rgba(23, 105, 232, .35);

    border-radius: 50%;

    filter: blur(60px);

    pointer-events: none;
}


.avyro-dm-cta-content {
    position: relative;

    z-index: 2;
}


.avyro-dm-cta-content small {
    color: #83ce27;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.avyro-dm-cta-content h3 {
    margin: 5px 0 0;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
}


.avyro-dm-cta-buttons {
    position: relative;

    z-index: 3;

    display: flex;

    align-items: center;

    gap: 10px;
}


.avyro-call,
.avyro-talk {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-height: 42px;

    padding: 0 17px;

    border-radius: 8px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease;
}


.avyro-call {
    color: #071a38;

    background: #ffffff;
}


.avyro-call:hover {
    color: #071a38;

    background: #83ce27;

    transform: translateY(-3px);
}


.avyro-talk {
    color: #ffffff;

    background: transparent;

    border: 1px solid rgba(255,255,255,.25);
}


.avyro-talk:hover {
    color: #ffffff;

    background: #1769e8;

    border-color: #1769e8;

    transform: translateY(-3px);
}

@keyframes avyroDmCardIn {

    from {
        opacity: 0;

        transform: translateY(22px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }

}




@media (max-width: 950px) {

    .avyro-dm-services {
        padding: 75px 5%;
    }

    .avyro-dm-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .avyro-dm-cta {
        align-items: flex-start;

        flex-direction: column;
    }

}



@media (max-width: 620px) {

    .avyro-dm-services {
        padding: 40px 17px;
    }

    .avyro-dm-heading {
        margin-bottom: 35px;
    }

    .avyro-dm-heading h2 {
        font-size: 33px;

        letter-spacing: -1.2px;
    }

    .avyro-dm-heading p {
        font-size: 14px;
    }

    .avyro-dm-grid {
        grid-template-columns: 1fr;

        gap: 13px;
    }

    .avyro-dm-card {
        min-height: 215px;

        padding: 22px;
    }

    .avyro-dm-card h3 {
        font-size: 18px;
    }

    .avyro-dm-card p {
        font-size: 13px;
    }

    .avyro-dm-cta {
        margin-top: 30px;

        padding: 23px 20px;

        border-radius: 13px;
    }

    .avyro-dm-cta-content h3 {
        font-size: 19px;
    }

    .avyro-dm-cta-buttons {
        width: 100%;
    }

    .avyro-call,
    .avyro-talk {
        flex: 1;

        min-height: 42px;

        padding: 0 10px;
    }

}

@media (max-width: 400px) {

    .avyro-dm-heading h2 {
        font-size: 30px;
    }
    .avyro-dm-card {
        padding: 20px;
    }

}


@media (prefers-reduced-motion: reduce) {

    .avyro-dm-card {
        animation: none;

        opacity: 1;

        transform: none;
    }

    .avyro-dm-card:hover,
    .avyro-dm-icon:hover,
    .avyro-call:hover,
    .avyro-talk:hover {
        transform: none;
    }

}
.avyro-tool-strip {
    width: 100%;
    background: #fff;
    border-top: 1px solid #e7edf5;
    border-bottom: 1px solid #e7edf5;
    overflow: hidden;
    padding: 22px 0 20px;
}

.avyro-tool-title {
    text-align: center;
    margin-bottom: 17px;
}

.avyro-tool-title span {
    color: #71809a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

/* MARQUEE */

.avyro-tool-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* FADE ON SIDES */

.avyro-tool-marquee::before,
.avyro-tool-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 90px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.avyro-tool-marquee::before {
    left: 0;
    background: linear-gradient(
        to right,
        #fff,
        transparent
    );
}

.avyro-tool-marquee::after {
    right: 0;
    background: linear-gradient(
        to left,
        #fff,
        transparent
    );
}

/* MOVING ROW */

.avyro-tool-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 62px;
    animation: avyroToolsMove 38s linear infinite;
}

/* LOGO ITEM */

.avyro-tool-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    color: #263a59;
    opacity: .82;
    transition: .3s ease;
}

.avyro-tool-logo i {
    font-size: 24px;
    color: #176ee8;
    transition: .3s ease;
}

.avyro-tool-logo b {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -.2px;
}

/* HOVER */

.avyro-tool-logo:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.avyro-tool-logo:hover i {
    color: #76c82b;
    transform: scale(1.12);
}

/* INFINITE ANIMATION */

@keyframes avyroToolsMove {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}

/* PAUSE ON HOVER */

.avyro-tool-marquee:hover .avyro-tool-track {
    animation-play-state: paused;
}




@media (max-width: 700px) {

    .avyro-tool-strip {
        padding: 18px 0;
    }

    .avyro-tool-title {
        margin-bottom: 14px;
    }

    .avyro-tool-title span {
        font-size: 9px;
        letter-spacing: 1.4px;
    }

    .avyro-tool-track {
        gap: 38px;
        animation-duration: 30s;
    }

    .avyro-tool-logo i {
        font-size: 21px;
    }

    .avyro-tool-logo b {
        font-size: 14px;
    }

    .avyro-tool-marquee::before,
    .avyro-tool-marquee::after {
        width: 45px;
    }
}



.avyro-dm-faq {
    position: relative;
    padding: 85px 20px 95px;
    background: #ffffff;
    overflow: hidden;
}

.avyro-dm-faq::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e4efff;
}



.avyro-dm-faq-head {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.avyro-dm-faq-label {
    display: inline-block;
    margin-bottom: 10px;

    color: #35639b;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.avyro-dm-faq-head h2 {
    margin: 0;
    color: #071a33;
    font-family: "Manrope", sans-serif;
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.avyro-dm-faq-head p {
    max-width: 700px;
    margin: 16px auto 0;

    color: #637899;
    font-size: 15px;
    line-height: 1.7;
}

.avyro-dm-faq-list {
    max-width: 770px;
    margin: 0 auto;
}

.avyro-dm-faq-item {
    margin-bottom: 10px;
    border: 1px solid #dbe9fb;
    border-radius: 16px;
    background: #ffffff;
    overflow: hidden;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.avyro-dm-faq-item:hover {
    border-color: #c8ddfa;
    box-shadow: 0 10px 28px rgba(18, 76, 145, 0.06);
}

.avyro-dm-faq-question {
    width: 100%;
    min-height: 70px;
    padding: 0 20px;
    border: 0;
    outline: none;
    background: transparent;
    color: #071a33;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
}

.avyro-dm-faq-question i {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #0878f9;
    background: #eef6ff;
    font-size: 11px;
    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.avyro-dm-faq-item.active {
    border-color: #cfe3fc;
}
.avyro-dm-faq-item.active .avyro-dm-faq-question i {
    color: #ffffff;
    background: linear-gradient(135deg, #0878f9, #18a7df);
}
.avyro-dm-faq-answer {
    display: none;
    padding: 0 60px 22px 20px;
}
.avyro-dm-faq-item.active .avyro-dm-faq-answer {
    display: block;
}
.avyro-dm-faq-answer p {
    margin: 0;
    color: #607696;
    font-size: 14px;
    line-height: 1.75;
}

@media (max-width: 650px) {
    .avyro-dm-faq {
        padding: 40px 16px 45px;
    }
    .avyro-dm-faq-head {
        margin-bottom: 28px;
    }
    .avyro-dm-faq-head h2 {
        font-size: 30px;
        letter-spacing: -1px;
    }
    .avyro-dm-faq-head p {
        font-size: 14px;
        line-height: 1.65;
    }
    .avyro-dm-faq-question {
        min-height: 64px;
        padding: 0 16px;
        font-size: 14px;
    }
    .avyro-dm-faq-answer {
        padding: 0 48px 20px 16px;
    }
    .avyro-dm-faq-answer p {
        font-size: 13px;
    }

}