* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --black-0: #0a0a0a;
    --black-1: #121212;
    --black-2: #1a1a1a;
    --black-3: #222222;
    --black-4: #2a2a2a;
    --graphite-1: #333333;
    --graphite-2: #3a3a3a;
    --graphite-3: #444444;
    --graphite-4: #4a4a4a;
    --silver-1: #c0c0c0;
    --silver-2: #d0d0d0;
    --silver-3: #e0e0e0;
    --silver-4: #f0f0f0;
    --white: #ffffff;
    --glow-effect: rgba(255, 255, 255, 0.03);
    --glass-bg: rgba(25, 25, 25, 0.3);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient-silver: linear-gradient(135deg, var(--silver-2) 0%, var(--white) 100%);
    --gradient-silver-reverse: linear-gradient(135deg, var(--white) 0%, var(--silver-2) 100%);
    --gradient-silver-vertical: linear-gradient(to bottom, var(--silver-3) 0%, var(--white) 100%);
    --gradient-silver-horizontal: linear-gradient(to right, var(--silver-3) 0%, var(--white) 100%);
    --gradient-dark: linear-gradient(135deg, var(--black-1) 0%, var(--black-3) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.15) 100%);
    --gradient-glass-dark: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
    --diamond-gradient: linear-gradient(135deg, rgba(220,220,220,0.8) 0%, rgba(255,255,255,0.9) 50%, rgba(220,220,220,0.8) 100%);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--silver-2);
    overflow-x: hidden;
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    background: var(--gradient-dark);
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    letter-spacing: -0.5px;
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(255,255,255,0.1);
    position: relative;
    display: inline-block;
}

.faq-section {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding: 40px 0;
    background: rgba(10, 10, 10, 0.3);
}

.faq-section .section-title {
    text-align: center;
    margin: 0 auto 20px;
    width: 100%;
}

.section-title {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(255,255,255,0.15);
    margin-bottom: 25px;
}

.security-features .section-title {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.speed-test-section .section-title {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.pricing-section .section-title {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 50px;
    font-weight: 400;
    color: var(--silver-3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-section .section-subtitle {
    text-align: center;
    margin: 0 auto 40px;
}

.faq-grid {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 8px;
    text-align: left;
    background: rgba(30, 30, 30, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item.active {
    background: rgba(40, 40, 40, 0.8);
    box-shadow: 0 12px 32px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.25);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255,255,255,0.05);
}

.faq-question h4 {
    font-size: 1.4rem;
    color: var(--silver-3);
    margin: 0;
    font-weight: 500;
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-toggle {
    width: 25px;
    height: 25px;
    position: relative;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background: var(--silver-3);
    transition: all 0.3s ease;
}

.faq-toggle::before {
    width: 50%;
    height: 2px;
}

.faq-toggle::after {
    width: 2px;
    height: 50%;
}

.faq-item.active .faq-toggle {
    background: rgba(0,0,0,0.3);
}

.faq-item.active .faq-toggle::after {
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 25px 30px 30px;
    color: var(--silver-2);
    line-height: 1.7;
    font-size: 1.05rem;
}

.faq-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.faq-contact-btn {
    padding: 18px 30px;
    border: none;
    background: transparent;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 250px;
    text-align: left;
}

.faq-contact-btn i {
    font-size: 1.2rem;
}

.contact-info {
    display: none;
    margin-top: 20px;
    padding: 25px;
    text-align: center;
}

.contact-info h4 {
    margin-bottom: 15px;
    color: var(--silver-3);
}

.contact-info p {
    margin-bottom: 10px;
    color: var(--silver-2);
}

.contact-info a {
    color: var(--silver-3);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--white);
}

.glass-card {
    background: rgba(25, 25, 25, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    will-change: transform, box-shadow;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.2);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 42px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    background: transparent;
    color: var(--silver-3);
    border: 1px solid var(--silver-2);
    box-shadow: 0 0 15px var(--glow-effect);
    z-index: 1;
    will-change: transform, box-shadow;
    text-decoration: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.btn:hover {
    color: var(--silver-4);
    box-shadow: 0 0 25px var(--glow-effect);
    transform: translateY(-3px) !important;
}

.btn:hover::before {
    left: 100%;
}

.btn i {
    margin-right: 10px;
    font-size: 0.9rem;
}

.btn-glass-gradient {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.2) 100%);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
}

.btn-glass-gradient:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.25) 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-section {
    min-height: 100vh;
    background-color: rgba(5, 5, 5, 0.9);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--graphite-2);
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), var(--black-0);
    background-size: 50px 50px;
    background-attachment: fixed;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.02) 100%), linear-gradient(45deg, rgba(255,255,255,0.01) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.01) 100%);
    background-size: 60px 60px;
    z-index: 1;
    pointer-events: none;
}

