html, body {
    overflow-x: hidden;
}

/* ========================
   1. HERO BANNER
   ======================== */
.yt-hero {
    display: flex;
    gap: 48px;
    align-items: center;
}

.yt-hero-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.yt-hero-text h1 {
    font: var(--txt-h1);
    color: var(--color-txt);
}

.yt-hero-text h1 span {
    color: #FF0033;
}

.yt-hero-subtitle {
    font: var(--p-all-txt);
    color: var(--color-txt);
    max-width: 540px;
    line-height: 1.7;
}

.yt-hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}

.yt-hero-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.yt-hero-feature img {
    width: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.yt-hero-feature p {
    font: var(--p-all-txt);
    color: var(--color-txt);
}

.yt-hero-img {
    flex-shrink: 0;
}

.yt-hero-img img {
    width: 28vw;
    max-width: 400px;
    min-width: 220px;
    animation: levitation 1.5s ease-in-out infinite alternate;
}

@media (max-width: 920px) {
    .yt-hero {
        flex-direction: column-reverse;
        text-align: center;
        gap: 32px;
    }
    .yt-hero-subtitle {
        max-width: 100%;
    }
    .yt-hero-text {
        align-items: center;
    }
    .yt-hero-feature {
        justify-content: center;
    }
    .yt-hero-img img {
        width: 220px;
    }
    .yt-hero-text .btn {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

/* ========================
   2. WHY YOUTUBE NEEDS VPN
   ======================== */
.yt-why {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.yt-why-title {
    text-align: center;
    color: var(--color-txt);
}

.yt-why-title h2 {
    font: var(--h2-txt);
    margin-bottom: 16px;
}

.yt-why-title p {
    font: var(--p-all-txt);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.yt-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
}

.yt-why-card {
    border-radius: 24px;
    border: 1px solid #FFFFFF26;
    padding: 32px 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    background: rgba(3, 10, 32, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.yt-why-card:hover {
    transform: translateY(-4px);
    border-color: #FF003340;
}

.yt-why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 150% 150% at 50% 120%,
        #01559a 0%,
        #030A20 70%
    );
    z-index: -1;
}

.yt-why-icon {
    width: 56px;
    height: 56px;
    min-width: 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;
}

.yt-why-icon img {
    width: 28px;
    height: 28px;
}

.yt-why-card-text h3 {
    font: 700 clamp(16px, 1.5vw, 20px)/clamp(20px, 2vw, 26px) 'Inter', sans-serif;
    color: var(--color-txt);
    margin-bottom: 10px;
}

.yt-why-card-text p {
    font: var(--p-all-txt);
    color: var(--color-txt);
    opacity: 0.85;
    line-height: 1.6;
}

@media (max-width: 920px) {
    .yt-why-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================
   3. STREAMING QUALITY
   ======================== */
.yt-quality {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.yt-quality-title {
    text-align: center;
    color: var(--color-txt);
}

.yt-quality-title h2 {
    font: var(--h2-txt);
    margin-bottom: 16px;
}

.yt-quality-title p {
    font: var(--p-all-txt);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

.yt-quality-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.yt-quality-card {
    border-radius: 24px;
    border: 1px solid #FFFFFF26;
    padding: 28px 20px;
    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;
}

.yt-quality-card:hover {
    transform: translateY(-4px);
    border-color: #1B92D180;
}

.yt-quality-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 150% 150% at 50% 120%,
        #01559a 0%,
        #030A20 70%
    );
    z-index: -1;
}

.yt-quality-card.yt-quality-accent {
    border-color: #1B92D180;
}

.yt-quality-card.yt-quality-accent::before {
    background: radial-gradient(
        ellipse 150% 150% at 50% 120%,
        #1B92D140 0%,
        #030A20 70%
    );
}

.yt-quality-label {
    font: 700 clamp(20px, 2vw, 28px)/1.2 'Inter', sans-serif;
    color: var(--color-txt);
}

.yt-quality-resolution {
    font: 300 clamp(12px, 1.2vw, 14px)/1.4 'Inter', sans-serif;
    color: var(--color-txt);
    opacity: 0.7;
}

.yt-quality-bar-wrap {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.yt-quality-bar {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, #1B92D1, #017DE4);
    transition: width 0.6s ease;
}

.yt-quality-card.yt-quality-accent .yt-quality-bar {
    background: linear-gradient(90deg, #1B92D1, #00e5ff);
}

.yt-quality-speed {
    font: 700 clamp(13px, 1.3vw, 16px)/1.4 'Inter', sans-serif;
    color: #1B92D1;
}

.yt-quality-card.yt-quality-accent .yt-quality-speed {
    color: #00e5ff;
}

.yt-quality-desc {
    font: var(--p-all-txt);
    color: var(--color-txt);
    opacity: 0.8;
}

@media (max-width: 920px) {
    .yt-quality-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .yt-quality-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================
   4. PLATFORM CARDS
   ======================== */
.yt-platforms {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.yt-platforms-title {
    text-align: center;
    color: var(--color-txt);
}

.yt-platforms-title h2 {
    font: var(--h2-txt);
    margin-bottom: 16px;
}

.yt-platforms-title p {
    font: var(--p-all-txt);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.yt-platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.yt-platform-card {
    border-radius: 20px;
    border: 1px solid #FFFFFF26;
    padding: 28px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    background: rgba(3, 10, 32, 0.6);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    text-decoration: none;
}

.yt-platform-card:hover {
    transform: translateY(-4px);
    border-color: #1B92D180;
    background: rgba(27, 146, 209, 0.1);
}

.yt-platform-card img {
    width: 48px;
    height: 48px;
}

.yt-platform-card span {
    font: 700 clamp(14px, 1.5vw, 18px)/clamp(18px, 2vw, 24px) 'Inter', sans-serif;
    color: var(--color-txt);
}

.yt-platform-card .yt-platform-note {
    font: 300 clamp(11px, 1vw, 13px)/1.4 'Inter', sans-serif;
    color: var(--color-txt);
    opacity: 0.6;
}

.yt-platform-card .btn {
    font-size: clamp(12px, 1.2vw, 14px);
    padding: 8px 20px;
}

@media (max-width: 920px) {
    .yt-platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .yt-platforms-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================
   5. YOUTUBE USE CASES
   ======================== */
.yt-usecases {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.yt-usecases-title {
    text-align: center;
    color: var(--color-txt);
}

.yt-usecases-title h2 {
    font: var(--h2-txt);
    margin-bottom: 16px;
}

.yt-usecases-title p {
    font: var(--p-all-txt);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

.yt-usecases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.yt-usecase-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;
}

.yt-usecase-card:hover {
    transform: translateY(-4px);
    border-color: #1B92D180;
}

.yt-usecase-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 150% 150% at 50% 120%,
        #01559a 0%,
        #030A20 70%
    );
    z-index: -1;
}

.yt-usecase-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;
}

.yt-usecase-icon img {
    width: 28px;
    height: 28px;
}

.yt-usecase-card h3 {
    font: 700 clamp(16px, 1.5vw, 20px)/clamp(20px, 2vw, 26px) 'Inter', sans-serif;
    color: var(--color-txt);
}

.yt-usecase-card p {
    font: var(--p-all-txt);
    color: var(--color-txt);
    opacity: 0.85;
    line-height: 1.6;
}

@media (max-width: 920px) {
    .yt-usecases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .yt-usecases-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================
   6. HOW TO CONNECT (STEPS)
   ======================== */
.yt-steps {
    display: flex;
    gap: 80px;
    align-items: center;
}

.yt-steps-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--color-txt);
    width: 45%;
}

.yt-steps-text h2 {
    font: var(--h2-txt);
}

.yt-steps-text p {
    font: var(--p-all-txt);
    line-height: 1.6;
}

.yt-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    flex: 1;
}

.yt-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
}

.yt-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;
}

.yt-step-num img {
    width: 28px;
}

.yt-step p {
    font: var(--p-all-txt);
    color: var(--color-txt);
}

@media (max-width: 920px) {
    .yt-steps {
        flex-direction: column;
        gap: 36px;
        text-align: center;
    }
    .yt-steps-text {
        width: 100%;
    }
}

/* ========================
   7. FREE TRIAL CTA
   ======================== */
.yt-trial {
    position: relative;
    width: 100%;
}

.yt-trial::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--footer-gradient);
    z-index: -1;
    width: 120vw;
    left: -11vw;
    height: 100%;
}

.yt-trial-inner {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 60px 0;
}

.yt-trial-img img {
    width: 24vw;
    max-width: 340px;
    min-width: 180px;
}

.yt-trial-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--color-txt);
}

.yt-trial-content h2 {
    font: var(--h2-txt);
}

.yt-trial-content p {
    font: var(--p-all-txt);
    line-height: 1.6;
}

.yt-trial-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.yt-trial-list li {
    list-style: none;
    font: var(--p-all-txt);
    color: var(--color-txt);
    display: flex;
    align-items: center;
    gap: 10px;
}

.yt-trial-list li img {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

@media (max-width: 920px) {
    .yt-trial-inner {
        flex-direction: column;
        gap: 36px;
        text-align: center;
    }
    .yt-trial-list li {
        justify-content: center;
    }
    .yt-trial-img img {
        width: 180px;
    }
    .yt-trial-content .btn {
        align-self: center;
    }
}

/* ========================
   9. SEO TEXT BLOCK
   ======================== */
.yt-seo-text {
    color: var(--color-txt);
    max-width: 900px;
    margin: 0 auto;
}

.yt-seo-text h2 {
    font: var(--h2-txt);
    text-align: center;
    margin-bottom: 24px;
}

.yt-seo-text h3 {
    font: 700 clamp(17px, 1.6vw, 22px)/clamp(22px, 2.2vw, 28px) 'Inter', sans-serif;
    color: var(--color-txt);
    margin-top: 24px;
    margin-bottom: 12px;
}

.yt-seo-text p {
    font: var(--p-all-txt);
    line-height: 1.8;
    margin-bottom: 16px;
}

.yt-seo-text ul {
    list-style: none;
    margin-bottom: 16px;
}

.yt-seo-text ul li {
    font: var(--p-all-txt);
    color: var(--color-txt);
    padding: 4px 0;
    padding-left: 24px;
    position: relative;
    line-height: 1.7;
}

.yt-seo-text ul li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #1B92D1;
}

/* ========================
   10. FAQ ACCORDION
   ======================== */
.yt-faq {
    color: var(--color-txt);
}

.yt-faq .questions-title {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.yt-faq .subtitle-question {
    font: var(--subtitle-question);
    color: var(--color-txt);
}

.yt-faq .questions {
    border-bottom: 1px solid #fff4;
    display: flex;
    flex-direction: column;
}

.yt-faq .questions input {
    display: none;
}

.yt-faq .questions label {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    cursor: pointer;
}

.yt-faq .arrow-icon {
    width: 33px;
    transition: transform 0.2s ease;
}

.yt-faq .questions input:checked + .custom-label .arrow-icon {
    transform: rotate(180deg);
}

.yt-faq .question-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s ease;
}

.yt-faq .questions input:checked ~ .question-content {
    max-height: 700px;
}

.yt-faq .question-content p {
    font: var(--txt-ques);
    color: var(--color-txt);
    line-height: 1.6;
}

.yt-faq .question-content > *:last-child {
    padding-bottom: 10px;
}

.yt-faq .question-title-txt {
    font: var(--txt-questions);
    color: var(--color-txt);
}

@media (max-width: 720px) {
    .yt-faq .questions input:checked ~ .question-content {
        max-height: 2000px;
    }
}
