/* =========================================================
   TV ON HOLIDAY - 2026 WEBSITE
   Main Stylesheet
========================================================= */


/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family: Arial, Helvetica, sans-serif;
    color: #263746;
    line-height: 1.6;

    background: #ffffff;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}


/* =========================================================
   TOP INFORMATION BAR
========================================================= */

.top {
    min-height: 50px;

    padding: 8px 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 55px;

    background: #0b2238;
    color: #ffffff;
}

.top-item {
    display: flex;
    align-items: center;

    gap: 10px;

    color: rgba(255, 255, 255, 0.92);

    font-size: 12px;
    font-weight: 500;

    white-space: nowrap;
}

.top-item svg {
    width: 24px;
    height: 24px;

    flex: 0 0 24px;

    color: #ffffff;
}


/* TABLET */

@media (max-width: 900px) {

    .top {
        gap: 28px;
    }

    .top-item {
        font-size: 11px;
    }

    .top-item svg {
        width: 21px;
        height: 21px;

        flex-basis: 21px;
    }

}


/* MOBILE */

@media (max-width: 650px) {

    .top {
        justify-content: space-around;

        gap: 10px;

        padding: 8px 12px;
    }

    .top-item span {
        display: none;
    }

    .top-item svg {
        width: 23px;
        height: 23px;

        flex-basis: 23px;
    }

}


/* =========================================================
   HEADER / NAVIGATION
========================================================= */

header {
    background: #ffffff;
    border-bottom: 1px solid #edf1f4;
}

.nav {
    width: calc(100% - 40px);
    max-width: 1180px;
    min-height: 105px;

    margin: 0 auto;

    display: flex;
    align-items: center;

    gap: clamp(16px, 2vw, 30px);
}


/* =========================================================
   LOGO
========================================================= */

.brand {
    min-width: 0;
    flex: 0 1 335px;

    display: flex;
    align-items: center;

    gap: 12px;
}

.logo {
    width: 66px;
    height: 66px;

    flex: 0 0 66px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding-right: 6px;

    border: 4px solid #102d49;
    border-radius: 50%;

    font-size: 30px;
    font-style: normal;
    font-weight: 800;

    letter-spacing: -7px;
}

.logo b {
    color: #102d49;
}

.logo i {
    color: #cfd4d9;
    font-style: normal;
}

.brand > span:last-child {
    display: flex;
    flex-direction: column;
}

.brand strong {
    color: #102d49;

    font-size: 27px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: -1.5px;
}

.brand em {
    height: 2px;

    margin: 8px 0 5px;

    background: #78a9cc;
}

.brand small {
    color: #b7bbc0;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.38em;
    text-align: center;
}


/* =========================================================
   MAIN NAVIGATION
========================================================= */

.main-navigation {
    margin-left: auto;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: clamp(14px, 1.7vw, 25px);

    min-width: 0;

    font-size: clamp(14px, 1vw, 15px);
    font-weight: 700;

    white-space: nowrap;
}

.main-navigation a {
    position: relative;

    padding: 10px 0;

    border-bottom: none;
}

.main-navigation a::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 2px;

    height: 2px;

    background: transparent;
}

.main-navigation a:hover,
.main-navigation a.active {
    color: #1f6ca9;
}

.main-navigation a:hover::after,
.main-navigation a.active::after {
    background: #2f7fc1;
}


/* =========================================================
   MEMBERS LOGIN BUTTON
========================================================= */

.login {
    flex-shrink: 0;

    padding: 12px 19px;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            #2476b7,
            #368bd0
        );

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.login:hover {
    transform: translateY(-1px);

    box-shadow:
        0 8px 20px rgba(36, 118, 183, 0.20);
}



/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-button {
    width: 44px;
    height: 44px;
    padding: 0;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid #dce5eb;
    border-radius: 10px;
    background: #ffffff;
    cursor: pointer;
}