.pricing-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(40, 40, 40, 0.1) 0%, transparent 40%), radial-gradient(circle at 80% 20%, rgba(40, 40, 40, 0.1) 0%, transparent 40%);
    z-index: 0;
}

.pricing-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.pricing-card {
    background: rgba(25, 25, 25, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
}

.pricing-card.popular {
    border: 1px solid rgba(255,255,255,0.3);
    transform: scale(1.08);
    z-index: 2;
}

.pricing-card.popular::before {
    display: none;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.3);
}

.pricing-card.popular:hover {
    transform: translateY(-10px) scale(1.08);
}

.pricing-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--silver-3);
}

.pricing-price {
    font-size: 4rem;
    margin-bottom: 25px;
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Manrope', sans-serif;
}

.pricing-period {
    font-size: 0.9rem;
    color: var(--silver-2);
    display: block;
    margin-top: 5px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--silver-2);
    font-size: 1rem;
    border-bottom: 1px solid var(--graphite-3);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    margin-right: 10px;
    color: var(--silver-3);
}

.trial-notice {
    background: linear-gradient(135deg, rgba(40,40,40,0.8) 0%, rgba(30,30,30,0.9) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 0;
    padding: 40px;
    margin: 60px 0 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.trial-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.trial-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 600;
}

.trial-content p {
    font-size: 1.1rem;
    color: var(--silver-3);
    margin-bottom: 25px;
    line-height: 1.6;
}

.trial-content .btn {
    padding: 16px 35px;
    font-size: 1rem;
    border-radius: 0;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.faq-category-btn {
    padding: 15px 30px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.2) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    font-weight: 500;
}

.faq-category-btn.active {
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.3) 100%);
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.faq-category {
    display: none;
}

.faq-category.active {
    display: block;
}

.feature-tooltip {
    position: relative;
    cursor: help;
    border-bottom: 1px dotted var(--silver-2);
}

.feature-tooltip:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    background: var(--black-3);
    border: 1px solid var(--graphite-2);
    color: var(--silver-3);
    font-size: 0.8rem;
    width: 200px;
    z-index: 1000;
    border-radius: 4px;
}

.faq-buttons .btn {
    padding: 15px 30px;
}

.faq-buttons .btn i {
    margin-right: 10px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--black-1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--graphite-2);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

header.scrolled {
    background-color: rgba(10, 10, 10, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    border-bottom-color: rgba(255,255,255,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 1.8rem;
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(-20px);
    text-shadow: 0 0 15px rgba(255,255,255,0.1);
}

.logo span {
    color: var(--silver-2);
    font-weight: 400;
}

.logo-icon {
    margin-right: 12px;
    font-size: 1.6rem;
    color: var(--silver-2);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 32px;
    position: relative;
    opacity: 0;
    transform: translateY(-20px);
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 1.2px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: var(--silver-2);
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-links a i {
    margin-right: 8px;
    font-size: 0.85rem;
}

.nav-links a:hover {
    color: var(--silver-4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--silver-3);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.hero {
    height: 100vh;
    min-height: 800px;
    background: linear-gradient(135deg, var(--black-1) 0%, var(--black-3) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 80px;
    border-bottom: 1px solid var(--graphite-2);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(30, 30, 30, 0.2) 0%, transparent 30%), radial-gradient(circle at 80% 70%, rgba(40, 40, 40, 0.2) 0%, transparent 30%), linear-gradient(rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.95));
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.02) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    max-width: 800px;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 24px;
    line-height: 1.1;
    font-weight: 500;
    text-shadow: 0 0 20px var(--glow-effect);
    letter-spacing: -1.5px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-title span {
    display: block;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    color: var(--silver-2);
    margin-top: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
    background: none;
    -webkit-text-fill-color: var(--silver-2);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 36px;
    color: var(--silver-2);
    max-width: 600px;
    line-height: 1.8;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 0 10px;
    opacity: 0;
    transform: translateY(20px);
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background: var(--gradient-silver-vertical);
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 500;
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
    font-family: 'Manrope', sans-serif;
    text-shadow: 0 0 15px var(--glow-effect);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--silver-2);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.security-features {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--black-1) 0%, var(--black-3) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--graphite-2);
}

.security-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(30, 30, 30, 0.2) 0%, transparent 30%), radial-gradient(circle at 70% 80%, rgba(40, 40, 40, 0.2) 0%, transparent 30%), linear-gradient(rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.95));
    z-index: 1;
}

