/* Root color variables */
:root {
    --deep-blue: #0d1b2a;
    --electric-violet: #6c63ff;
    --cyber-teal: #00c2c2;
    --light-bg: #f3f4f6;
    --card-bg: rgba(255,255,255,0.05);
    --text-color: #e2e8f0;
}

/* Base styles */
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--deep-blue);
    color: var(--text-color);
    line-height: 1.6;
}
a {
    color: var(--electric-violet);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover {
    color: var(--cyber-teal);
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: rgba(13,27,42,0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.header-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--electric-violet);
}
.nav a {
    margin-left: 1.25rem;
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.2s ease;
}
.nav a:hover {
    color: var(--cyber-teal);
}

/* Hero */
.hero {
    position: relative;
    height: 85vh;
    min-height: 520px;
    background-image: url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.8));
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 0 1rem;
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.tagline {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #dfe7f5;
}
.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.cta-buttons .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.btn.primary {
    background-color: var(--electric-violet);
    color: #fff;
}
.btn.primary:hover {
    background-color: var(--cyber-teal);
    color: var(--deep-blue);
}
.btn.secondary {
    border: 2px solid var(--electric-violet);
    color: var(--electric-violet);
}
.btn.secondary:hover {
    background-color: var(--electric-violet);
    color: var(--deep-blue);
}

/* Sections */
.section {
    padding: 4rem 0;
}
.section h2 {
    font-size: 2rem;
    color: var(--electric-violet);
    margin-bottom: 1.5rem;
    text-align: center;
}
.section h3 {
    font-size: 1.4rem;
    color: var(--cyber-teal);
    margin-bottom: 0.5rem;
}

.mission p {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    text-align: center;
    color: #cfd8e3;
}
.two-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.two-columns > div {
    flex: 1 1 300px;
}

/* Grid layouts */
.grid {
    display: grid;
    gap: 1.5rem;
}
.grid.two {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.grid.four {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Trend items */
.trend-item {
    background-color: rgba(255,255,255,0.05);
    border-radius: 0.75rem;
    padding: 1.25rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.trend-item h4 {
    margin-top: 0;
    font-size: 1.1rem;
    color: var(--cyber-teal);
    margin-bottom: 0.5rem;
}

/* Differentiators list */
.diff-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 900px;
    margin: 0 auto;
}
.diff-list li {
    margin-bottom: 0.75rem;
    background-color: rgba(255,255,255,0.05);
    padding: 0.75rem 1rem;
    border-left: 4px solid var(--cyber-teal);
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

/* Services cards */
.service-card {
    background-color: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.service-card h3 {
    margin-top: 0;
    font-size: 1.25rem;
    color: var(--cyber-teal);
    margin-bottom: 0.5rem;
}

/* Packages */
.packages .package-grid {
    gap: 1.5rem;
}
.package-card {
    background-color: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
}
.package-card h3 {
    margin-top: 0;
    font-size: 1.2rem;
    color: var(--cyber-teal);
    margin-bottom: 0.4rem;
}
.package-card .price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--electric-violet);
    margin-bottom: 0.75rem;
}
.package-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    flex-grow: 1;
}
.package-card ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
    line-height: 1.4;
}
.package-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.4rem;
    height: 0.4rem;
    background-color: var(--cyber-teal);
    border-radius: 50%;
}

/* SLA table */
.sla-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background-color: rgba(255,255,255,0.05);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.sla-table th, .sla-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.sla-table thead {
    background-color: var(--electric-violet);
    color: #fff;
}
.sla-table tbody tr:nth-child(even) {
    background-color: rgba(255,255,255,0.05);
}

/* Contact section */
.contact p {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    text-align: center;
    color: #cfd8e3;
}
.contact .btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--electric-violet);
    color: #fff;
    border-radius: 9999px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.contact .btn:hover {
    background-color: var(--cyber-teal);
    color: var(--deep-blue);
}

/* Footer */
.footer {
    background-color: var(--electric-violet);
    color: var(--deep-blue);
    padding: 1rem 0;
    text-align: center;
}
.footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    .cta-buttons {
        flex-direction: column;
    }
    .hero h1 {
        font-size: 2.4rem;
    }
    .tagline {
        font-size: 1.1rem;
    }
}