html, body {
    overflow-x: hidden;
}

/* ========================
   HERO BANNER
   ======================== */
.avo-hero {
    display: flex;
    gap: 48px;
    align-items: center;
}

.avo-hero-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.avo-hero-text h1 {
    font: var(--txt-h1);
    color: var(--color-txt);
}

.avo-hero-text h1 span {
    color: #1B92D1;
}

.avo-hero-subtitle {
    font: var(--p-all-txt);
    color: var(--color-txt);
    max-width: 520px;
    line-height: 1.6;
}

.avo-hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}

.avo-hero-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.avo-hero-feature img {
    width: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.avo-hero-feature p {
    font: var(--p-all-txt);
    color: var(--color-txt);
}

.avo-hero-img {
    flex-shrink: 0;
}

.avo-hero-img img {
    width: 28vw;
    max-width: 400px;
    min-width: 220px;
    animation: levitation 1.5s ease-in-out infinite alternate;
}

@media (max-width: 920px) {
    .avo-hero {
        flex-direction: column-reverse;
        text-align: center;
        gap: 32px;
    }
    .avo-hero-subtitle {
        max-width: 100%;
    }
    .avo-hero-text {
        align-items: center;
    }
    .avo-hero-feature {
        justify-content: center;
    }
    .avo-hero-img img {
        width: 220px;
    }
    .avo-hero-text .btn {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

/* ========================
   WHAT IS AVO VPN
   ======================== */
.avo-about {
    display: flex;
    gap: 80px;
    align-items: center;
}

.avo-about-img {
    flex-shrink: 0;
}

.avo-about-img img {
    height: 18vw;
    min-height: 160px;
    max-height: 260px;
}

.avo-about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--color-txt);
    flex: 1;
}

.avo-about-text h2 {
    font: var(--h2-txt);
}

.avo-about-text p {
    font: var(--p-all-txt);
    line-height: 1.7;
}

.avo-about-text a {
    color: #1B92D1;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.avo-about-text a:hover {
    opacity: 0.8;
}

@media (max-width: 920px) {
    .avo-about {
        flex-direction: column;
        gap: 36px;
        text-align: center;
    }
    .avo-about-img img {
        height: 160px;
    }
}

/* ========================
   COMPARISON / ADVANTAGES
   ======================== */
.avo-compare {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.avo-compare-title {
    text-align: center;
    color: var(--color-txt);
}

.avo-compare-title h2 {
    font: var(--h2-txt);
    margin-bottom: 16px;
}

.avo-compare-title p {
    font: var(--p-all-txt);
    max-width: 600px;
    margin: 0 auto;
}

.avo-compare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.avo-compare-card {
    border-radius: 24px;
    border: 1px solid #FFFFFF26;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
    background: rgba(3, 10, 32, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.avo-compare-card:hover {
    transform: translateY(-4px);
    border-color: #1B92D180;
}

.avo-compare-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 150% 150% at 50% 120%,
        #01559a 0%,
        #030A20 70%
    );
    z-index: -1;
}

.avo-compare-icon {
    width: 56px;
    height: 56px;
    background-color: #040e2b;
    border: 1px solid #FFFFFF4D;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow:
        4px 4px 12px 4px #0C50CF3C,
        inset 1px 6px 4px -4px #FFFFFF80;
    flex-shrink: 0;
}

.avo-compare-icon img {
    width: 28px;
    height: 28px;
}

.avo-compare-card h3 {
    font: 700 clamp(16px, 1.5vw, 20px)/clamp(20px, 2vw, 26px) 'Inter', sans-serif;
    color: var(--color-txt);
}

.avo-compare-card p {
    font: var(--p-all-txt);
    color: var(--color-txt);
    opacity: 0.85;
}

@media (max-width: 920px) {
    .avo-compare-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .avo-compare-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================
   DOWNLOAD PLATFORMS
   ======================== */
.avo-platforms {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.avo-platforms-title {
    text-align: center;
    color: var(--color-txt);
}

.avo-platforms-title h2 {
    font: var(--h2-txt);
    margin-bottom: 16px;
}

.avo-platforms-title p {
    font: var(--p-all-txt);
    max-width: 600px;
    margin: 0 auto;
}

.avo-platforms-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
}

.avo-platform-card {
    border-radius: 20px;
    border: 1px solid #FFFFFF26;
    padding: 28px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    background: rgba(3, 10, 32, 0.6);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    text-decoration: none;
}

.avo-platform-card:hover {
    transform: translateY(-4px);
    border-color: #1B92D180;
    background: rgba(27, 146, 209, 0.1);
}

.avo-platform-card img {
    width: 48px;
    height: 48px;
}

.avo-platform-card > span {
    font: 700 clamp(14px, 1.5vw, 18px)/clamp(18px, 2vw, 24px) 'Inter', sans-serif;
    color: var(--color-txt);
}

.avo-platform-card .btn {
    font-size: clamp(12px, 1.2vw, 14px);
    padding: 8px 20px;
}

.avo-store-links {
    display: flex;
    gap: 6px;
}

.avo-store-badge {
    font: 400 11px/16px 'Inter', sans-serif;
    color: #ffffffb3;
    background: rgba(27, 146, 209, 0.2);
    border: 1px solid #1B92D140;
    border-radius: 12px;
    padding: 2px 10px;
}

@media (max-width: 920px) {
    .avo-platforms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575px) {
    .avo-platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================
   HOW TO SET UP
   ======================== */
.avo-setup {
    display: flex;
    gap: 80px;
    align-items: center;
}

.avo-setup-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--color-txt);
    width: 45%;
}

.avo-setup-text h2 {
    font: var(--h2-txt);
}

.avo-setup-text p {
    font: var(--p-all-txt);
    line-height: 1.6;
}

.avo-setup-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    flex: 1;
}

.avo-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
}