.security-features::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.02) 100%);
    z-index: 2;
    pointer-events: none;
}

.security-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--silver-3);
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--silver-2);
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.feature-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 15px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--gradient-glass);
    color: var(--white);
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.1);
}

.feature-card .btn {
    margin-top: auto;
    align-self: center;
    width: 100%;
}

.security-visual {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.2;
}

.diamond-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    grid-auto-rows: 100px;
    opacity: 0.1;
}

.diamond {
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background: var(--diamond-gradient);
    opacity: 0.05;
    animation: diamond-pulse 8s infinite ease-in-out;
}

.server-status-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--black-1) 0%, var(--black-3) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--graphite-2);
}

.server-status-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(30, 30, 30, 0.2) 0%, transparent 30%), radial-gradient(circle at 30% 70%, rgba(40, 40, 40, 0.2) 0%, transparent 30%), linear-gradient(rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.95));
    z-index: 1;
}

.server-status-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.02) 100%);
    z-index: 2;
    pointer-events: none;
}

.server-status-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.server-status-content .section-subtitle {
    margin-bottom: 40px;
}

.server-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 300px;
}

.search-input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    background: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--silver-3);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.search-input:focus {
    outline: none;
    border-color: var(--silver-3);
    box-shadow: 0 0 15px rgba(255,255,255,0.1);
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--silver-3);
}

.filter-select {
    padding: 15px 20px;
    background: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--silver-3);
    font-family: 'Inter', sans-serif;
    min-width: 200px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--silver-3);
}

.servers-list-view {
    display: block;
}

.server-row {
    display: grid;
    grid-template-columns: 50px 1fr 1fr 1fr auto;
    align-items: center;
    padding: 20px;
    background: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.server-row:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.2);
}

.server-row-flag {
    width: 40px;
    height: 30px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 3px;
}

.server-row-name {
    font-size: 1.1rem;
    color: var(--silver-3);
    font-family: 'Manrope', sans-serif;
}

.server-row-location {
    color: var(--silver-2);
}

.server-row-speed {
    color: var(--silver-3);
    font-family: 'Roboto Mono', monospace;
    font-weight: 500;
}

.server-row-action .connect-btn {
    width: auto;
    padding: 10px 20px;
}

.footer {
    background: linear-gradient(135deg, var(--black-2) 0%, var(--black-4) 100%);
    padding: 80px 0 40px;
    position: relative;
    border-top: 1px solid var(--graphite-2);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.02) 100%);
    z-index: 1;
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-logo {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 1.8rem;
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-about {
    color: var(--silver-2);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: left;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(30, 30, 30, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--silver-3);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-glass);
    color: var(--white);
    transform: translateY(-3px);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    padding: 0 15px;
}

.auth-buttons {
    display: flex;
    gap: 10px;
    margin-left: 15px;
    padding: 0 15px;
}

.nav-links {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
}

.footer-links h4 {
    font-size: 1.1rem;
    color: var(--silver-3);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--silver-2);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--silver-4);
    transform: translateX(5px);
}

.footer-links a i {
    margin-right: 8px;
    font-size: 0.8rem;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--graphite-3);
    text-align: center;
    color: var(--silver-2);
    font-size: 0.8rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 30px 20px 0;
}

