* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&display=swap');

body {
    font-family: 'JetBrains Mono', monospace;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}
#matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    opacity: 0.9;
    filter: blur(0.5px);
}
#matrix-canvas::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}
.content-wrapper {
    position: relative;
    z-index: 1;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 123, 255, 0.3);
}
.logo {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #007bff;
    text-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}
nav {
    display: flex;
    gap: 30px;
    align-items: center;
}
nav a {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}
nav a:hover {
    color: #0056b3;
    text-shadow: 0 0 10px rgba(0, 123, 255, 0.7);
}
.btn-primary {
    background: #007bff;
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.4);
}
.btn-primary:hover {
    background: #0056b3;
    box-shadow: 0 0 30px rgba(0, 123, 255, 0.6);
    transform: translateY(-2px);
}
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 60px;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 123, 255, 0.3), transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}
h1 {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -2px;
    line-height: 1.1;
    position: relative;
    z-index: 1;
    color: #007bff;
    text-shadow: 0 0 30px rgba(0, 123, 255, 0.8);
}
.subtitle {
    font-size: 20px;
    color: #66a3ff;
    margin-bottom: 40px;
    max-width: 600px;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}
.cta-group {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}
.btn-large {
    padding: 20px 50px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    background: #007bff;
    color: #fff;
    box-shadow: 0 0 30px rgba(0, 123, 255, 0.5);
    display: inline-block;
}
.btn-large:hover {
    background: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.7);
}
.about-section {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(0, 123, 255, 0.3);
    position: relative;
    z-index: 10;
}
.about-section h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 30px;
    color: #007bff;
    text-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
}
.about-content {
    font-size: 18px;
    line-height: 1.8;
    color: #66a3ff;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}
.gallery-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #001a33, #003366);
    border: 1px solid rgba(0, 123, 255, 0.3);
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}
.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 123, 255, 0.6);
    border-color: rgba(0, 123, 255, 0.8);
}
.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(0, 123, 255, 0.3) 0%, rgba(0, 86, 179, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-item:hover::before {
    opacity: 1;
}
.features {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.features h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 50px;
    color: #007bff;
    text-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.feature-card {
    padding: 40px;
    background: rgba(0, 26, 51, 0.8);
    border: 1px solid rgba(0, 123, 255, 0.3);
    transition: all 0.3s;
}
.feature-card:hover {
    background: rgba(0, 51, 102, 0.8);
    border-color: rgba(0, 123, 255, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.4);
}
.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
}
.feature-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #007bff;
}
.feature-card p {
    color: #66a3ff;
    line-height: 1.6;
}
footer {
    padding: 40px;
    text-align: center;
    border-top: 1px solid rgba(0, 123, 255, 0.3);
    background: rgba(0, 0, 0, 0.9);
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.footer-links a {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}
.footer-links a:hover {
    color: #0056b3;
    text-shadow: 0 0 10px rgba(0, 123, 255, 0.7);
}
.copyright {
    color: #0056b3;
    font-size: 14px;
}
@media (max-width: 768px) {
    h1 { font-size: 48px; }
    .subtitle { font-size: 18px; }
    header { padding: 20px; }
    nav { gap: 15px; }
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 12px;
        padding: 20px;
    }
    .about-section { padding: 40px 20px; }
    .about-section h2 { font-size: 36px; }
    .about-content { font-size: 16px; }
}

/* Pricing Section Styles */
.pricing-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.pricing-section h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    color: #007bff;
    text-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
}
.pricing-subtitle {
    text-align: center;
    color: #66a3ff;
    font-size: 18px;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.pricing-card {
    background: rgba(0, 26, 51, 0.8);
    border: 2px solid rgba(0, 123, 255, 0.3);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.1), transparent);
    transition: left 0.5s;
}
.pricing-card:hover::before {
    left: 100%;
}
.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 123, 255, 0.8);
    box-shadow: 0 20px 50px rgba(0, 123, 255, 0.5);
    background: rgba(0, 51, 102, 0.9);
}
.pricing-card.popular {
    border-color: rgba(0, 255, 150, 0.5);
    background: rgba(0, 51, 102, 0.9);
    transform: scale(1.05);
}
.pricing-card.popular .popular-badge {
    display: block;
}
.popular-badge {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #00ff96, #00cc77);
    color: #000;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(0, 255, 150, 0.6);
}
.plan-name {
    font-size: 24px;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pricing-card.popular .plan-name {
    color: #00ff96;
}
.price {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 123, 255, 0.6);
}
.pricing-card.popular .price {
    text-shadow: 0 0 20px rgba(0, 255, 150, 0.6);
}
.price-currency {
    font-size: 32px;
    vertical-align: super;
}
.period {
    color: #66a3ff;
    font-size: 16px;
    margin-bottom: 30px;
}
.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}
.pricing-features li {
    color: #66a3ff;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 123, 255, 0.2);
    font-size: 14px;
}
.pricing-features li:last-child {
    border-bottom: none;
}
.pricing-features li::before {
    content: '✓';
    color: #00ff96;
    font-weight: bold;
    margin-right: 10px;
}
.pricing-btn {
    width: 100%;
    padding: 16px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.4);
}
.pricing-btn:hover {
    background: #0056b3;
    box-shadow: 0 0 30px rgba(0, 123, 255, 0.7);
    transform: translateY(-2px);
}
.pricing-card.popular .pricing-btn {
    background: linear-gradient(135deg, #00ff96, #00cc77);
    color: #000;
    font-weight: 700;
}
.pricing-card.popular .pricing-btn:hover {
    background: linear-gradient(135deg, #00cc77, #009955);
    box-shadow: 0 0 30px rgba(0, 255, 150, 0.7);
}