.mobile-menu-button span {
    width: 20px;
    height: 2px;
    display: block;
    border-radius: 10px;
    background: #102d49;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.mobile-menu-button-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button-open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

.mobile-navigation {
    display: none;
    background: #ffffff;
    border-top: 1px solid #edf1f4;
    border-bottom: 1px solid #e3e9ee;
    box-shadow: 0 14px 30px rgba(16, 45, 73, 0.08);
}

.mobile-navigation-open {
    display: block;
}

.mobile-navigation-inner {
    width: calc(100% - 40px);
    max-width: 700px;
    margin: 0 auto;
    padding: 10px 0 20px;
}

.mobile-navigation-inner > a {
    min-height: 49px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    border-bottom: 1px solid #edf1f4;
    color: #344655;
    font-size: 14px;
    font-weight: 600;
}

.mobile-navigation-inner > a:hover,
.mobile-navigation-inner > a.active {
    color: #2476b7;
}

.mobile-navigation-inner > a.active {
    padding-left: 14px;
    border-left: 3px solid #2f7fc1;
}

.mobile-navigation-inner .mobile-login {
    min-height: 48px;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 9px;
    background:
        linear-gradient(
            135deg,
            #2476b7,
            #368bd0
        );
    color: #ffffff;
    font-weight: 700;
}

.mobile-navigation-inner .mobile-login:hover {
    color: #ffffff;
}

@media (min-width: 1001px) {

    .mobile-navigation,
    .mobile-navigation.mobile-navigation-open {
        display: none !important;
    }

}

/* =========================================================
   HERO
========================================================= */

.hero {
    background:
        linear-gradient(
            100deg,
            #ffffff 0%,
            #eceff1 100%
        );
}

.heroin {
    width: 100%;
    max-width: 1180px;
    min-height: 520px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr
        1.08fr;
}


/* =========================================================
   HERO TEXT
========================================================= */

.copybox {
    align-self: center;

    padding:
        72px
        38px
        60px
        20px;

        transform: translateY(-20px);
}

.kicker {
    margin-bottom: 13px;

    color: #2476b7;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.15em;
}

.hero h1 {
    margin: 0;

    color: #0b2238;

    font-size: 52px;
    line-height: 1.06;
    font-weight: 700;

    letter-spacing: -2.3px;
}

.hero h1 span {
    color: #2476b7;
}

.rule {
    width: 90px;
    height: 3px;

    margin: 23px 0;

    background: #2f7fc1;
}

.copybox > p {
    max-width: 520px;

    margin: 0;

    color: #61717e;

    font-size: 17px;
    line-height: 1.75;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.buttons {
    margin-top: 30px;

    display: flex;

    gap: 14px;
}

.button {
    min-height: 50px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.primary {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #2476b7,
            #368bd0
        );
}

.primary:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 24px rgba(36, 118, 183, 0.20);
}

.outline {
    color: #1f6ca9;

    background: #ffffff;

    border: 1.5px solid #2f7fc1;
}

.outline:hover {
    background: #f4f9fc;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.visual {
    padding-left: 18px;

    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    min-height: 520px;

    display: block;

    object-fit: cover;
    object-position: center;

    border-radius: 0 0 0 25px;
}


/* =========================================================
   FEATURE STRIP
========================================================= */

.features {
    padding: 0 20px;

    background: #ffffff;
}

.featurebar {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto;

    position: relative;
    z-index: 5;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    transform: translateY(-30px);

    overflow: hidden;

    border-radius: 16px;

    background:
        linear-gradient(
            110deg,
            #0d2b46,
            #143d5f
        );

    color: #ffffff;

    box-shadow:
        0 15px 35px rgba(12, 40, 64, 0.12);
}

.featurebar > div {
    position: relative;

    padding: 24px 20px;

    display: flex;
    align-items: center;

    gap: 13px;
}

.featurebar > div:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 25%;
    right: 0;

    width: 1px;
    height: 50%;

    background:
        rgba(255, 255, 255, 0.12);
}

.featurebar .feature-icon {
    width: 43px;
    height: 43px;

    flex: 0 0 43px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #1f5d8f;

    color: #ffffff;

    font-style: normal;
}

.featurebar .feature-icon svg {
    width: 24px;
    height: 24px;

    display: block;
}

.featurebar p {
    margin: 0;
}

.featurebar b,
.featurebar span {
    display: block;
}

.featurebar b {
    font-size: 13px;
}

.featurebar span {
    margin-top: 3px;

    color:
        rgba(255, 255, 255, 0.72);

    font-size: 10px;
    line-height: 1.45;
}


/* =========================================================
   INTRODUCTION
========================================================= */

.intro {
    padding:
        65px
        20px
        90px;

    text-align: center;
}

.intro > div {
    max-width: 760px;

    margin: 0 auto;
}

.intro h2,
.how h2,
.cta h2 {
    margin: 0;

    color: #0b2238;

    font-size: 38px;
    line-height: 1.15;

    letter-spacing: -1.3px;
}