@keyframes diamond-pulse {
    0% { opacity: 0.05; }
    50% { opacity: 0.1; }
    100% { opacity: 0.05; }
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-question h4 {
        font-size: 1.1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-about {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--black-1);
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid var(--graphite-2);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
        margin-left: 0;
    }

    .mobile-menu-btn {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .server-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box {
        min-width: 100%;
    }

    .server-row {
        grid-template-columns: 40px 1fr auto;
        padding: 15px;
        gap: 10px;
    }

    .faq-question h4 {
        font-size: 1.2rem;
    }

    .faq-answer-inner {
        font-size: 1rem;
        line-height: 1.6;
    }

    .faq-section .section-title {
        font-size: 2rem;
    }

    .faq-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .faq-contact-btn {
        width: 140px;
        padding: 12px 15px;
        font-size: 0.8rem;
        text-align: center;
        justify-content: center;
    }

    .hero {
        min-height: 100vh;
        height: auto;
        padding: 100px 0 50px 0;
        overflow: visible;
    }

    .hero-content {
        padding-top: 40px;
        justify-content: flex-start;
    }

    .hero-text {
        margin-top: 30px;
    }

    .hero-stats {
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 3.0rem;
        line-height: 1.1;
    }

    .section-title {
        font-size: 2.6rem;
        margin-bottom: 20px;
    }

    .section-subtitle {
        font-size: 1.2rem;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .security-features .section-title,
    .speed-test-section .section-title,
    .pricing-section .section-title {
        font-size: 2rem;
    }

    .server-row {
        grid-template-columns: 30px 1fr auto;
        padding: 10px 8px;
        gap: 8px;
    }

    .server-row-name {
        font-size: 0.9rem;
    }

    .server-row-flag {
        width: 30px;
        height: 22px;
    }

    .server-row-action .connect-btn {
        padding: 6px 12px;
        font-size: 0.7rem;
        min-width: 60px;
    }

    .search-input, .filter-select {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .search-icon {
        left: 15px;
    }

    .servers-list-view {
        display: block;
    }

    .server-row-location, .server-row-speed {
        display: none;
    }

    .hero-buttons .btn {
        padding: 16px 25px;
        font-size: 0.8rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-buttons {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.7rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .pricing-price {
        font-size: 3rem;
    }

    .faq-question {
        padding: 15px 18px;
    }

    .header-container {
        padding: 0 15px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .hero {
        min-height: 700px;
        padding-top: 60px;
    }

    .security-features,
    .speed-test-section,
    .pricing-section,
    .server-status-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .auth-buttons {
        display: none;
    }

    .mobile-auth-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }

    .mobile-auth-buttons .btn {
        width: 100%;
    }
}

.mobile-auth-buttons {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-auth-buttons .btn {
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .mobile-auth-buttons {
        display: flex;
    }

    .auth-buttons {
        display: none;
    }
}

@media (max-width: 768px) {
    body header#header .header-container .auth-buttons {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .header-container {
        padding: 0 15px !important;
        justify-content: space-between !important;
    }

    .mobile-menu-btn {
        margin-left: auto !important;
        margin-right: 15px !important;
        font-size: 1.3rem !important;
    }

    .logo span {
        display: inline !important;
    }

    .logo {
        font-size: 1.5rem !important;
        display: flex !important;
        align-items: center !important;
    }

    .logo-icon {
        margin-right: 10px !important;
        width: 24px !important;
        height: 24px !important;
    }

    .nav-links {
        position: absolute !important;
        top: 80px !important;
        left: 0 !important;
        width: 100% !important;
        background: var(--black-1) !important;
        flex-direction: column !important;
        padding: 20px !important;
        border-top: 1px solid var(--graphite-2) !important;
        display: none !important;
    }

    .nav-links.active {
        display: flex !important;
    }

    .nav-links li {
        margin: 12px 0 !important;
        margin-left: 0 !important;
    }
}

.logo-icon {
    width: 30px !important;
    height: 30px !important;
    margin-right: 10px !important;
    object-fit: contain !important;
}

.contact-info h4 {
    font-size: 1.4rem !important;
    margin-bottom: 20px;
}

.faq-contact-btn {
    font-size: 1.1rem !important;
    padding: 20px 30px !important;
}

body header#header .header-container .auth-buttons a.auth-btn {
    font-family: 'Inter', sans-serif !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 18px 30px !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    border: none !important;
    outline: none !important;
    position: relative !important;
    overflow: hidden !important;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.2) 100%) !important;
    color: white !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.03) !important;
    z-index: 1 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    white-space: nowrap !important;
}

body header#header .header-container .auth-buttons a.auth-btn:hover {
    color: #f0f0f0 !important;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.05) !important;
    transform: translateY(-3px) !important;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.25) 100%) !important;
}

