/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid #FF9000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
}

.logo .highlight {
    color: #FF9000;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #FF9000;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF9000;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 144, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 144, 0, 0.6), 0 0 30px rgba(255, 144, 0, 0.4);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes badgePulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 4px 15px rgba(255, 144, 0, 0.6), 0 0 20px rgba(255, 144, 0, 0.4);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 144, 0, 0.8), 0 0 30px rgba(255, 144, 0, 0.6);
    }
}

@keyframes badgeShimmer {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23FF9000" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #FF9000);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1.2s ease-out 0.3s both, shimmer 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.2s ease-out 0.6s both;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out 0.9s both;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #FF9000;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature:hover {
    transform: translateY(-3px);
    color: #ffb347;
}

.feature i {
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1.2s ease-out 1.2s both;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary {
    background: linear-gradient(45deg, #FF9000, #ffb347);
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 144, 0, 0.3);
    animation: fadeInUp 1.2s ease-out 1.2s both, glow 2s ease-in-out infinite;
}

.cta-button.primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 144, 0, 0.5);
}

.cta-button.secondary {
    background: transparent;
    color: #FF9000;
    border: 2px solid #FF9000;
}

.cta-button.secondary:hover {
    background: #FF9000;
    color: #000000;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 144, 0, 0.3);
}

/* VPN Section */
.vpn-section {
    padding: 80px 0;
    background: #111111;
}

/* Statistics Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 144, 0, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: #FF9000;
    box-shadow: 0 15px 40px rgba(255, 144, 0, 0.3);
}

.stat-icon {
    font-size: 3rem;
    color: #FF9000;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #ffffff, #FF9000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FF9000;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: #111111;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.benefit-item {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.8s ease-out forwards;
}

.benefit-item:nth-child(2) {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
    transform: translateY(30px);
}

.benefit-item:nth-child(3) {
    animation: slideInRight 0.8s ease-out forwards;
    animation-delay: 0.4s;
    transform: translateX(30px);
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: #FF9000;
    box-shadow: 0 10px 30px rgba(255, 144, 0, 0.2);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #FF9000;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.benefit-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.benefit-item ul {
    list-style: none;
    padding: 0;
}

.benefit-item li {
    color: #cccccc;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    transition: color 0.3s ease;
}

.benefit-item li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF9000;
    font-weight: bold;
}

.benefit-item:hover li {
    color: #ffffff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.vpn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .vpn-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vpn-grid {
        grid-template-columns: 1fr;
    }
}

.vpn-card {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
    overflow: visible;
    z-index: 1;
}

.vpn-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 144, 0, 0.1) 0%, transparent 50%, rgba(255, 144, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vpn-card:hover::before {
    opacity: 1;
}

.vpn-card:nth-child(1) { animation-delay: 0.1s; }
.vpn-card:nth-child(2) { animation-delay: 0.2s; }
.vpn-card:nth-child(3) { animation-delay: 0.3s; }
.vpn-card:nth-child(4) { animation-delay: 0.4s; }
.vpn-card:nth-child(5) { animation-delay: 0.5s; }
.vpn-card:nth-child(6) { animation-delay: 0.6s; }

.vpn-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #FF9000;
    box-shadow: 0 15px 40px rgba(255, 144, 0, 0.3), 0 5px 15px rgba(0, 0, 0, 0.3);
}

.vpn-card.featured {
    border: 2px solid #FF9000;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a0a 100%);
    animation: fadeInUp 0.8s ease-out forwards, glow 3s ease-in-out infinite;
}

.vpn-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #FF9000, #ffb347, #FF9000);
    background-size: 200% 200%;
    color: #000000;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 144, 0, 0.6), 0 0 20px rgba(255, 144, 0, 0.4);
    border: 2px solid #ffffff;
    animation: badgePulse 2s ease-in-out infinite, badgeShimmer 3s ease-in-out infinite;
    z-index: 100;
}

.vpn-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.vpn-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    border-radius: 50%;
    object-fit: contain;
    background: transparent;
    padding: 10px;
    transition: all 0.3s ease;
    animation: float 4s ease-in-out infinite;
}

.vpn-card:hover .vpn-logo {
    transform: scale(1.1) rotate(5deg);
    filter: brightness(1.2);
}

.vpn-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.vpn-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

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

.stars {
    color: #FF9000;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.vpn-card:hover .stars {
    animation: pulse 1s ease-in-out;
    text-shadow: 0 0 10px rgba(255, 144, 0, 0.5);
}

.rating-text {
    color: #cccccc;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.vpn-card:hover .rating-text {
    color: #ffffff;
}

.vpn-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #FF9000;
}

.period {
    color: #cccccc;
    font-size: 1rem;
}

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

.vpn-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
}

.vpn-features i {
    color: #FF9000;
    width: 16px;
}

.vpn-cta {
    width: 100%;
    margin-top: auto;
}

/* Guide Section */
.guide-section {
    padding: 80px 0;
    background: #000000;
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #FF9000, #ffb347);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.step p {
    color: #cccccc;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #111111;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #FF9000;
}

.faq-question {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #FF9000;
    font-weight: 600;
}

.faq-answer {
    color: #cccccc;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #000000;
    padding: 3rem 0 1rem;
    border-top: 2px solid #FF9000;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #FF9000;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

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

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FF9000;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    color: #888888;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        gap: 1.5rem;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
    }
    
    .vpn-grid {
        grid-template-columns: 1fr;
    }
    
    .guide-steps {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .vpn-card {
        padding: 1.5rem;
    }
    
    .step {
        padding: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vpn-card,
.step,
.faq-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for buttons */
.cta-button:active {
    transform: scale(0.98);
}