.avyro-portfolio {
    position: relative;
    padding: 120px 5%;
    background: #fff;
    overflow: hidden;
}

.avyro-portfolio::before {
    content: "";
    position: absolute;
    top: -250px;
    right: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(23, 105, 232, .08);
    filter: blur(90px);
    pointer-events: none;
}

.avyro-portfolio::after {
    content: "";
    position: absolute;
    left: -180px;
    bottom: -230px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(131, 206, 39, .07);
    filter: blur(90px);
    pointer-events: none;
}

.avyro-portfolio-head {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto 32px;
    text-align: center;
}

.avyro-portfolio-label {
    display: inline-block;
    margin-bottom: 10px;
    color: #1769e8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.avyro-portfolio-head h2 {
    margin: 0;
    color: #071a38;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -1.8px;
}

.avyro-portfolio-head h2 span {
    color: #1769e8;
}

.avyro-portfolio-head p {
    max-width: 620px;
    margin: 14px auto 0;
    color: #71839c;
    font-size: 15px;
    line-height: 1.7;
}

.avyro-portfolio-filters {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 32px;
}

.avyro-portfolio-filters button {
    padding: 9px 18px;
    border: 1px solid #e1e8f0;
    border-radius: 50px;
    background: #fff;
    color: #344a66;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 5px 18px rgba(15, 40, 70, .06);
    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}

.avyro-portfolio-filters button:hover {
    transform: translateY(-3px);
    border-color: #1769e8;
    color: #1769e8;
    box-shadow: 0 10px 25px rgba(23, 105, 232, .12);
}

.avyro-portfolio-filters button.active {
    border-color: #1769e8;
    background: #1769e8;
    color: #fff;
    box-shadow: 0 9px 25px rgba(23, 105, 232, .25);
}

.avyro-portfolio-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 1180px;
    margin: 0 auto;
}

.avyro-portfolio-card {
    position: relative;
    height: 235px;
    overflow: hidden;
    border-radius: 15px;
    background: #edf1f5;
    box-shadow: 0 8px 25px rgba(12, 35, 60, .08);
    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.avyro-portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(12, 35, 60, .16);
}

.avyro-portfolio-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.avyro-portfolio-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform .7s cubic-bezier(.2, .7, .2, 1),
        filter .5s ease;
}

.avyro-portfolio-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(3, 17, 38, .94) 0%,
            rgba(3, 17, 38, .45) 38%,
            rgba(3, 17, 38, .03) 75%
        );
    pointer-events: none;
}

.avyro-portfolio-card:hover img {
    transform: scale(1.08);
    filter: saturate(1.08);
}

.avyro-portfolio-overlay {
    position: absolute;
    z-index: 2;
    left: 18px;
    right: 18px;
    bottom: 17px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 12px;
}

.avyro-portfolio-overlay span {
    grid-column: 1 / -1;
    margin-bottom: 4px;
    color: #83ce27;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.avyro-portfolio-overlay h3 {
    margin: 0;
    color: #fff;
    font-size: 17px;
    line-height: 1.15;
    font-weight: 800;
}

.avyro-portfolio-overlay a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: #071a38;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px) scale(.8);
    transition:
        opacity .35s ease,
        transform .35s ease,
        background .3s ease,
        color .3s ease;
}

.avyro-portfolio-card:hover .avyro-portfolio-overlay a {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.avyro-portfolio-overlay a:hover {
    color: #fff;
    background: #1769e8;
    transform: translateY(0) scale(1.08) !important;
}

.avyro-portfolio-card.hide {
    display: none;
}

.avyro-portfolio-card.show {
    display: block;
}

.avyro-faq-section {
    position: relative;
    padding: 60px 6%;
    background: #f8fbff;
    overflow: hidden;
}

.avyro-faq-section::before {
    content: "";
    position: absolute;
    top: -180px;
    left: -150px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(23, 105, 232, .08);
    filter: blur(90px);
    pointer-events: none;
}

.avyro-faq-head {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto 42px;
    text-align: center;
}

.avyro-faq-head > span {
    color: #1769e8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.avyro-faq-head h2 {
    margin: 11px 0 0;
    color: #071a38;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -1.8px;
}

.avyro-faq-head h2 em {
    color: #1769e8;
    font-style: normal;
}

.avyro-faq-head p {
    max-width: 610px;
    margin: 14px auto 0;
    color: #687b95;
    font-size: 15px;
    line-height: 1.7;
}

.avyro-faq-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .75fr 1.5fr;
    gap: 45px;
    align-items: start;
    max-width: 1120px;
    margin: 0 auto;
}

