* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0A051C;
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
    color: white;
}

.site {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    background: #0A051C;
    padding-top: 80px;
}

.grad-text {
    background: linear-gradient(90deg, #FFFFFF 0%, #8900FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.btn-gradient {
    background: linear-gradient(90deg, #7B07D9 0%, #AA47FC 100%);
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    color: white;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-gradient:hover::before {
    width: 300px;
    height: 300px;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(122, 6, 217, 0.4);
    opacity: 1;
}

.blur-circle {
    position: absolute;
    background: #9617FF;
    filter: blur(199px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.blur-1 {
    width: 418px;
    height: 418px;
    left: 1179px;
    top: 2975px;
    filter: blur(199.5px);
}

.blur-2 {
    width: 443px;
    height: 443px;
    left: -289px;
    top: 2846px;
    filter: blur(211px);
}

.blur-3 {
    width: 656px;
    height: 656px;
    left: 1043px;
    top: 4500px;
    filter: blur(270px);
}

.blur-4 {
    width: 588px;
    height: 588px;
    left: -266px;
    top: 4700px;
    filter: blur(240px);
}

.world-map-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1282px;
    height: 719px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

.world-map-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.futuristic-bg {
    position: absolute;
    width: 900px;
    height: 900px;
    left: 320px;
    background: url('photos/futuristic_black_obelisk.png') no-repeat center;
    background-size: cover;
    opacity: 1;
    pointer-events: none;
    z-index: 5;
}

.ellipse-extra {
    position: absolute;
    width: 115.9739236497745px;
    height: 1235.7733237934995px;
    margin-left: 320px;
    margin-top: -170px;
    background: #9E2FFF;
    filter: blur(110px);
    transform: matrix(-0.74, 0.67, 0.67, 0.74, 0, 0);
    pointer-events: none;
    z-index: 0;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1440px;
    background: rgba(106, 13, 173, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    height: 70px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-image {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Benzin-Medium', 'Lato', sans-serif;
    font-weight: 700;
    font-size: 16.8px;
    line-height: 23px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.logo-vpn {
    font-family: 'Benzin-Bold', 'Lato', sans-serif;
    font-weight: 700;
    color: #A43FF7;
    font-size: 16.8px;
    text-transform: uppercase;
}

.btn-chrome-small {
    background: linear-gradient(90deg, #7B07D9 0%, #AA47FC 100%);
    border-radius: 20px;
    padding: 8px 14px;
    font-size: 11.2px;
    line-height: 14px;
    color: white;
    font-weight: 400;
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-chrome-small::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-chrome-small:hover::before {
    width: 200px;
    height: 200px;
}

.btn-chrome-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(122, 6, 217, 0.4);
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 6px 12px;
    background: rgba(163, 62, 246, 0.15);
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(163, 62, 246, 0.3);
    backdrop-filter: blur(10px);
}

.lang-toggle:hover {
    background: rgba(163, 62, 246, 0.25);
    border-color: rgba(163, 62, 246, 0.5);
    transform: scale(1.05);
}

.lang-toggle svg {
    width: 18px;
    height: 18px;
    color: #A33EF6;
}

.lang-toggle .current-lang {
    font-size: 12px;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
}

.language-menu {
    position: fixed;
    top: 70px;
    right: 80px;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.language-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-menu-inner {
    background: rgba(10, 5, 28, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid rgba(163, 62, 246, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    width: 200px;
    max-height: 320px;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.language-menu-inner::-webkit-scrollbar {
    width: 4px;
}

.language-menu-inner::-webkit-scrollbar-track {
    background: rgba(163, 62, 246, 0.1);
    border-radius: 4px;
}

.language-menu-inner::-webkit-scrollbar-thumb {
    background: rgba(163, 62, 246, 0.5);
    border-radius: 4px;
}

.language-list {
    display: flex;
    flex-direction: column;
}

.language-item {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-family: 'Lato', sans-serif;
    border-bottom: 1px solid rgba(163, 62, 246, 0.08);
}

.language-item:last-child {
    border-bottom: none;
}

.language-item:hover {
    background: rgba(163, 62, 246, 0.2);
}

.language-item.active {
    background: rgba(163, 62, 246, 0.25);
    border-left: 2px solid #A33EF6;
}

.language-item .flag {
    font-size: 18px;
    min-width: 28px;
    filter: none;
}

.language-item .lang-name {
    font-size: 13px;
    color: white;
    font-weight: 500;
    letter-spacing: 0.3px;
    flex: 1;
}

@supports not (backdrop-filter: blur(12px)) {
    .language-menu-inner {
        background: rgba(10, 5, 28, 0.95);
    }
}

.hero {
    padding: 80px 80px 0 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
    margin-top: 100px;
}

.hero-content {
    max-width: 620px;
}

.hero-title {
    font-weight: 700;
    font-size: 44.8px;
    line-height: 53.6px;
    background: linear-gradient(90deg, #FFFFFF 0%, #8900FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8.8px;
}

.hero-desc {
    font-weight: 500;
    font-size: 19.2px;
    line-height: 23.2px;
    color: white;
    max-width: 393px;
    margin-bottom: 28.8px;
}

.btn-hero {
    width: 160px;
    height: 36px;
    font-size: 14px;
    line-height: 18px;
}

.speed-badge {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(180, 88, 255, 0.1) 100%);
    border-radius: 53.6px;
    padding: 17.6px 38.4px;
    display: inline-flex;
    align-items: center;
    margin-left: 525px;
    margin-top: 150px;
}

.speed-number {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 51.2px;
    line-height: 70px;
    color: white;
}

.speed-unit {
    font-size: 32px;
    font-weight: 400;
    color: white;
}

.benefits {
    padding: 96px 80px 64px;
    text-align: center;
    position: relative;
    z-index: 2;
    overflow: visible;
    margin-top: 300px;
}

.benefits-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    top: 260px;
    left: 60px;
    z-index: 0;
    overflow: visible;
}

.circle-bg {
    position: absolute;
    width: 1250px;
    max-width: 1250px;
    height: auto;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-8deg);
    opacity: 0.7;
    z-index: 1;
    pointer-events: none;
}

.benefits-title,
.cards {
    position: relative;
    z-index: 10;
}

.benefits-title {
    font-weight: 700;
    font-size: 102px;
    line-height: 123px;
    margin-bottom: 38px;
}

.cards {
    display: flex;
    gap: 19px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.card-icon-svg {
    transition: all 0.3s ease;
    cursor: default;
}

.card-icon-svg:hover {
    transform: translateY(-4px);
    filter: drop-shadow(0 0 20px rgba(163, 62, 246, 0.6));
}

.feature-badges-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: -55px;
    margin-top: 170px;
    position: relative;
    z-index: 10;
}

.badge-vertical {
    background: linear-gradient(177.73deg, rgba(255, 255, 255, 0.1) 1.91%, rgba(163, 62, 246, 0.1) 98.09%);
    border-radius: 80px;
    padding: 12px 32px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    cursor: default;
}

.badge-vertical:hover {
    transform: translateY(-4px);
    background: linear-gradient(177.73deg, rgba(255, 255, 255, 0.2) 1.91%, rgba(163, 62, 246, 0.2) 98.09%);
    box-shadow: 0 0 25px rgba(163, 62, 246, 0.4);
}

.badge-icon-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 67px;
    height: 67px;
    border-radius: 50%;
    background: transparent;
    flex-shrink: 0;
}

.badge-icon-custom svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.badge-vertical span {
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.globe-wrapper {
    position: relative;
    width: 100%;
    margin-top: 120px;
    margin-bottom: 80px;
    z-index: 2;
}

.ellipse-under-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.ellipse-under {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.globe-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 50;
}

.globe-main {
    width: 100%;
    max-width: 1040px;
    height: auto;
    position: relative;
    z-index: 50;
}

.rectangle-over-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
}

.rectangle-over {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 0;
    left: 0;
    z-index: 100;
}

.globe-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 150;
    pointer-events: none;
}

.globe-logo img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.globe-logo .logo-text {
    font-family: 'Benzin-Medium', 'Lato', sans-serif;
    font-weight: 400;
    font-size: 48px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.globe-logo .logo-vpn {
    font-family: 'Benzin-Bold', 'Lato', sans-serif;
    color: #A43FF7;
    font-size: 48px;
    text-transform: uppercase;
}

.features-minimal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: -140px;
    margin-bottom: 120px;
    position: relative;
    z-index: 10;
}

.feature-minimal-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-minimal-item span {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
    color: white;
    letter-spacing: 0.4px;
}

.feature-separator {
    display: inline-flex;
    align-items: center;
}

.feature-separator svg {
    width: 11px;
    height: 16px;
}

.get-started {
    padding: 32px 80px 64px;
    position: relative;
    z-index: 2;
}

.step-header {
    font-size: 19.2px;
    color: #A9A9A9;
    text-transform: uppercase;
    letter-spacing: -0.04em;
}

.step-title {
    font-size: 51px;
    font-weight: 800;
    line-height: 1.2;
    margin: 12.8px 0 33.6px;
}

.step-cards-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 16px;
    width: 100%;
    padding: 10px 0;
    overflow-x: visible;
    margin-bottom: -80px;
}

.step-card-with-icon {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    height: 70px;
    border-radius: 93.76px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 0 20px;
    text-align: left;
    transition: all 0.3s ease;
    cursor: default;
    gap: 12px;
}

.step-card-with-icon:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 25px rgba(163, 62, 246, 0.4);
}

.step-card-with-icon .step-icon-svg {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-card-with-icon span {
    font-weight: 700;
    font-size: 18px;
    color: #FEFEFE;
    text-align: left;
    line-height: 1.3;
    flex: 1;
}

.step-divider-new {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 56.26px;
    height: 56.26px;
    background: transparent;
    border-radius: 50%;
    padding: 0;
    border: none;
    transition: all 0.3s ease;
    cursor: default;
}

.step-divider-new svg {
    width: 56.26px;
    height: 56.26px;
    display: block;
}

.step-divider-new:hover {
    transform: scale(1.05);
}

.macbook-section {
    margin: 0 80px 48px;
    position: relative;
    z-index: 2;
}

.macbook-container {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding: 0 158px;
}

.macbook-image {
    width: 850px;
    position: relative;
    object-fit: contain;
}

.worldwide-title {
    margin-top: 80px;
    margin-bottom: 20px;
    text-align: center;
}

.worldwide-title h2 {
    font-size: 102px;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(90deg, #FFFFFF, #8900FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.url-bar-container {
    display: flex;
    justify-content: center;
    margin-bottom: -220px;
}

.url-bar {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 800px;
    padding: 8px 20px;
    width: 100%;
    max-width: 977px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.url-input {
    background: #0A051C;
    border-radius: 19px;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 8px 16px;
    gap: 12px;
}

.url-domain {
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}

.url-subdomain {
    color: #86888A;
    font-size: 14px;
    margin-left: -12px;
    margin-top: -2px;
}

#star {
    margin-left: auto;
}

.url-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

#logolink {
    height: auto;
    width: 35px;
    margin-right: 10px;
}

#threedots {
    margin-top: 7px;
}

.reviews {
    padding: 64px 0 32px;
    text-align: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.step-card-with-icon {
    cursor: pointer;
}

.reviews-image-container {
    margin-bottom: 32px;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.reviews-bg-image-full {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 150px;
}

.review-header {
    font-size: 76.8px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 38px;
    position: relative;
    z-index: 2;
}

.italic-text {
    font-style: italic;
    color: #8B05FF;
    background: none;
    padding: 0;
}

.stars-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.star-block {
    width: 92px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.star-block svg {
    width: 100%;
    height: auto;
}

.review-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 24px;
    max-width: 666px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.review-text {
    font-weight: 700;
    font-size: 25.6px;
    line-height: 1.3;
    margin-bottom: 16px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-top: 16px;
}

.review-avatar-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.review-name {
    font-weight: 700;
    font-size: 25.6px;
}

.review-stars {
    display: flex;
    gap: 4px;
}

.review-stars svg {
    width: 16px;
    height: 15px;
}

.footer {
    background: transparent;
    padding: 48px 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 64px;
    position: relative;
    z-index: 2;
    margin-bottom: 100px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    padding-bottom: 32px;
}

.footer-col:first-child {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 30px;
}

.footer-logo-image {
    width: 49px;
    height: 49px;
    object-fit: contain;
}

.footer-brand {
    font-size: 32px;
    font-weight: 400;
    font-family: 'Benzin-Medium', sans-serif;
    color: white;
    text-transform: uppercase;
}

.footer-vpn {
    font-family: 'Benzin-Bold', sans-serif;
    color: #A43FF7;
    font-size: 32px;
    text-transform: uppercase;
}

.footer-sub {
    font-weight: 600;
    font-size: 22.4px;
    line-height: 27px;
    margin-bottom: 30px;
    color: white;
}

.btn-footer {
    border-radius: 30px;
    padding: 12px 24px;
    font-size: 28.8px;
    font-weight: 400;
    display: inline-block;
}

.footer-links {
    display: flex;
    gap: 260px;
    flex-wrap: wrap;
    margin-right: 80px;
}

.link-col {
    margin-left: 0;
}

.link-col:first-child {
    margin-left: 0;
}

.link-col h4 {
    font-size: 28.8px;
    font-weight: 600;
    margin-bottom: 29px;
    color: white;
}

.link-col p {
    font-size: 19.2px;
    font-weight: 400;
    line-height: 32px;
    color: white;
    margin-bottom: 14px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.link-col p:hover {
    opacity: 0.8;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 24px;
    flex-wrap: wrap;
    gap: 16px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 19.2px;
}

.social-icons {
    display: flex;
    gap: 27px;
    margin-right: 400px;
}

.social-icon {
    width: 44px;
    height: 44px;
    cursor: pointer;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon svg {
    width: 100%;
    height: auto;
}

.social-icon:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        margin: 0;
    }
    
    .site {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        padding-top: 70px;
    }

    .header {
        padding: 0 16px;
        height: 70px;
        z-index: 200;
    }
    
    .header-right {
        gap: 12px;
    }
    
    .lang-toggle {
        padding: 4px 10px;
    }
    
    .lang-toggle .current-lang {
        font-size: 10px;
    }
    
    .lang-toggle svg {
        width: 14px;
        height: 14px;
    }
    
    .language-menu {
        right: 16px;
        top: 65px;
    }
    
    .language-menu-inner {
        width: 180px;
        max-height: 280px;
    }

    .hero {
        padding: 20px 16px 0;
        margin-top: 0;
        flex-direction: column;
        text-align: center;
        position: relative;
        min-height: 780px;
        z-index: 10;
        overflow: visible;
    }

    .hero-content {
        max-width: 100%;
        z-index: 20;
        position: relative;
        margin-bottom: 0;
        padding: 0;
    }

    .hero-title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 12px;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-desc {
        font-size: 12px;
        line-height: 14px;
        max-width: 246px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
    }

    .btn-hero {
        width: auto;
        min-width: 160px;
        height: 36px;
        font-size: 12px;
        white-space: nowrap;
        padding: 0 20px;
        margin-bottom: 0;
        position: relative;
        z-index: 30;
    }

    .futuristic-bg {
        position: absolute !important;
        top: 120px !important;
        left: -70% !important;     
        transform: translateX(0) !important;
        right: auto !important;
        width: 180% !important;   
        max-width: 900px !important;
        height: 800px !important;
        background-image: url('photos/futuristic_black_obelisk.png') !important;
        background-position: center !important;
        background-size: contain !important;
        background-repeat: no-repeat !important;
        opacity: 1 !important;
        z-index: 5 !important;
        pointer-events: none;
    }

    .hero-right {
        position: absolute;
        left: 16px !important;
        right: auto !important;
        top: 480px !important;
        z-index: 25;
    }

    .speed-badge {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(180, 88, 255, 0.1) 100%);
        border-radius: 40px;
        padding: 18px 40px;
        margin: 0;
        display: inline-flex;
    }

    .speed-number {
        font-size: 32px;
        line-height: 42px;
    }

    .speed-unit {
        font-size: 24px;
    }

    .benefits {
        padding: 180px 16px 60px;
        margin-top: 0;
        position: relative;
        z-index: 10;
        overflow: visible;
    }

    .benefits-title {
        font-size: 64px;
        line-height: 77px;
        margin-bottom: 30px;
    }

    .cards {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        gap: 16px !important;
        padding: 10px 16px !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
    }

    .card-icon-svg {
        flex: 0 0 auto !important;
        width: 85% !important;
        max-width: 280px !important;
        scroll-snap-align: start;
    }

    .feature-badges-vertical {
        margin-top: 60px;
        margin-bottom: 20px;
        gap: 12px;
        padding: 0 16px;
        flex-direction: column;
        align-items: center;
    }

    .badge-vertical {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        padding: 10px 20px !important;
        width: auto !important;
        max-width: 100% !important;
        justify-content: center !important;
        white-space: nowrap;
    }

    .badge-vertical span {
        font-size: 14px !important;
        white-space: nowrap;
    }

    .badge-icon-custom {
        width: 41px !important;
        height: 41px !important;
        flex-shrink: 0;
    }

    .features-minimal {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 12px 20px !important;
        margin: 20px 16px 40px !important;
        max-width: 100%;
    }

    .feature-minimal-item {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        width: auto !important;
        flex: 0 0 auto !important;
    }

    .feature-minimal-item span {
        font-size: 10px !important;
        white-space: nowrap;
    }

    .feature-separator {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }

    .feature-separator svg {
        width: 8px;
        height: 12px;
    }

    .get-started {
        padding: 32px 16px;
        position: relative;
        z-index: 10;
        overflow: visible;
    }

    .step-header {
        font-size: 14px;
    }

    .step-title {
        font-size: 36px;
        line-height: 43px;
        margin: 8px 0 24px;
    }

    .circle-bg {
        position: absolute;
        width: 1250px;
        max-width: 1250px;
        height: auto;
        top: 75%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-8deg);
        opacity: 0.7;
        z-index: 1;
        pointer-events: none;
    }

    .step-cards-row {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        margin-bottom: 0;
    }

    .step-card-with-icon {
        width: 100%;
        max-width: 320px;
        min-height: 85px !important;
        height: auto !important;
        padding: 16px 20px !important;
        margin: 0 auto;
        border-radius: 50px;
    }

    .step-card-with-icon .step-icon-svg {
        width: 44px !important;
        height: 44px !important;
    }

    .step-card-with-icon .step-icon-svg svg,
    .step-card-with-icon .step-icon-svg img {
        width: 44px;
        height: 44px;
    }

    .step-card-with-icon span {
        font-size: 15px !important;
        line-height: 1.4 !important;
    }

    .step-divider-new {
        display: flex !important;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        margin: 8px auto;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-radius: 50%;
        transform: rotate(90deg) !important;
    }

    .step-divider-new svg {
        width: 32px;
        height: 32px;
        transform: rotate(0deg);
    }

    .globe-wrapper {
        position: relative;
        width: 100%;
        margin-top: 80px;
        margin-bottom: 60px;
        z-index: 2;
        overflow: visible !important;
    }

    .ellipse-under-wrapper {
        position: absolute;
        top: 0 !important;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 1;
        overflow: visible !important;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    .ellipse-under {
        position: relative;
        width: 100% !important;
        height: auto;
        bottom: 0 !important;
        left: 0 !important;
        top: auto !important;
        z-index: 1;
        opacity: 0.8;
    }

    .blur-4, .blur-3 {
        display: none !important;
    }
    
    .blur-1, .blur-2 {
        display: block !important;
    }

    .globe-image-container {
        position: relative;
        z-index: 50;
        overflow: visible !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .globe-main {
        width: 100%;
        max-width: 100%;
        height: auto;
        position: relative;
        z-index: 50;
    }

    .rectangle-over-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 100;
        overflow: visible !important;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    .rectangle-over {
        position: relative;
        width: 100%;
        height: auto;
        bottom: 0 !important;
        left: 0 !important;
        z-index: 100;
    }

    .macbook-section {
        margin: 0 16px 48px;
        position: relative;
        z-index: 10;
        overflow: visible;
    }

    .macbook-container {
        padding: 0;
        margin: 0 auto !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .macbook-image {
        width: 90% !important;
        max-width: 280px !important;
        height: auto !important;
        left: 0 !important;
        margin: 0 auto !important;
        display: block;
        position: relative;
    }

    .worldwide-title h2 {
        font-size: 32px;
        line-height: 38px;
        margin-top: 40px;
    }

    .url-bar-container {
        margin-bottom: 0;
        padding: 0;
        overflow: visible;
        position: relative;
        width: 100%;
    }

    .url-bar {
        padding: 10px 20px;
        width: 95% !important;
        max-width: none !important;
        margin-left: -5% !important;
        border-radius: 800px;
        gap: 8px;
    }

    .url-input {
        padding: 10px 16px;
        gap: 8px;
        flex: 1;
    }

    .url-domain,
    .url-subdomain {
        font-size: 12px;
    }

    .reviews {
        padding: 64px 16px 32px;
        position: relative;
        z-index: 10;
    }

    .review-header {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 24px;
    }

    .stars-row {
        gap: 8px;
        margin-bottom: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .star-block {
        width: 46px;
        height: 44px;
    }

    .review-card {
        max-width: 100%;
        padding: 20px;
        margin: 0 16px;
    }

    .review-text {
        font-size: 14px;
        line-height: 18px;
    }

    .reviews-bg-image-full {
        width: 200% !important;
        max-width: 200% !important;
        height: auto !important;
        margin-bottom: 80px !important;
    }

    .footer {
        padding: 32px 16px 0;
        margin-bottom: 0;
        margin-top: 64px;
        position: relative;
        z-index: 10;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .footer-col:first-child {
        max-width: 100%;
        order: 2;
        text-align: left;
        margin-bottom: 32px;
    }

    .footer-logo {
        justify-content: flex-start;
    }

    .footer-brand,
    .footer-vpn {
        font-size: 20px;
    }

    .footer-logo-image {
        width: 32px;
        height: 32px;
    }

    .footer-sub {
        font-size: 13px;
        line-height: 18px;
        margin-bottom: 20px;
        max-width: 280px;
        margin-left: 0;
        margin-right: auto;
        white-space: normal;
        word-wrap: break-word;
        text-align: left;
    }

    .btn-footer {
        padding: 8px 20px;
        font-size: 14px;
        display: inline-block;
    }

    .copyright {
        order: 1;
        margin-bottom: 32px;
        margin-top: 0;
        display: flex;
        flex-direction: row !important;
        align-items: center;
        justify-content: space-between !important;
        text-align: center;
        font-size: 9px;
        gap: 16px;
        padding: 0 0 20px;
        flex-wrap: wrap;
    }

    .copyright > div:first-child {
        white-space: nowrap;
    }

    .social-icons {
        display: flex;
        gap: 20px;
        margin-right: 0;
        justify-content: center;
    }

    .social-icon {
        width: 28px;
        height: 28px;
    }

    .footer-links {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        gap: 80px !important;
        width: 100% !important;
        margin-right: 0 !important;
        order: 3 !important;
        margin-top: 0;
        margin-bottom: 32px;
    }

    .link-col {
        flex: 0 0 auto;
        text-align: left !important;
        margin-left: 0 !important;
    }

    .link-col:first-child {
        text-align: left !important;
    }

    .link-col:last-child {
        text-align: left !important;
        margin-left: 40px !important;
    }

    .link-col h4 {
        font-size: 16px;
        margin-bottom: 12px;
        text-align: left;
    }

    .link-col p {
        font-size: 12px;
        line-height: 20px;
        margin-bottom: 6px;
        text-align: left;
    }

    .footer-divider {
        margin-top: 20px;
        order: 4;
    }

    .globe-logo {
        transform: translate(-50%, -50%) scale(0.65);
    }

    .globe-logo .logo-text,
    .globe-logo .logo-vpn {
        font-size: 20px;
    }

    .globe-logo img {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .hero-right {
        left: 12px !important;
        top: 600px !important;
    }
    
    .hero {
        min-height: 720px;
    }
    
    .benefits {
        padding-top: 200px !important;
    }
    
    .feature-badges-vertical {
        margin-top: 80px !important;
    }
    
    .step-card-with-icon {
        max-width: 290px;
        min-height: 80px !important;
        padding: 12px 16px !important;
    }
    
    .step-card-with-icon .step-icon-svg {
        width: 38px !important;
        height: 38px !important;
    }
    
    .step-card-with-icon span {
        font-size: 13px !important;
    }
    
    .step-divider-new {
        width: 36px;
        height: 36px;
        margin: 6px auto;
    }
    
    .step-divider-new svg {
        width: 28px;
        height: 28px;
    }
    
    .macbook-image {
        width: 130% !important;
        left: -15% !important;
    }
    
    .features-minimal {
        gap: 10px 16px !important;
    }
    
    .feature-minimal-item span {
        font-size: 9px !important;
    }
    
    .footer-links {
        gap: 50px !important;
    }
    
    .link-col:last-child {
        margin-left: 20px !important;
    }
    
    .copyright {
        flex-direction: column !important;
        gap: 12px;
    }
    
    .copyright > div:first-child {
        white-space: normal;
        text-align: center;
    }
    
    .language-menu {
        right: 12px;
    }
    
    .language-menu-inner {
        width: 160px;
        max-height: 260px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .step-divider-new {
        display: flex;
        transform: rotate(90deg);
    }
    
    .macbook-image {
        width: 100%;
    }
}