.intro p {
    max-width: 720px;

    margin: 20px auto 0;

    color: #667684;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   HOW IT WORKS
========================================================= */

.how {
    padding:
        85px
        20px;

    background: #f5f8fa;
}

.howin {
    width: 100%;
    max-width: 1000px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.15fr
        0.85fr;

    align-items: center;

    gap: 75px;
}

.lead {
    color: #667684;

    font-size: 15px;
}


/* =========================================================
   HOW IT WORKS STEPS
========================================================= */

.steps {
    margin: 27px 0;

    display: grid;

    gap: 18px;
}

.steps > div {
    display: flex;

    gap: 15px;
}

.steps > div > b {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: grid;
    place-items: center;

    border: 1px solid #dce5eb;
    border-radius: 50%;

    background: #ffffff;

    color: #102d49;

    font-size: 12px;
}

.steps p {
    margin: 0;
}

.steps strong,
.steps span {
    display: block;
}

.steps strong {
    color: #102d49;

    font-size: 14px;
}

.steps span {
    color: #71808b;

    font-size: 12px;
}

.more {
    color: #2476b7;

    font-size: 13px;
    font-weight: 700;
}

.more:hover {
    color: #174f7c;
}


/* =========================================================
   VPN STATUS CARD
========================================================= */

.status {
    padding: 35px;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #12324e,
            #215f86
        );

    color: #ffffff;

    box-shadow:
        0 18px 45px rgba(23, 50, 77, 0.15);
}

.connected {
    display: flex;
    align-items: center;

    gap: 15px;
}

.connected i {
    width: 14px;
    height: 14px;

    flex: 0 0 14px;

    border-radius: 50%;

    background: #a7d9ef;

    box-shadow:
        0 0 0 6px rgba(255, 255, 255, 0.07);
}

.connected p {
    margin: 0;
}

.connected b,
.connected span {
    display: block;
}

.connected b {
    font-size: 14px;
}

.connected span {
    margin-top: 2px;

    color:
        rgba(255, 255, 255, 0.70);

    font-size: 11px;
}

.status hr {
    margin: 25px 0;

    border: 0;
    border-top:
        1px solid rgba(255, 255, 255, 0.14);
}


/* =========================================================
   NETWORK LIST
========================================================= */

.networks {
    display: grid;

    gap: 14px;

    font-size: 12px;
}

.networks span {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.networks b {
    color: #b8e1f3;
}


/* =========================================================
   CALL TO ACTION
========================================================= */

.cta {
    padding:
        85px
        20px;
}

.cta > div {
    width: 100%;
    max-width: 1050px;

    margin: 0 auto;

    padding: 55px;

    border-radius: 20px;

    text-align: center;

    color: #ffffff;

    background:
        linear-gradient(
            115deg,
            #102d49,
            #24678f
        );
}

.cta .kicker {
    color: #afd9ed;
}

.cta h2 {
    color: #ffffff;
}

.cta p {
    max-width: 620px;

    margin:
        15px
        auto
        0;

    color:
        rgba(255, 255, 255, 0.78);
}

.white {
    margin-top: 25px;

    background: #ffffff;
    color: #102d49;
}

.white:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 55px 20px 28px;

    background: #0b2238;

    color:
        rgba(255, 255, 255, 0.76);
}

.footerin {
    width: 100%;
    max-width: 1050px;

    margin: 0 auto;
}


/* =========================================================
   FOOTER GRID
========================================================= */

.footgrid {
    display: grid;

    grid-template-columns:
        1.7fr
        1fr
        1fr;

    gap: 60px;
}


/* =========================================================
   FOOTER HEADINGS
========================================================= */

.footer-about h3,
.footer-links h4 {
    margin: 0 0 14px;

    color: #ffffff;
}

.footer-about h3 {
    font-size: 21px;
    line-height: 1.2;
}

.footer-links h4 {
    font-size: 16px;
    line-height: 1.3;
}


/* =========================================================
   FOOTER ABOUT TEXT
========================================================= */