.avyro-faq-intro {
    position: sticky;
    top: 30px;
    padding: 32px;
    border-radius: 22px;
    background: linear-gradient(145deg, #071a38, #0c2d60);
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(7, 26, 56, .15);
}

.avyro-faq-intro::after {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(23, 105, 232, .45);
    filter: blur(25px);
}

.avyro-faq-badge {
    position: relative;
    z-index: 2;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #83ce27;
    color: #071a38;
    font-size: 20px;
}

.avyro-faq-intro h3 {
    position: relative;
    z-index: 2;
    margin: 25px 0 10px;
    color: #fff;
    font-size: 27px;
    line-height: 1.15;
}

.avyro-faq-intro h3 span {
    color: #83ce27;
}

.avyro-faq-intro p {
    position: relative;
    z-index: 2;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, .68);
    font-size: 14px;
    line-height: 1.7;
}

.avyro-faq-call {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 18px;
    border-radius: 9px;
    background: #fff;
    color: #071a38;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    transition: .3s ease;
}

.avyro-faq-call:hover {
    background: #83ce27;
    color: #071a38;
    transform: translateY(-3px);
}

.avyro-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.avyro-faq-item {
    overflow: hidden;
    border: 1px solid #e3eaf2;
    border-radius: 13px;
    background: #fff;
    transition:
        border-color .3s ease,
        box-shadow .3s ease,
        transform .3s ease;
}

.avyro-faq-item:hover {
    transform: translateX(3px);
    border-color: #cbdced;
    box-shadow: 0 12px 30px rgba(20, 55, 90, .07);
}

.avyro-faq-item.active {
    border-color: #1769e8;
    box-shadow: 0 12px 30px rgba(23, 105, 232, .08);
}

.avyro-faq-question {
    width: 100%;
    padding: 19px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 0;
    background: transparent;
    color: #071a38;
    text-align: left;
    font-family: inherit;
    font-size: 14px;
    font-weight: 750;
    cursor: pointer;
}

.avyro-faq-question i {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf5ff;
    color: #1769e8;
    font-size: 11px;
    transition:
        transform .35s ease,
        background .3s ease,
        color .3s ease;
}

.avyro-faq-item.active .avyro-faq-question i {
    transform: rotate(45deg);
    background: #1769e8;
    color: #fff;
}

.avyro-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height .4s ease,
        padding .4s ease;
}

.avyro-faq-item.active .avyro-faq-answer {
    max-height: 200px;
}

.avyro-faq-answer p {
    margin: 0;
    padding: 0 20px 19px;
    color: #687b95;
    font-size: 13.5px;
    line-height: 1.7;
}

.avyro-final-cta {
    position: relative;
    max-width: 1250px;
    min-height: 280px;
    margin: 55px auto;
    padding: 40px 6%;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            115deg,
            #071a38 0%,
            #0b2e63 58%,
            #1769e8 100%
        );
    border-radius: 24px;
    overflow: hidden;
}

.avyro-cta-glow {
    position: absolute;
    top: -140px;
    right: 8%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(131, 206, 39, .16);
    filter: blur(60px);
}

.avyro-final-cta-content {
    position: relative;
    z-index: 3;
    max-width: 590px;
}

.avyro-final-cta-content > span {
    color: #83ce27;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.6px;
}

.avyro-final-cta-content h2 {
    margin: 8px 0 10px;
    color: #fff;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.05;
    letter-spacing: -1.7px;
}

