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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #0a0f14;
}

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

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0f14 0%, #1a232e 100%);
    text-align: center;
}

.hero-logo {
    max-height: 30vh;
    width: auto;
    margin-bottom: 2rem;
    border: 2px solid #00d4ff;
    border-radius: 10px;
}

.brand-title {
    font-size: 3.00rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00d4ff, #7b2cbf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

.hero h2 {
    font-size: 1.6765rem;
    color: #a0aec0;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.2125rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: #a0aec0;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    color: #a0aec0;
    text-decoration: none;
    background-color: #0a0f14;
    border: 2px solid #00d4ff;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

/* Brand Title - matches button gradient */
.brand-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00d4ff, #7b2cbf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background-color: #0a0f14;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #a0aec0;
}

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

.service-card {
    background-color: #1a232e;
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2d3748;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
}

.service-card h3 {
    color: #00d4ff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.intro-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #a0aec0;
    font-size: 1.1rem;
}

.use-case, .solution {
    margin: 1.5rem 0;
}

.use-case h4, .solution h4 {
    color: #7b2cbf;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.use-case p, .solution p {
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.solution p:first-of-type {
    font-size: 1rem;
}

.service-card em {
    display: block;
    margin-top: 0.75rem;
    padding: 0.75rem;
    background-color: rgba(0, 212, 255, 0.1);
    border-left: 3px solid #00d4ff;
    color: #a0aec0;
    font-style: normal;
    font-size: 0.9rem;
}

/* Solutions Section */
.solutions {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0f14 0%, #1a232e 100%);
}

.solutions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #a0aec0;
}

.solution-item {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background-color: #1a232e;
    border-radius: 12px;
    border-left: 4px solid #00d4ff;
}

.solution-item h3 {
    color: #7b2cbf;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: #0a0f14;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #2d3748;
    border-radius: 8px;
    background-color: #1a232e;
    color: white;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00d4ff;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    padding: 1rem;
    background: linear-gradient(135deg, #00d4ff, #7b2cbf);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

/* Footer */
.footer {
    background-color: #0a0f14;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid #1a232e;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #00d4ff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 4rem 0;
    }

    .hero-logo {
        max-height: 19.5vh;
    }

    .brand-title {
        font-size: 2.3rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .services, .solutions, .contact { padding: 3rem 0; }
}