/* Option 3: Bold Tech Startup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    line-height: 1.6;
    color: #334155;
    background: #F8FAFC;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Navbar */
.navbar {
    background: #0F172A;
    color: #FFFFFF;
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 2.5rem;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #94A3B8;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #10B981;
}

/* Hero Section */
.hero {
    background: #0F172A;
    color: #FFFFFF;
    padding: 10rem 0 8rem;
    position: relative;
    text-align: center;
}

.hero .container {
    max-width: 900px;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-logo {
    display: inline-block;
    height: 4.5rem;
    width: auto;
    vertical-align: middle;
}

.hero p {
    font-size: 1.35rem;
    margin-bottom: 3rem;
    color: #CBD5E1;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1.125rem 2.5rem;
    background: #10B981;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: #059669;
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 7rem 0;
    background: #FFFFFF;
}

.about .container {
    max-width: 800px;
}

.about h2 {
    font-size: 3rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #0F172A;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.about p {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.8;
    text-align: center;
}

.about-heading {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-logo {
    height: 6.5rem;
    width: auto;
    object-fit: contain;
}

/* Products Section */
.products {
    padding: 7rem 0;
    background: #F8FAFC;
}

.products h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #0F172A;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.products .container > p {
    font-size: 1.125rem;
    color: #64748B;
    margin-bottom: 4rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: #FFFFFF;
    padding: 3.5rem;
    border-radius: 8px;
    border-left: 4px solid #10B981;
    transition: all 0.2s ease;
}

.product-card:hover {
    transform: translateX(4px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

.product-icon {
    width: 160px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #10B981;
}

.product-icon svg {
    width: 100%;
    height: 100%;
}

/* Letter badge styling for cards without SVG */
.product-icon:not(:has(svg)) {
    width: 64px;
    height: 64px;
    background: #10B981;
    color: #FFFFFF;
    border-radius: 12px;
}

.product-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: #0F172A;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.product-card p {
    color: #64748B;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.product-link {
    color: #10B981;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-link:hover {
    color: #059669;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: #0F172A;
    text-align: center;
}

.contact h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.contact p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: #94A3B8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-button {
    display: inline-block;
    padding: 1.125rem 2.5rem;
    background: #10B981;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-button:hover {
    background: #059669;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #0F172A;
    color: #64748B;
    padding: 3rem 0;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

footer p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #64748B;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #10B981;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.75rem;
    }

    .hero-logo {
        height: 2.75rem;
    }

    .hero p {
        font-size: 1.15rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    footer .container {
        flex-direction: column;
        text-align: center;
    }

    .about h2,
    .products h2,
    .contact h2 {
        font-size: 2.25rem;
    }

    .hero {
        padding: 6rem 0 5rem;
    }
}