.avyro-final-cta-content h2 em {
    color: #83ce27;
    font-style: normal;
}

.avyro-final-cta-content p {
    max-width: 500px;
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1.6;
}

.avyro-final-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.avyro-cta-primary,
.avyro-cta-secondary {
    min-height: 42px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease;
}

.avyro-cta-primary {
    color: #071a38;
    background: #fff;
}

.avyro-cta-primary:hover {
    background: #83ce27;
    color: #071a38;
    transform: translateY(-2px);
}

.avyro-cta-secondary {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .06);
}

.avyro-cta-secondary:hover {
    color: #071a38;
    background: #fff;
    transform: translateY(-2px);
}

.avyro-cta-orbit {
    position: absolute;
    right: 3%;
    top: 50%;
    width: 250px;
    height: 250px;
    transform: translateY(-50%);
}

.avyro-orbit-circle {
    position: absolute;
    inset: 30px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
}

.avyro-orbit-circle::before {
    content: "";
    position: absolute;
    inset: 25px;
    border: 1px dashed rgba(131, 206, 39, .3);
    border-radius: 50%;
}

.avyro-orbit-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 11px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .95);
    color: #071a38;
    font-size: 9px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

.avyro-orbit-card i {
    color: #1769e8;
}

.card-one {
    top: 30px;
    right: 0;
}

.card-two {
    left: 0;
    bottom: 30px;
}

.card-three {
    top: 105px;
    left: 0;
}

