:root {
    --bg-dark: #0f1115;
    --bg-card: #1c1f26;
    --bg-card-alt: #232731;
    --text-main: #f8f9fa;
    --text-muted: #a0aab2;
    --accent: #b4ff00; /* Neon Green */
    --accent-hover: #9ce600;
    --border-color: #2a2e38;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
}

h1, h2, h3, .logo {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

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

.text-center {
    text-align: center;
}

/* Header */
.header {
    background-color: rgba(15, 17, 21, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.header-logo {
    height: 50px;
    object-fit: contain;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 30px;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(180, 255, 0, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--bg-dark);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 17, 21, 0.95), rgba(15, 17, 21, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero h1 {
    font-size: 65px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Sections Global */
.section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 60px;
    font-size: 18px;
}

.about, .pricing, .why-us, .reviews, .faq {
    padding: 100px 0;
}

/* About Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.feature-card p {
    color: var(--text-muted);
}

/* Why Us Section */
.why-us {
    background-color: var(--bg-card-alt);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.comparison-card {
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-dark);
}

.comparison-card.bad h3 {
    color: #ff4b4b;
    margin-bottom: 20px;
    font-size: 24px;
}

.comparison-card.good h3 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 24px;
}

.comparison-card ul {
    list-style: none;
}

.comparison-card ul li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: var(--text-muted);
}

.comparison-card.bad ul li::before {
    content: "❌";
    position: absolute;
    left: 0;
}

.comparison-card.good ul li::before {
    content: "✅";
    position: absolute;
    left: 0;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.stars {
    margin-bottom: 15px;
    font-size: 20px;
}

.review-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.review-author {
    font-weight: 600;
    color: var(--text-main);
}

/* Pricing Section */
.pricing {
    background-color: var(--bg-card-alt);
}

.pricing-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-top: -10px;
    margin-bottom: 40px;
}

.toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    gap: 15px;
}

.toggle-label {
    font-weight: 600;
    font-size: 18px;
    color: var(--text-muted);
    transition: color 0.3s;
}

.toggle-label.active {
    color: var(--text-main);
}

.discount-badge {
    background-color: var(--accent);
    color: var(--bg-dark);
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 20px;
    vertical-align: middle;
    margin-left: 5px;
}

/* Switch styling */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-card);
    border: 2px solid var(--accent);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: var(--accent);
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--bg-card);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.pricing-card {
    background-color: var(--bg-dark);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

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

.pricing-card h3 {
    font-size: 24px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.pricing-card.popular {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(180, 255, 0, 0.1);
    transform: scale(1.05);
    background-color: var(--bg-card);
}

.pricing-card.popular h3 {
    color: var(--accent);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent);
    color: var(--bg-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 20px;
}

.price {
    margin-bottom: 5px;
}

.currency {
    font-size: 24px;
    vertical-align: super;
}

.amount {
    font-size: 50px;
    font-weight: 800;
    font-family: 'Oswald', sans-serif;
}

.original-price {
    font-size: 20px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 10px;
    vertical-align: middle;
}

.hidden {
    display: none;
}

.monthly-equiv {
    color: var(--accent);
    font-size: 14px;
    margin-bottom: 30px;
    font-weight: 600;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--text-main);
    text-align: left;
}

.pricing-card .btn {
    width: 100%;
}

/* Worldwide Section */
.worldwide-section {
    position: relative;
    padding: 120px 0;
    background: url('../img/world.png') center/cover no-repeat;
    background-color: var(--bg-dark);
}

.worldwide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 17, 21, 1), rgba(15, 17, 21, 0.7) 50%, rgba(15, 17, 21, 1));
}

.worldwide-content {
    position: relative;
    z-index: 1;
}

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

.faq-item {
    background-color: var(--bg-card);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--accent);
}

.faq-item p {
    color: var(--text-muted);
}

/* CTA Section */
.cta-section {
    background-color: var(--accent);
    color: var(--bg-dark);
    padding: 80px 0;
}

.cta-section h2 {
    color: var(--bg-dark);
    font-size: 40px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 600;
}

.cta-section .btn-primary {
    background-color: var(--bg-dark);
    color: var(--text-main);
    border: 2px solid var(--bg-dark);
}

.cta-section .btn-primary:hover {
    background-color: transparent;
    color: var(--bg-dark);
}

/* Footer */
.footer {
    background-color: #0a0c10;
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
}

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

.footer-desc {
    color: var(--text-muted);
    margin-top: 15px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--text-main);
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent);
}

.company-details {
    color: var(--text-muted);
    font-size: 14px;
}

.company-details strong {
    color: var(--text-main);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

/* Policy Pages */
.policy-page {
    padding-top: 150px;
    padding-bottom: 80px;
    max-width: 900px;
}

.policy-page h1 {
    font-size: 40px;
    margin-bottom: 30px;
    color: var(--accent);
}

.policy-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 15px;
}

.policy-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.policy-content ul {
    color: var(--text-muted);
    margin-left: 20px;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }
    
    .nav-links {
        display: none;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
}
