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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background: #0f172a;
    min-height: 100vh;
}

header {
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    padding: 1.5rem 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e2e8f0;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.2s;
}

.logo:hover {
    color: #6366f1;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: #e2e8f0;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    min-height: auto;
}

.hero {
    text-align: center;
    padding: 4rem 0;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #e2e8f0, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
}

.hero p {
    font-size: 1.5rem;
    color: #64748b;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero .tagline {
    font-size: 2rem;
    color: #94a3b8;
    font-weight: 400;
}

.page-header {
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #e2e8f0;
}

.subtitle {
    color: #64748b;
}

.content {
    margin-bottom: 3rem;
}

.text-block {
    margin-bottom: 2rem;
}

.text-block h2 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #e2e8f0;
    font-weight: 600;
}

.text-block p {
    color: #94a3b8;
    line-height: 1.7;
}

.text-block a {
    color: #818cf8;
    text-decoration: none;
    transition: color 0.2s;
}

.text-block a:hover {
    color: #a5b4fc;
}

.product-card {
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.product-card:hover {
    border-color: rgba(129, 140, 248, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(129, 140, 248, 0.2);
}

.product-card h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: #e2e8f0;
    font-weight: 600;
}

.product-card p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-card a {
    color: #818cf8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.product-card a:hover {
    color: #a5b4fc;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info p {
    margin-bottom: 0.75rem;
    color: #94a3b8;
}

.contact-info a {
    color: #818cf8;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

.contact-info a:hover {
    color: #a5b4fc;
}

footer {
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    padding: 2rem 0;
    margin-top: 3rem;
    background: rgba(15, 23, 42, 0.5);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-section p {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
    font-weight: 500;
}

.footer-links a:hover {
    color: #e2e8f0;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.875rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}