@media (max-width: 1050px) {
    .avyro-portfolio {
        padding: 75px 4%;
    }

    .avyro-portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .avyro-faq-wrap {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .avyro-faq-intro {
        position: relative;
        top: auto;
    }

    .avyro-cta-orbit {
        right: -70px;
        opacity: .25;
    }

    .avyro-final-cta {
        min-height: 250px;
        margin: 45px 25px;
        padding: 35px 5%;
    }
}

@media (max-width: 700px) {
    .avyro-portfolio {
        padding: 100px 17px;
    }

    .avyro-portfolio-head {
        margin-bottom: 25px;
    }

    .avyro-portfolio-head h2 {
        font-size: 34px;
    }

    .avyro-portfolio-head p {
        font-size: 14px;
        line-height: 1.6;
    }

    .avyro-portfolio-filters {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 3px 2px 10px;
        margin-bottom: 30px;
        scrollbar-width: none;
    }

    .avyro-portfolio-filters::-webkit-scrollbar {
        display: none;
    }

    .avyro-portfolio-filters button {
        flex: 0 0 auto;
        padding: 8px 15px;
    }

    .avyro-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .avyro-portfolio-card {
        height: 185px;
        border-radius: 12px;
    }

    .avyro-portfolio-overlay {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .avyro-portfolio-overlay h3 {
        font-size: 14px;
    }

    .avyro-portfolio-overlay a {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }

    .avyro-faq-section {
        padding: 45px 14px;
    }

    .avyro-faq-head {
        margin-bottom: 30px;
    }

    .avyro-faq-head h2 {
        font-size: 34px;
    }

    .avyro-faq-head p {
        font-size: 14px;
    }

    .avyro-faq-intro {
        padding: 26px;
    }

    .avyro-faq-intro h3 {
        font-size: 24px;
    }

    .avyro-faq-question {
        padding: 17px 15px;
        font-size: 13px;
    }

    .avyro-faq-answer p {
        padding: 0 15px 17px;
        font-size: 13px;
    }

    .avyro-final-cta {
        min-height: auto;
        margin: 35px 15px;
        padding: 30px 20px;
        border-radius: 18px;
    }

    .avyro-final-cta-content {
        width: 100%;
        max-width: 100%;
    }

    .avyro-final-cta-content h2 {
        font-size: 30px;
        line-height: 1.08;
        letter-spacing: -1.2px;
    }

    .avyro-final-cta-content p {
        font-size: 13px;
        line-height: 1.55;
    }

    .avyro-final-buttons {
        flex-direction: column;
        gap: 8px;
        width: 100%;
        margin-top: 18px;
    }

    .avyro-cta-primary,
    .avyro-cta-secondary {
        width: 100%;
        min-height: 42px;
        box-sizing: border-box;
    }

    .avyro-cta-orbit {
        display: none;
    }
}

@media (max-width: 450px) {
    .avyro-portfolio-grid {
        grid-template-columns: 1fr;
    }

    .avyro-portfolio-card {
        height: 220px;
    }
}

@media (max-width: 700px) {
    .avyro-portfolio {
        position: relative;
        width: 100%;
        box-sizing: border-box;
        padding: 105px 14px 50px;
        overflow: hidden;
    }

    .avyro-portfolio-head {
        position: relative;
        z-index: 2;
        width: 100%;
        margin: 0 auto 24px;
        text-align: center;
    }

    .avyro-portfolio-label {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
        padding: 6px 15px;
        border-radius: 50px;
        font-size: 9px;
        line-height: 1;
    }

    .avyro-portfolio-head h2 {
        margin: 0;
        font-size: 31px;
        line-height: 1.1;
        letter-spacing: -1.2px;
    }

    .avyro-portfolio-head p {
        max-width: 340px;
        margin: 12px auto 0;
        font-size: 12.5px;
        line-height: 1.6;
    }

    .avyro-portfolio-filters {
        position: relative;
        z-index: 3;
        width: calc(100% + 8px);
        max-width: none;
        margin: 0 0 22px -4px;
        padding: 2px 12px 10px 8px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 8px;
        overflow-x: auto;
        overflow-y: hidden;
        box-sizing: border-box;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .avyro-portfolio-filters::-webkit-scrollbar {
        display: none;
    }

    .avyro-portfolio-filters button {
        flex: 0 0 auto;
        min-width: max-content;
        min-height: 38px;
        margin-bottom: 8px;
        padding: 0 15px;
        white-space: nowrap;
        font-size: 10px;
        line-height: 1;
    }

    .avyro-portfolio-grid {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        margin: 0;
    }

    .avyro-portfolio-card {
        width: 100%;
        height: 210px;
        border-radius: 13px;
    }

    .avyro-portfolio-overlay {
        left: 13px;
        right: 13px;
        bottom: 13px;
    }

    .avyro-portfolio-overlay h3 {
        font-size: 14px;
    }

    .avyro-portfolio-overlay a {
        width: 32px;
        height: 32px;
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 450px) {
    .avyro-portfolio {
        padding-top: 100px;
        padding-left: 12px;
        padding-right: 12px;
        padding-bottom: 45px;
    }

    .avyro-portfolio-head h2 {
        font-size: 29px;
    }

    .avyro-portfolio-head p {
        max-width: 325px;
        font-size: 12px;
    }

    .avyro-portfolio-card {
        height: 200px;
    }
}

@media (max-width: 380px) {
    .avyro-portfolio {
        padding-top: 95px;
        padding-left: 11px;
        padding-right: 11px;
    }

    .avyro-portfolio-head h2 {
        font-size: 27px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .avyro-portfolio-card,
    .avyro-orbit-circle,
    .avyro-orbit-card {
        animation: none;
    }

    .avyro-portfolio-card:hover,
    .avyro-faq-item:hover,
    .avyro-faq-call:hover,
    .avyro-cta-primary:hover,
    .avyro-cta-secondary:hover {
        transform: none;
    }
}
.avyro-portfolio,
.avyro-portfolio h2,
.avyro-portfolio h3,
.avyro-portfolio p,
.avyro-portfolio span,
.avyro-portfolio button,
.avyro-portfolio a,
.avyro-faq-section,
.avyro-faq-section h2,
.avyro-faq-section h3,
.avyro-faq-section p,
.avyro-faq-section span,
.avyro-faq-section button,
.avyro-faq-section a,
.avyro-final-cta,
.avyro-final-cta h2,
.avyro-final-cta p,
.avyro-final-cta span,
.avyro-final-cta a {
    font-family: "Poppins", sans-serif !important;
}