body header#header .header-container .auth-buttons {
    display: flex !important;
    gap: 15px !important;
    margin-left: 30px !important;
}
/* ЦВЕТНЫЕ КНОПКИ СКАЧИВАНИЯ */
.download-btn {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    color: var(--silver-3);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    min-width: 240px;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.download-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.download-btn:hover::before {
    left: 100%;
}

/* WINDOWS КНОПКА */
.windows-btn {
    border: 2px solid #0078d7;
    background: linear-gradient(135deg, rgba(0, 120, 215, 0.1) 0%, rgba(0, 90, 158, 0.2) 100%);
}

.windows-btn:hover {
    background: linear-gradient(135deg, rgba(0, 120, 215, 0.2) 0%, rgba(0, 90, 158, 0.3) 100%);
    box-shadow: 0 15px 30px rgba(0, 120, 215, 0.3);
}

/* ANDROID КНОПКА */
.android-btn {
    border: 2px solid #3ddc84;
    background: linear-gradient(135deg, rgba(61, 220, 132, 0.1) 0%, rgba(46, 204, 113, 0.2) 100%);
}

.android-btn:hover {
    background: linear-gradient(135deg, rgba(61, 220, 132, 0.2) 0%, rgba(46, 204, 113, 0.3) 100%);
    box-shadow: 0 15px 30px rgba(61, 220, 132, 0.3);
}

/* ЦВЕТНЫЕ ИКОНКИ */
.download-icon {
    font-size: 2.5rem;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.windows-btn .download-icon {
    color: #0078d7;
    text-shadow: 0 0 15px rgba(0, 120, 215, 0.5);
}

.android-btn .download-icon {
    color: #3ddc84;
    text-shadow: 0 0 15px rgba(61, 220, 132, 0.5);
}

.download-btn:hover .download-icon {
    transform: scale(1.2);
}

.download-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.download-label {
    font-size: 0.8rem;
    color: var(--silver-2);
    margin-bottom: 4px;
}

.download-platform {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
}

/* ПЕРЕМЕННЫЕ ДЛЯ ГРАДИЕНТА */
:root {
    --primary-blue: #0078d4;
    --accent-purple: #8a2be2;
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
}

/* ШРИФТ С ПЕРЕЛИВОМ СИНИЙ-ФИОЛЕТОВЫЙ */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

/* ДЛЯ ЗАГОЛОВКОВ С ГРАДИЕНТОМ */
.gradient-heading {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 120, 212, 0.3);
}

/* ПЕРЕЛИВ ДЛЯ СТАТИСТИКИ В HERO */
.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    font-family: 'Manrope', sans-serif;
    text-shadow: 0 0 20px rgba(0, 120, 212, 0.3);
}

/* ЧЕРНАЯ КНОПКА С БЕЛОЙ РАМКОЙ */
.btn-black-white {
    background: rgba(10, 10, 10, 0.9);
    border: 2px solid var(--white);
    color: var(--white);
    padding: 20px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 280px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn-black-white:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.btn-black-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-black-white:hover::before {
    left: 100%;
}
/* РАМКА И ПУЛЬС ДЛЯ КАРТОЧКИ INSTAGRAM */
.feature-card.instagram-featured {
    position: relative;
    border: 2px solid transparent;
}

.feature-card.instagram-featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-radius: inherit;
    z-index: -1;
    opacity: 0.8;
    animation: pulse 2s infinite;
}

.feature-card.instagram-featured::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: rgba(25, 25, 25, 0.95);
    border-radius: inherit;
    z-index: -1;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 0.9; }
    100% { opacity: 0.6; }
}

/* УВЕЛИЧЕННЫЕ ТЕКСТЫ ТОЛЬКО ДЛЯ FEATURE БЛОКОВ */
.feature-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.feature-desc {
    font-size: 1.05rem;
    margin-bottom: 25px;
}

/* ЦВЕТНАЯ ИКОНКА INSTAGRAM */
.instagram-gradient {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* 1. Возвращаем белый цвет для статистики, но сохраняем стиль */
.stat-number {
    font-size: 2.6rem;
    font-weight: 500;
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
    font-family: 'Manrope', sans-serif;
    text-shadow: 0 0 15px var(--glow-effect);
}



/* ЦВЕТНАЯ КНОПКА INSTAGRAM */
.feature-card.instagram-featured .btn-glass-gradient {
    background: linear-gradient(45deg, rgba(240, 148, 51, 0.15) 0%, rgba(230, 104, 60, 0.15) 25%, rgba(220, 39, 67, 0.15) 50%, rgba(204, 35, 102, 0.15) 75%, rgba(188, 24, 136, 0.15) 100%);
    border: 1px solid rgba(220, 39, 67, 0.4);
    color: var(--white);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.feature-card.instagram-featured .btn-glass-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 39, 67, 0.3), transparent);
    transition: all 0.6s ease;
}

