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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Courier New', monospace;
    background-color: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
}

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

.navbar {
    position: sticky;
    top: 0;
    background-color: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid #333;
    padding: 15px 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 48px;
    width: auto;
    border-radius: 12px;
    filter: brightness(1.2) drop-shadow(0 0 8px rgba(0, 255, 136, 0.4));
    transition: all 0.3s;
}

.logo {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #00ff88;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #e0e0e0;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #00ff88;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    border-bottom: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(0, 150, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero h1 {
    font-size: 64px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    color: #00ff88;
}

.tagline {
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #00ff88;
}

.subtitle {
    font-size: 16px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #b0b0b0;
}

.cta-button {
    display: inline-block;
    padding: 12px 40px;
    background-color: #00ff88;
    color: #0a0a0a;
    text-decoration: none;
    letter-spacing: 1px;
    font-weight: bold;
    border: 2px solid #00ff88;
    border-radius: 12px;
    transition: all 0.3s;
    cursor: pointer;
}

.cta-button:hover {
    background-color: transparent;
    color: #00ff88;
}

.hero-logo {
    height: 280px;
    width: auto;
    margin-bottom: 40px;
    border-radius: 24px;
    filter: brightness(1.15) drop-shadow(0 0 30px rgba(0, 255, 136, 0.3));
    animation: float 3s ease-in-out infinite;
}

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

.services {
    padding: 80px 0;
    background-color: #0a0a0a;
    border-bottom: 1px solid #333;
}

.services h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
    color: #00ff88;
}

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

.service-card {
    padding: 40px;
    border: 1px solid #333;
    background-color: #1a1a1a;
    border-radius: 16px;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: #00ff88;
    background-color: rgba(0, 255, 136, 0.05);
}

.service-icon {
    font-size: 32px;
    color: #00ff88;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 18px;
    letter-spacing: 1px;
}

.service-card p {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.8;
}

.values {
    padding: 80px 0;
    background-color: #1a1a1a;
    border-bottom: 1px solid #333;
}

.values h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
    color: #00ff88;
}

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

.value-card {
    padding: 40px;
    border: 1px solid #333;
    background-color: #0a0a0a;
    border-radius: 16px;
    transition: all 0.3s;
    position: relative;
}

.value-card:hover {
    border-color: #00ff88;
    background-color: rgba(0, 255, 136, 0.05);
}

.value-number {
    font-size: 48px;
    font-weight: bold;
    color: #00ff88;
    margin-bottom: 20px;
    opacity: 0.3;
}

.value-card h3 {
    margin-bottom: 15px;
    font-size: 18px;
    letter-spacing: 1px;
}

.value-card p {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.8;
}

.about {
    padding: 80px 0;
    background-color: #0a0a0a;
    border-bottom: 1px solid #333;
}

.about h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
    color: #00ff88;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 15px;
    color: #b0b0b0;
    line-height: 1.9;
}

.pricing {
    padding: 80px 0;
    background-color: #1a1a1a;
    border-bottom: 1px solid #333;
}

.pricing h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
    color: #00ff88;
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    padding: 50px 40px;
    border: 2px solid #00ff88;
    background-color: #0a0a0a;
    border-radius: 16px;
    text-align: center;
}

.price-tag {
    font-size: 64px;
    font-weight: bold;
    color: #00ff88;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.pricing-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #e0e0e0;
    letter-spacing: 1px;
}

.price-description {
    font-size: 15px;
    color: #b0b0b0;
    margin-bottom: 30px;
    line-height: 1.8;
}

.price-details {
    margin: 30px 0;
    padding: 20px;
    background-color: rgba(0, 255, 136, 0.05);
    border-radius: 12px;
    border-left: 3px solid #00ff88;
}

.price-details p {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.8;
}

.payment-methods {
    margin: 40px 0;
}

.payment-title {
    font-size: 14px;
    color: #00ff88;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.payment-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.payment-icon {
    padding: 15px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    color: #e0e0e0;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s;
}

.payment-icon:hover {
    border-color: #00ff88;
    background-color: rgba(0, 255, 136, 0.1);
    color: #00ff88;
}

.refund-policy {
    padding: 20px;
    margin-top: 30px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.refund-policy p {
    font-size: 14px;
    color: #ff6b6b;
    letter-spacing: 1px;
}

.tos {
    padding: 80px 0;
    background-color: #1a1a1a;
    border-bottom: 1px solid #333;
}

.tos h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
    color: #00ff88;
}

.tos-content {
    max-width: 900px;
    margin: 0 auto;
}

.tos-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 18px;
    letter-spacing: 1px;
    color: #00ff88;
}

.tos-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.tos-content li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    color: #b0b0b0;
}

.tos-content li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #00ff88;
}

.tos-content p {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.8;
}

.contact {
    padding: 80px 0;
    background-color: #0a0a0a;
    border-bottom: 1px solid #333;
}

.contact h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: #00ff88;
}

.contact-intro {
    text-align: center;
    margin-bottom: 50px;
    font-size: 16px;
    color: #b0b0b0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    padding: 30px;
    border: 1px solid #333;
    background-color: #1a1a1a;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: #00ff88;
    background-color: rgba(0, 255, 136, 0.05);
}

.contact-card h3 {
    margin-bottom: 15px;
    color: #00ff88;
}

.contact-card p {
    font-size: 14px;
    color: #b0b0b0;
}

.contact-card a {
    color: #00ff88;
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-card a:hover {
    opacity: 0.8;
}

footer {
    background-color: #000000;
    border-top: 1px solid #333;
    padding: 30px 0;
    text-align: center;
    font-size: 12px;
    color: #666;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 10px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .tagline {
        font-size: 18px;
    }

    .services h2,
    .values h2,
    .about h2,
    .tos h2,
    .contact h2 {
        font-size: 32px;
    }

    .services-grid,
    .values-grid,
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card,
    .value-card,
    .contact-card {
        padding: 25px;
    }
}
