* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #011D33;
    --bg-light: #f5f7fa;
    --text-white: #ffffff;
    --text-dark: #2A3F52;
    --text-green: #00FFC3;
    --gradient-primary-start: #01DBFF;
    --gradient-primary-end: #00FFC3;
    --gradient-secondary-start: #89919C;
    --gradient-secondary-end: #707C88;
    --gradient-outline-start: #2A3F52;
    --gradient-outline-end: #183145;
    --border-color: #495A69;
    --input-bg: #2B4053;
    --input-border: #00FFC3;
    --shadow-light: rgba(255, 255, 255, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.3);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    overflow-x: hidden;
}

.text-green{
    color: var(--text-green);
}

/* Enhanced Neumorphic styles */
.neomorph-raised {
    background: linear-gradient(145deg, #013554, #011a2b);
    box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.5),
                -12px -12px 24px rgba(255, 255, 255, 0.08);
    border-radius: 35px;
}

.neomorph-pressed {
    background: linear-gradient(145deg, #011a2b, #013554);
    box-shadow: inset 12px 12px 24px rgba(0, 0, 0, 0.5),
                inset -12px -12px 24px rgba(255, 255, 255, 0.08);
    border-radius: 35px;
}

.neomorph-light-raised {
    background: linear-gradient(145deg, #ffffff, #e0e5ea);
    box-shadow: 12px 12px 24px rgba(163, 177, 198, 0.4),
                -12px -12px 24px rgba(255, 255, 255, 0.9);
    border-radius: 35px;
}

.neomorph-flat {
    background: var(--bg-dark);
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.4),
                -8px -8px 16px rgba(255, 255, 255, 0.05);
    border-radius: 30px;
}

/* Header - Optimized */
header {
    background: var(--bg-dark);
    padding: 1.25rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

nav {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-decoration: none !important;
}

.logo-icon {
    width: 50px;
    height: 50px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.cls-1 {
    fill: var(--bg-dark);
}

.cls-2 {
    fill: url(#linear-gradient);
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--gradient-primary-start), var(--gradient-primary-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.logo-text p {
    font-size: 0.75rem;
    color: #89919C;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.75rem;
    align-items: center;
    flex-shrink: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
}

.nav-menu > li > a:hover {
    background: linear-gradient(90deg, var(--gradient-primary-start), var(--gradient-primary-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-dark);
    min-width: 280px;
    padding: 1.5rem;
    border-radius: 25px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    margin-top: 0.75rem;
    z-index: 1001;
}

.dropdown.active {
    display: block;
    animation: dropdownFade 0.3s ease-out;
}

.dropdown.dropdown-wide {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    min-width: 500px;
}

.dropdown.dropdown-wide.active {
    display: grid;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown li {
    list-style: none;
    margin-bottom: 0.75rem;
}

.dropdown a {
    color: var(--text-white);
    text-decoration: none;
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 15px;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.dropdown a:hover {
    background: rgba(0, 255, 195, 0.1);
    color: var(--gradient-primary-end);
}

.dropdown-section {
    margin-bottom: 1.5rem;
}

.dropdown-section:last-child {
    margin-bottom: 0;
}

.dropdown-section h4 {
    color: #89919C;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.lang-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-switcher a {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-white);
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
}

.lang-switcher a:hover,
.lang-switcher a.active {
    background: linear-gradient(90deg, var(--gradient-primary-start), var(--gradient-primary-end));
    border-color: transparent;
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(0, 255, 195, 0.3);
}

.btn-login {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
    white-space: nowrap;
}

.btn-login:hover {
    color: var(--gradient-primary-end);
}

.btn-primary {
    background: linear-gradient(90deg, var(--gradient-primary-start), var(--gradient-primary-end));
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 35px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(0, 255, 195, 0.4);
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 195, 0.5);
}

.btn-secondary {
    background: linear-gradient(90deg, var(--gradient-secondary-start), var(--gradient-secondary-end));
    color: var(--text-white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 35px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(137, 145, 156, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(137, 145, 156, 0.4);
}

.btn-outline {
    background: linear-gradient(90deg, var(--gradient-outline-start), var(--gradient-outline-end));
    color: var(--text-white);
    padding: 1rem 2rem;
    border: 2px solid var(--border-color);
    border-radius: 35px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-outline:hover {
    border-color: var(--gradient-primary-end);
    box-shadow: 0 6px 20px rgba(0, 255, 195, 0.3);
}

/* Hero Section */
.hero {
    background: var(--bg-dark);
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 3rem;
    max-width: 1100px;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--gradient-primary-start), var(--gradient-primary-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 255, 195, 0.2);
}

.hero p {
    font-size: 1.6rem;
    color: #89919C;
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero .btn-check-proxy {
    font-size: 1.5rem;
    padding: 1.75rem 3.5rem;
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    border-radius: 60px;
    border: none;
    box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.15),
                0 8px 30px rgba(0, 255, 195, 0.5);
    animation: pulse 2s ease-in-out infinite;
    transition: all 0.3s;
}


.hero .btn-check-proxy:hover {
    animation: none;
    transform: translateY(-4px);
    box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.25),
                0 12px 40px rgba(0, 255, 195, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.15),
                    0 8px 30px rgba(0, 255, 195, 0.5);
    }
    50% {
        box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.25),
                    0 8px 40px rgba(0, 255, 195, 0.7);
    }
}

.hero .logo-icon-large {
    width: 35px;
    height: 35px;
}

/* Proxy Results */
.proxy-results {
    margin-top: 4rem;
    padding: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    display: none;
}

.proxy-results.active {
    display: block;
    animation: fadeInScale 0.5s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.proxy-results h3 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.proxy-list {
    list-style: none;
}

.proxy-item {
    padding: 1.5rem 2rem;
    margin-bottom: 1.25rem;
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    font-size: 1.1rem;
    opacity: 0;
    animation: slideInItem 0.5s ease-out forwards;
}

.proxy-item:nth-child(1) { animation-delay: 0.1s; }
.proxy-item:nth-child(2) { animation-delay: 0.2s; }
.proxy-item:nth-child(3) { animation-delay: 0.3s; }
.proxy-item:nth-child(4) { animation-delay: 0.4s; }
.proxy-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInItem {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.proxy-item.safe {
    background: linear-gradient(145deg, #013554, #011a2b);
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.4),
                -8px -8px 16px rgba(255, 255, 255, 0.05);
}

.proxy-item:hover {
    transform: translateX(5px);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5),
                -10px -10px 20px rgba(255, 255, 255, 0.07);
}

.proxy-item .score {
    font-weight: 800;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1.05rem;
}

.proxy-item .score.green {
    background: linear-gradient(90deg, #00FFC3, #00DBAA);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(0, 255, 195, 0.4);
}

.proxy-item .score.yellow {
    background: linear-gradient(90deg, #FFD700, #FFA500);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.proxy-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

/* Sections */
section {
    padding: 6rem 2rem;
}

.section-dark {
    background: var(--bg-dark);
}

.section-light {
    background: var(--bg-light);
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #89919C;
    font-weight: 300;
}

/* Pain Points */
.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.pain-card {
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s;
}

.pain-card:hover {
    transform: translateY(-10px);
}

.pain-card i {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: #900;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pain-card h3 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.pain-card p {
    color: #666;
    line-height: 1.9;
    font-size: 1rem;
}

/* Advantages Section */
.advantages-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.advantage-item {
    padding: 3rem;
    transition: transform 0.3s;
}

.advantage-item:hover {
    transform: translateX(10px);
}

.advantage-item h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(90deg, var(--gradient-primary-start), var(--gradient-primary-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.advantage-item .label {
    color: #89919C;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.advantage-item p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.advantages-image {
    padding: 1.5rem;
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #013554, #011a2b);
    box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.5),
                -12px -12px 24px rgba(255, 255, 255, 0.08);
}

.advantages-image img {
    max-width: 100%;
    height: auto;
    opacity: 0.5;
    border-radius: 20px;
}

/* How It Works */
.how-it-works-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.how-card {
    padding: 3rem;
    text-align: center;
    transition: transform 0.3s;
}

.how-card:hover {
    transform: scale(1.05);
}

.how-card-image {
    width: 100%;
    height: 250px;
    border-radius: 30px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #ffffff, #e0e5ea);
    box-shadow: inset 8px 8px 16px rgba(163, 177, 198, 0.4),
                inset -8px -8px 16px rgba(255, 255, 255, 0.9);
}

.how-card-image i {
    font-size: 5rem;
    color: #89919C;
}

.how-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.how-card p {
    color: #666;
    line-height: 1.9;
    font-size: 1.1rem;
}

/* Solutions Section */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.solution-card {
    padding: 3rem;
    text-align: center;
    transition: transform 0.3s;
}

.solution-card:hover {
    transform: translateY(-10px);
}

.solution-card i {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--gradient-primary-start), var(--gradient-primary-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-card h3 {
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 600;
}

.solutions-cta {
    text-align: center;
    margin-top: 4rem;
}

/* Pricing Section */
.pricing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    gap: 1.5rem;
}

.toggle-btn {
    padding: 1rem 3rem;
    background: linear-gradient(145deg, #013554, #011a2b);
    color: var(--text-white);
    border: 2px solid var(--border-color);
    border-radius: 35px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.3),
                -8px -8px 16px rgba(255, 255, 255, 0.05);
}

.toggle-btn.active {
    background: linear-gradient(90deg, var(--gradient-primary-start), var(--gradient-primary-end));
    color: var(--text-dark);
    border-color: transparent;
    box-shadow: 0 6px 25px rgba(0, 255, 195, 0.4);
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.pricing-card {
    padding: 3.5rem;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-15px);
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.plan-price {
    font-size: 3rem;
    font-weight: 900;
}

.price-value {
    background: linear-gradient(90deg, var(--gradient-primary-start), var(--gradient-primary-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-unit {
    font-size: 1.4rem;
    color: #89919C;
}

.card-divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    margin: 2rem 0;
}

.plan-traffic {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 1.25rem 1.5rem;
    background: rgba(0, 255, 195, 0.08);
    border-radius: 20px;
    font-size: 1.05rem;
}

.traffic-label {
    color: #89919C;
    font-weight: 600;
}

.traffic-value {
    font-weight: 800;
}

.features-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.check-icon {
    width: 24px;
    height: 24px;
    color: var(--gradient-primary-end);
    flex-shrink: 0;
}

.btn-buy-plan {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(90deg, var(--gradient-primary-start), var(--gradient-primary-end));
    color: var(--text-dark);
    border: none;
    border-radius: 35px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(0, 255, 195, 0.3);
}

.btn-buy-plan:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 255, 195, 0.5);
}

.btn-buy-plan svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.pricing-table {
    display: none;
    overflow-x: auto;
}

.pricing-table.active {
    display: block;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(145deg, #013554, #011a2b);
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.5),
                -12px -12px 24px rgba(255, 255, 255, 0.08);
}

th, td {
    padding: 2rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.05rem;
}

th {
    background: rgba(0, 255, 195, 0.1);
    font-weight: 800;
}

tr:last-child td {
    border-bottom: none;
}

/* Lead Block */
.lead-block {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #013554, #011a2b);
    box-shadow: inset 0 4px 20px rgba(0, 0, 0, 0.3);
}

.lead-block h2 {
    font-size: 3rem;
    margin-bottom: 2.5rem;
    font-weight: 800;
}

.trial-block{
    position: relative;
}

#particles-trial {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Type Section */
.type-section {
    background: var(--bg-light);
    padding: 6rem 2rem 0rem 2rem;
}

.type-section .section-title {
    color: var(--text-dark);
    margin-bottom: 4rem;
}

.type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.type-card {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: all 0.3s;
}

.type-card:hover {
    transform: translateY(-10px);
}

.type-card-icon {
    width: 112px;
    height: 112px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #ffffff, #e0e5ea);
    box-shadow: 8px 8px 16px rgba(163, 177, 198, 0.3),
                -8px -8px 16px rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
}

.type-card:hover .type-card-icon {
    box-shadow: 10px 10px 20px rgba(163, 177, 198, 0.4),
                -10px -10px 20px rgba(255, 255, 255, 0.9);
}

.type-card-icon i {
    font-size: 3.5rem;
    background: linear-gradient(90deg, var(--gradient-primary-start), var(--gradient-primary-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.type-card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 800;
}

.type-card-content p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.type-card-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    border-radius: 35px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    align-self: flex-start;
}

.type-card-button:hover {
    background: linear-gradient(90deg, var(--gradient-primary-start), var(--gradient-primary-end));
    color: var(--text-dark);
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(0, 255, 195, 0.4);
    transform: translateX(5px);
}

.type-card-button i {
    font-size: 0.875rem;
    transition: transform 0.3s;
}

.type-card-button:hover i {
    transform: translateX(3px);
}

@media (max-width: 1024px) {
    .type-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}


/* Apply Section */
.apply-section {
    background: var(--bg-light);
    padding: 6rem 2rem;
}

.apply-section .section-title{
    color: var(--text-dark);
}

.apply-section .section-subtitle {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.apply-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.apply-card {
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.apply-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gradient-primary-start), var(--gradient-primary-end));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.apply-card:hover::before {
    transform: scaleX(1);
}

.apply-card:hover {
    transform: translateY(-10px);
}

.apply-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #013554, #011a2b);
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.4),
                -8px -8px 16px rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.apply-card:hover .apply-card-icon {
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5),
                -10px -10px 20px rgba(255, 255, 255, 0.07);
    transform: scale(1.1);
}

.apply-card-icon i {
    font-size: 2.5rem;
    background: linear-gradient(90deg, var(--gradient-primary-start), var(--gradient-primary-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.apply-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
}

/* Users Choice Section */
.users-choice-section {
    background: var(--bg-light);
    padding: 0 2rem 6rem 2rem;
    overflow: hidden;
}

.users-choice-section .section-title {
    color: var(--text-dark);
    margin-bottom: 4rem;
}

.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonials-track {
    display: flex;
    gap: 2.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 450px;
    max-width: 450px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.3s;
    flex-shrink: 0;
}


.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-primary-start), var(--gradient-primary-end));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.9rem;
    color: #666;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    flex-shrink: 0;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 1.1rem;
}

.testimonial-rating i.half {
    position: relative;
}

.testimonial-rating i.half::before {
    content: '\f005';
    position: absolute;
    width: 50%;
    overflow: hidden;
}

.testimonial-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
}

.testimonial-text {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #999;
    font-size: 0.9rem;
}

.testimonial-footer i {
    font-size: 0.875rem;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff, #e0e5ea);
    box-shadow: 8px 8px 16px rgba(163, 177, 198, 0.3),
                -8px -8px 16px rgba(255, 255, 255, 0.8);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-nav:hover {
    box-shadow: 10px 10px 20px rgba(163, 177, 198, 0.4),
                -10px -10px 20px rgba(255, 255, 255, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav i {
    font-size: 1.25rem;
    background: linear-gradient(90deg, var(--gradient-primary-start), var(--gradient-primary-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.carousel-nav.prev {
    left: 0;
}

.carousel-nav.next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.carousel-dot.active {
    background: linear-gradient(90deg, var(--gradient-primary-start), var(--gradient-primary-end));
    width: 32px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .testimonials-carousel {
        padding: 0 20px;
    }

    .testimonial-card {
        min-width: 320px;
        max-width: 320px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }
}



/* How To Start Section */
.how-to-start-section {
    background: var(--bg-light);
    padding: 6rem 2rem;
}

.how-to-start-section .section-title {
    color: var(--text-dark);
}

.how-to-start-section .section-subtitle {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.step-card {
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff, #e0e5ea);
    box-shadow: 10px 10px 20px rgba(163, 177, 198, 0.4),
                -10px -10px 20px rgba(255, 255, 255, 0.9);
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--gradient-primary-start), var(--gradient-primary-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(90deg, var(--gradient-primary-start), var(--gradient-primary-end));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
}

.step-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    font-weight: 800;
}

.step-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

.how-to-start-cta {
    text-align: center;
    margin-top: 3rem;
}

.how-to-start-cta .btn-primary {
    font-size: 1.2rem;
    padding: 1.25rem 3rem;
}

@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}


/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-radius: 25px;
    overflow: hidden;
}

.faq-question {
    padding: 2rem 2.5rem;
    background: linear-gradient(145deg, #ffffff, #e0e5ea);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-dark);
    transition: all 0.3s;
    box-shadow: 8px 8px 16px rgba(163, 177, 198, 0.3),
                -8px -8px 16px rgba(255, 255, 255, 0.8);
}

.faq-question:hover {
    box-shadow: 10px 10px 20px rgba(163, 177, 198, 0.4),
                -10px -10px 20px rgba(255, 255, 255, 0.9);
}

.faq-question i {
    transition: transform 0.3s;
    font-size: 1.2rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
    color: #666;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 2rem 2.5rem;
}

.faq-answer p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Telegram Block */
.telegram-block {
    background: var(--bg-dark);
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

#particles-telegram {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.telegram-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #0088cc, #229ed9);
    border-radius: 40px;
    box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.5),
                -12px -12px 24px rgba(255, 255, 255, 0.08);
}

.telegram-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
}

.telegram-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    color: var(--text-white);
}

.telegram-link {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 3rem;
    background: white;
    color: #0088cc;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.telegram-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.4);
}


/* Footer */
footer {
    background: #000d1a;
    padding: 4rem 2rem 2rem;
    color: #89919C;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #89919C;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.05rem;
}

.footer-section a:hover {
    color: var(--gradient-primary-end);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 1200px) {
    nav {
        flex-wrap: wrap;
    }

    .nav-menu {
        order: 3;
        flex-basis: 100%;
        justify-content: center;
        padding-top: 1rem;
        border-top: 1px solid var(--border-color);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .hero .btn-check-proxy {
        font-size: 1.2rem;
        padding: 1.25rem 2.5rem;
    }

    .advantages-content,
    .how-it-works-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

/* regions.css */
/* Использует переменные из :root твоего style.css [file:1] */

.regions {
  width: 100%;
  background-color: #011a2b;
  padding: 4rem;
  border-radius: 25px;
}

.regions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.region-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  padding: 1.5rem 1.25rem;
  border-radius: 30px;

  background: linear-gradient(145deg, #013554, #011a2b);
  box-shadow:
    8px 8px 16px rgba(0, 0, 0, 0.40),
    -8px -8px 16px rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(73, 90, 105, 0.35); /* близко к --border-color [file:1] */
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  text-align: center;
}

.region-card:hover {
  transform: translateY(-4px);
  box-shadow:
    10px 10px 20px rgba(0, 0, 0, 0.50),
    -10px -10px 20px rgba(255, 255, 255, 0.07);
  border-color: rgba(0, 255, 195, 0.35); /* акцент в духе --text-green [file:1] */
}

.region-card__icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
}

.region-card__name {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-white);
  opacity: 0.95;
}

.region-card__value {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;

  background: linear-gradient(90deg, var(--gradient-primary-start), var(--gradient-primary-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  .regions__grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
  }

  .region-card {
    padding: 1.25rem 1rem;
    border-radius: 25px;
  }
}