.footer-about p {
    max-width: 420px;

    margin: 0;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   FOOTER LINKS
========================================================= */

.footer-links a {
    display: block;

    margin: 9px 0;

    color:
        rgba(255, 255, 255, 0.74);

    font-size: 14px;
    line-height: 1.5;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;

    transform: translateX(2px);
}


/* =========================================================
   LEGAL NOTICE
========================================================= */

.legal {
    margin-top: 34px;

    padding: 18px 20px;

    border-radius: 8px;

    background:
        rgba(255, 255, 255, 0.05);

    color:
        rgba(255, 255, 255, 0.68);

    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   COPYRIGHT
========================================================= */

.copy {
    margin-top: 25px;

    padding-top: 20px;

    display: flex;
    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid rgba(255, 255, 255, 0.10);

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   FOOTER MOBILE
========================================================= */

@media (max-width: 650px) {

    .site-footer {
        padding:
            42px
            20px
            24px;
    }

    .footgrid {
        grid-template-columns: 1fr;

        gap: 32px;
    }

    .footer-about h3 {
        font-size: 20px;
    }

    .footer-links h4 {
        font-size: 15px;
    }

    .footer-about p,
    .footer-links a {
        font-size: 14px;
    }

    .legal {
        margin-top: 28px;

        padding: 16px;

        font-size: 12px;
    }

    .copy {
        flex-direction: column;

        gap: 7px;

        font-size: 12px;
    }

}


/* =========================================================
   TABLET / MOBILE HEADER + HOMEPAGE
========================================================= */

/* =========================================================
   DESKTOP / LAPTOP HEADER RESPONSIVENESS
========================================================= */

@media (max-width: 1250px) {

    .nav {
        gap: 18px;
    }

    .brand {
        flex-basis: 300px;
    }

    .logo {
        width: 60px;
        height: 60px;

        flex-basis: 60px;

        font-size: 27px;
    }

    .brand strong {
        font-size: 24px;
    }

    .brand small {
        font-size: 10px;
        letter-spacing: 0.32em;
    }

    .main-navigation {
        gap: 18px;
        font-size: 15px;
    }

    .login {
        padding: 11px 17px;
        font-size: 12px;
    }

}


@media (max-width: 1120px) {

    .nav {
        width: calc(100% - 28px);
        gap: 14px;
    }

    .brand {
        flex-basis: 270px;
    }

    .logo {
        width: 56px;
        height: 56px;

        flex-basis: 56px;

        border-width: 3px;

        font-size: 25px;
    }

    .brand strong {
        font-size: 22px;
        letter-spacing: -1.2px;
    }

    .brand em {
        margin: 6px 0 4px;
    }

    .brand small {
        font-size: 9px;
        letter-spacing: 0.28em;
    }

    .main-navigation {
        gap: 13px;
        font-size: 14px;
    }

    .login {
        padding: 10px 15px;
        font-size: 12px;
    }

}


@media (max-width: 1000px) {

    .nav {
        min-height: 88px;
        justify-content: space-between;
    }

    .brand {
        min-width: 0;
    }

    .main-navigation {
        display: none;
    }

    .desktop-login {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }


    /* HERO */

    .heroin {
        grid-template-columns: 1fr;
    }

    .copybox {
        padding:
            60px
            40px;
        transform: none;
    }

    .visual {
        padding:
            0
            20px
            20px;
    }

    .hero-image {
        width: 100%;
        height: 400px;
        min-height: 400px;
        object-fit: cover;
        object-position: center;
        border-radius: 20px;
    }


    /* FEATURE BAR */

    .featurebar {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .featurebar > div:nth-child(2)::after {
        display: none;
    }


    /* HOW IT WORKS */

    .howin {
        grid-template-columns: 1fr;
        gap: 45px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .nav {
        width: calc(100% - 28px);
        min-height: 78px;
        gap: 10px;
    }

    .brand {
        gap: 9px;
    }

    .logo {
        width: 50px;
        height: 50px;
        flex: 0 0 50px;
        border-width: 3px;
        font-size: 23px;
    }

    .brand strong {
        font-size: 20px;
        letter-spacing: -1px;
    }

    .brand em {
        margin: 6px 0 4px;
    }

    .brand small {
        font-size: 8px;
        letter-spacing: 0.28em;
    }

    .mobile-menu-button {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
    }

    .mobile-navigation-inner {
        width: calc(100% - 28px);
    }


    /* HERO */

    .copybox {
        padding: 45px 24px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .copybox > p {
        font-size: 15px;
    }

    .buttons {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .visual {
        padding: 0 14px 14px;
    }

    .hero-image {
        height: 320px;
        min-height: 320px;
        border-radius: 16px;
    }


    /* FEATURE BAR */

    .featurebar {
        grid-template-columns: 1fr;
        transform: translateY(-12px);
    }

    .featurebar > div:not(:last-child)::after {
        top: auto;
        right: 10%;
        bottom: 0;
        width: 80%;
        height: 1px;
    }


    /* HOMEPAGE INTRO / HOW / CTA */

    .intro {
        padding: 50px 20px 65px;
    }

    .intro h2,
    .how h2,
    .cta h2 {
        font-size: 31px;
    }

    .how {
        padding: 60px 20px;
    }

    .cta {
        padding: 60px 20px;
    }

    .cta > div {
        padding: 40px 22px;
    }


    /* FOOTER */

    .footgrid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .copy {
        flex-direction: column;
        gap: 8px;
    }

}


/* =========================================================
   WHY USE A VPN PAGE
   COMPACT LAYOUT + IMPROVED READABILITY
========================================================= */

.vpn-page {
    background: #ffffff;
}

.vpn-container {
    width: calc(100% - 40px);
    max-width: 1050px;
    margin: 0 auto;
}


/* =========================================================
   INTRO
========================================================= */

.vpn-intro {
    padding: 34px 20px 18px;
}

.vpn-intro-inner {
    max-width: 740px;
    text-align: center;
}

.vpn-kicker {
    margin-bottom: 7px;

    color: #2476b7;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.17em;
}

.vpn-intro h1 {
    margin: 0;

    color: #0b2238;

    font-size: clamp(32px, 3.5vw, 42px);
    line-height: 1.08;
    font-weight: 700;

    letter-spacing: -1.2px;
}

.vpn-title-line {
    width: 60px;
    height: 2px;

    margin: 13px auto 16px;

    background: #2f7fc1;

    border-radius: 10px;
}

.vpn-intro p {
    max-width: 700px;

    margin: 0 auto 9px;

    color: #62717f;

    font-size: 15px;
    line-height: 1.65;
}


/* =========================================================
   MAIN BENEFITS
========================================================= */

.vpn-benefits {
    padding: 16px 20px 38px;
}

.vpn-benefit-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;
}

.vpn-benefit-card {
    text-align: center;
}

.vpn-icon-circle {
    width: 62px;
    height: 62px;

    margin: 0 auto 12px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #f2f7fc,
            #e8f1fa
        );

    color: #2068ba;
}

.vpn-icon-circle svg {
    width: 35px;
    height: 35px;
}

.vpn-benefit-card h3 {
    margin: 0 0 7px;

    color: #0b2238;

    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
}

.vpn-benefit-card p {
    margin: 0;

    color: #657583;

    font-size: 13px;
    line-height: 1.55;
}


/* =========================================================
   HOW A VPN WORKS
========================================================= */

.vpn-how {
    padding: 0 20px 38px;
}

.vpn-how-box {
    max-width: 840px;

    margin: 0 auto;

    padding: 26px 32px;

    display: grid;

    grid-template-columns:
        95px
        1fr;

    align-items: center;

    gap: 28px;

    border: 1px solid #e3edf8;
    border-radius: 15px;

    background:
        linear-gradient(
            120deg,
            #f4f8fe,
            #eef5fd
        );
}

.vpn-how-icon {
    color: #176bc2;
    text-align: center;
}

.vpn-how-icon svg {
    width: 70px;
    height: auto;
}

.vpn-how-copy h2 {
    margin: 0 0 8px;

    color: #0b2238;

    font-size: 20px;
    line-height: 1.25;
    font-weight: 700;
}

.vpn-how-copy p {
    margin: 0 0 7px;

    color: #556777;

    font-size: 14px;
    line-height: 1.55;
}

.vpn-how-highlight {
    margin-bottom: 0 !important;
}

.vpn-how-highlight strong {
    color: #176bc2;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.vpn-section-heading {
    max-width: 680px;

    margin: 0 auto 20px;

    text-align: center;
}

.vpn-section-heading h2 {
    margin: 0;

    color: #0b2238;

    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: -0.3px;
}

.vpn-section-heading p {
    margin: 9px auto 0;

    color: #687987;

    font-size: 14px;
    line-height: 1.55;
}


/* =========================================================
   PLACES / CONNECTION TYPES
========================================================= */

.vpn-places {
    padding: 38px 20px;

    background:
        linear-gradient(
            180deg,
            #f9fbfd,
            #f6f9fc
        );
}

.vpn-place-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;
}

.vpn-place-card {
    padding: 18px 14px;

    border: 1px solid #e0e8ef;
    border-radius: 12px;

    background: #ffffff;

    text-align: center;

    box-shadow:
        0 4px 14px rgba(18, 52, 79, 0.03);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.vpn-place-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 22px rgba(18, 52, 79, 0.07);
}

.vpn-place-icon {
    height: 42px;

    margin-bottom: 8px;

    color: #176bc2;
}

.vpn-place-icon svg {
    width: 38px;
    height: 38px;
}

.vpn-place-card h3 {
    margin: 0 0 5px;

    color: #0b2238;

    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
}

.vpn-place-card p {
    margin: 0;

    color: #687987;

    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   WHAT A VPN CAN / CAN'T DO
========================================================= */

.vpn-honest {
    padding: 38px 20px;
}

.vpn-honest-grid {
    max-width: 820px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 16px;
}

.vpn-honest-card {
    padding: 23px;

    border: 1px solid #e1e8ed;
    border-radius: 13px;

    background: #ffffff;
}

.vpn-honest-card h3 {
    margin: 0 0 12px;

    color: #102d49;

    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
}

.vpn-honest-card ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.vpn-honest-card li {
    position: relative;

    margin-bottom: 9px;

    padding-left: 26px;

    color: #62717e;

    font-size: 13px;
    line-height: 1.5;
}

.vpn-honest-card li:last-child {
    margin-bottom: 0;
}

.vpn-can li::before,
.vpn-cannot li::before {
    position: absolute;

    left: 0;
    top: 1px;

    width: 18px;
    height: 18px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    font-size: 10px;
    font-weight: 700;
}

.vpn-can li::before {
    content: "?";

    background: #eaf4fb;
    color: #176bc2;
}

.vpn-cannot li::before {
    content: "–";

    background: #f1f3f5;
    color: #78848e;
}


/* =========================================================
   FINAL CTA
========================================================= */

.vpn-final {
    padding: 0 20px 42px;
}

.vpn-final-inner {
    max-width: 780px;

    margin: 0 auto;

    padding: 30px 38px;

    border: 1px solid #e0e9ef;
    border-radius: 15px;

    text-align: center;

    background:
        linear-gradient(
            120deg,
            #f6f9fc,
            #eef5fa
        );
}

.vpn-final-inner h2 {
    margin: 0;

    color: #0b2238;

    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
}

.vpn-final-inner p {
    max-width: 630px;

    margin: 10px auto 0;

    color: #61717e;

    font-size: 14px;
    line-height: 1.6;
}

.vpn-final-button {
    min-height: 44px;

    margin-top: 18px;

    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            #176bc2,
            #2f82cf
        );

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.vpn-final-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(23, 107, 194, 0.18);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .vpn-benefit-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 28px 22px;
    }

    .vpn-place-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .vpn-how-box {
        grid-template-columns: 1fr;

        gap: 12px;

        text-align: center;
    }

    .vpn-how-icon svg {
        width: 60px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .vpn-container {
        width: calc(100% - 28px);
    }


    /* INTRO */

    .vpn-intro {
        padding: 30px 14px 18px;
    }

    .vpn-intro h1 {
        font-size: 32px;
    }

    .vpn-intro p {
        font-size: 14px;
        line-height: 1.6;
    }


    /* BENEFITS */

    .vpn-benefits {
        padding: 12px 14px 30px;
    }

    .vpn-benefit-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .vpn-benefit-card {
        max-width: 330px;

        margin: 0 auto;
    }

    .vpn-benefit-card p {
        font-size: 13px;
    }


    /* HOW A VPN WORKS */

    .vpn-how {
        padding: 0 14px 30px;
    }

    .vpn-how-box {
        padding: 22px;
    }

    .vpn-how-copy p {
        font-size: 13px;
    }


    /* PLACES */

    .vpn-places {
        padding: 30px 14px;
    }

    .vpn-place-grid {
        grid-template-columns: 1fr;

        gap: 11px;
    }

    .vpn-place-card {
        padding: 17px 14px;
    }

    .vpn-place-card p {
        font-size: 12px;
    }


    /* CAN / CAN'T */

    .vpn-honest {
        padding: 30px 14px;
    }

    .vpn-honest-grid {
        grid-template-columns: 1fr;
    }

    .vpn-honest-card {
        padding: 20px;
    }

    .vpn-honest-card li {
        font-size: 13px;
    }


    /* FINAL CTA */

    .vpn-final {
        padding: 0 14px 32px;
    }

    .vpn-final-inner {
        padding: 25px 20px;
    }

    .vpn-final-inner h2 {
        font-size: 22px;
    }

    .vpn-final-inner p {
        font-size: 13px;
    }

}