/* Webkevara Styles - Modern Tech Integration MSP */

/* Color Palette */
:root {
    --primary: #0891b2;
    --primary-dark: #0e7490;
    --accent: #22d3ee;
    --dark: #0f172a;
    --dark-soft: #1e293b;
    --gray: #64748b;
    --light: #f1f5f9;
    --white: #ffffff;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 50%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 8rem 0 6rem;
    text-align: center;
}

.brand-name {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    color: var(--light);
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(34, 211, 238, 0.4);
}

.cta-button:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 211, 238, 0.6);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--white);
}

.about h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.intro {
    text-align: center;
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(8, 145, 178, 0.15);
}

.icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--dark);
    color: var(--white);
}

.services h2 {
    text-align: center;
    color: var(--white);
    margin-bottom: 3rem;
}

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

.service-item {
    background: var(--dark-soft);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(30, 41, 59, 0.8);
    transform: translateX(5px);
    border-left-color: var(--primary);
}

.service-item h4 {
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.service-item p {
    color: var(--light);
    line-height: 1.7;
}

/* Why Us Section */
.why-us {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.why-us h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.why-intro {
    text-align: center;
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.benefits {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.check {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: bold;
    flex-shrink: 0;
}

.benefit p {
    color: var(--dark);
    line-height: 1.6;
}

.benefit strong {
    color: var(--primary);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.contact h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-intro {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: var(--light);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.contact-method {
    flex: 1;
    min-width: 250px;
}

.contact-method h4 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-method p {
    font-size: 1.125rem;
    line-height: 1.8;
}

.contact-method a {
    color: var(--white);
    text-decoration: none;
    border-bottom: 2px solid var(--accent);
    transition: border-color 0.3s ease;
}

.contact-method a:hover {
    border-bottom-color: var(--white);
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--light);
    padding: 2.5rem 0;
    text-align: center;
}

footer p {
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .brand-name {
        font-size: 2.5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.25rem;
    }

    .subtitle {
        font-size: 1.125rem;
    }

    .hero {
        padding: 5rem 0 4rem;
    }

    .value-grid,
    .service-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 2.5rem;
    }

    .benefit {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }

    .brand-name {
        font-size: 2rem;
    }

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}