.avo-step-num {
    width: 52px;
    height: 52px;
    background-color: #040e2b;
    border: 1px solid #FFFFFF4D;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow:
        4px 4px 12px 4px #0C50CF3C,
        inset 1px 6px 4px -4px #FFFFFF80;
    flex-shrink: 0;
}

.avo-step-num img {
    width: 28px;
}

.avo-step p {
    font: var(--p-all-txt);
    color: var(--color-txt);
}

@media (max-width: 920px) {
    .avo-setup {
        flex-direction: column;
        gap: 36px;
        text-align: center;
    }
    .avo-setup-text {
        width: 100%;
    }
}

/* ========================
   FREE TRIAL CTA
   ======================== */
.avo-trial {
    position: relative;
    width: 100%;
}

.avo-trial::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--footer-gradient);
    z-index: -1;
    width: 120vw;
    left: -11vw;
    height: 100%;
}

.avo-trial-inner {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 60px 0;
}

.avo-trial-img img {
    width: 24vw;
    max-width: 340px;
    min-width: 180px;
}

.avo-trial-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--color-txt);
}

.avo-trial-content h2 {
    font: var(--h2-txt);
}

.avo-trial-content p {
    font: var(--p-all-txt);
    line-height: 1.6;
}

.avo-trial-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.avo-trial-list li {
    list-style: none;
    font: var(--p-all-txt);
    color: var(--color-txt);
    display: flex;
    align-items: center;
    gap: 10px;
}

.avo-trial-list li img {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

@media (max-width: 920px) {
    .avo-trial-inner {
        flex-direction: column;
        gap: 36px;
        text-align: center;
    }
    .avo-trial-list li {
        justify-content: center;
    }
    .avo-trial-img img {
        width: 180px;
    }
    .avo-trial-content .btn {
        align-self: center;
    }
}

/* ========================
   SEO TEXT BLOCK
   ======================== */
.avo-seo-text {
    color: var(--color-txt);
    max-width: 900px;
    margin: 0 auto;
}

.avo-seo-text h2 {
    font: var(--h2-txt);
    text-align: center;
    margin-bottom: 24px;
}

.avo-seo-text p {
    font: var(--p-all-txt);
    line-height: 1.8;
    margin-bottom: 16px;
}

.avo-seo-text a {
    color: #1B92D1;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.avo-seo-text a:hover {
    opacity: 0.8;
}

.avo-seo-text ul {
    list-style: none;
    margin-bottom: 16px;
}

.avo-seo-text ul li {
    font: var(--p-all-txt);
    color: var(--color-txt);
    padding: 4px 0;
    padding-left: 24px;
    position: relative;
}

.avo-seo-text ul li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #1B92D1;
}

/* ========================
   CUSTOM FAQ FOR AVO
   ======================== */
.avo-faq {
    color: var(--color-txt);
}

.avo-faq .questions-title {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.avo-faq .subtitle-question {
    font: var(--subtitle-question);
    color: var(--color-txt);
}

.avo-faq .questions {
    border-bottom: 1px solid #fff4;
    display: flex;
    flex-direction: column;
}

.avo-faq .questions input {
    display: none;
}

.avo-faq .questions label {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    cursor: pointer;
}

.avo-faq .arrow-icon {
    width: 33px;
    transition: transform 0.2s ease;
}

.avo-faq .questions input:checked + .custom-label .arrow-icon {
    transform: rotate(180deg);
}

.avo-faq .question-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s ease;
}

.avo-faq .questions input:checked ~ .question-content {
    max-height: 700px;
}

.avo-faq .question-content p {
    font: var(--txt-ques);
    color: var(--color-txt);
    line-height: 1.6;
}

.avo-faq .question-content a {
    color: #1B92D1;
    text-decoration: underline;
}

.avo-faq .question-content > *:last-child {
    padding-bottom: 10px;
}

.avo-faq .question-title-txt {
    font: var(--txt-questions);
    color: var(--color-txt);
}

@media (max-width: 720px) {
    .avo-faq .questions input:checked ~ .question-content {
        max-height: 2000px;
    }
}

/* ========================
   BOTTOM GRADIENT (reused)
   ======================== */
.avo-bottom-gradient {
    position: relative;
    width: 100%;
}

.avo-bottom-gradient::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--footer-gradient);
    z-index: -1;
    width: 120vw;
    left: -11vw;
    height: calc(35vw + 5%);
}

@media (max-width: 1275px) {
    .avo-bottom-gradient::before {
        height: calc(35vw + 30%);
    }
}

@media (max-width: 1020px) {
    .avo-bottom-gradient::before {
        height: calc(35vw + 50%);
    }
}

@media (max-width: 790px) {
    .avo-bottom-gradient::before {
        height: calc(35vw + 80%);
    }
}