.feature-card.instagram-featured .btn-glass-gradient:hover::before {
    left: 100%;
}

.feature-card.instagram-featured .btn-glass-gradient:hover {
    background: linear-gradient(45deg, rgba(240, 148, 51, 0.25) 0%, rgba(230, 104, 60, 0.25) 25%, rgba(220, 39, 67, 0.25) 50%, rgba(204, 35, 102, 0.25) 75%, rgba(188, 24, 136, 0.25) 100%);
    border-color: rgba(220, 39, 67, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.3);
    color: var(--white);
}




/* 4. Увеличиваем все иконки в блоке features */
.feature-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 5. Удаляем фон diamond grid из блока цен */
.pricing-section {
    background: linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), var(--black-0);
    background-size: 50px 50px;
    background-attachment: fixed;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    z-index: 1;
    pointer-events: none;
}

/* Адаптивность для мобильных */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card.instagram-featured {
        grid-column: 1;
    }
}

/* ЦВЕТНАЯ ИКОНКА INSTAGRAM С ГРАДИЕНТОМ */
.feature-card.instagram-featured .feature-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(220, 39, 67, 0.4));
}



/* Trial блок - цветной градиент на фоне и яркая рамка */
.trial-notice {
    background: linear-gradient(135deg, rgba(0, 120, 215, 0.15) 0%, rgba(138, 43, 226, 0.1) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 120, 215, 0.4);
    border-radius: 0;
    padding: 40px;
    margin: 0 0 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Яркая кнопка в trial */
.trial-content .btn {
    background: linear-gradient(135deg, #0078d7 0%, #0056b3 100%);
    border: none;
    color: white;
    padding: 18px 40px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 120, 215, 0.4);
}

.trial-content .btn:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004494 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 120, 215, 0.5);
}

/* Популярный блок - цветной градиент и яркая рамка */
.pricing-card.popular {
    border: 2px solid rgba(0, 120, 215, 0.4);
    transform: scale(1.08);
    z-index: 2;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 120, 215, 0.1) 0%, rgba(138, 43, 226, 0.05) 100%);
}

/* Красивая кнопка для популярного тарифа */
.pricing-card.popular .btn-glass-gradient {
    background: linear-gradient(135deg, #0078d7 0%, #0056b3 100%);
    border: none;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(0, 120, 215, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.pricing-card.popular .btn-glass-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: all 0.6s ease;
}

.pricing-card.popular .btn-glass-gradient:hover::before {
    left: 100%;
}

.pricing-card.popular .btn-glass-gradient:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004494 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 120, 215, 0.6);
}

/* Обычные кнопки в других тарифах */
.pricing-card:not(.popular) .btn-glass-gradient {
    background: rgba(10, 10, 10, 0.9);
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    font-weight: 500;
    transition: all 0.3s ease;
}

.pricing-card:not(.popular) .btn-glass-gradient:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}


.trial-content .btn {
    background: linear-gradient(135deg, rgba(61, 220, 132, 0.15) 0%, rgba(46, 204, 113, 0.25) 100%);
    border: 2px solid #3ddc84;
    color: var(--white);
    padding: 18px 40px;
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(61, 220, 132, 0.2);
}

.trial-content .btn:hover {
    background: linear-gradient(135deg, rgba(61, 220, 132, 0.25) 0%, rgba(46, 204, 113, 0.35) 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(61, 220, 132, 0.4);
    border-color: #3ddc84;
}

/* Обычные кнопки в ценах - чистые с рамкой */
.pricing-card:not(.popular) .btn-glass-gradient {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    font-weight: 500;
    transition: all 0.3s ease;
}

.pricing-card:not(.popular) .btn-glass-gradient:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

/* Кнопка popular - стиль как у скачать windows */
.pricing-card.popular .btn-glass-gradient {
    background: linear-gradient(135deg, rgba(0, 120, 215, 0.1) 0%, rgba(0, 90, 158, 0.2) 100%);
    border: 2px solid #0078d7;
    color: var(--white);
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.popular .btn-glass-gradient:hover {
    background: linear-gradient(135deg, rgba(0, 120, 215, 0.2) 0%, rgba(0, 90, 158, 0.3) 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 120, 215, 0.3);
}
@media (max-width: 768px) {
    .pricing-card.popular {
        transform: scale(1);
    }
}
.connect-btn {
    background: #666;
    border: 1px solid #777;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.connect-btn:hover {
    background: #777;
    border-color: #888;
}