:root {
    --primary-color: #1E4B9B; /* Custom Blue */
    --primary-dark: #153570;  /* Darker Blue */
    --secondary-color: #64748b;
    --bg-color: #f8fafc;
    --text-color: #0f172a;
    --white: #ffffff;
    --success: #10b981;
    --warning: #f59e0b;
    --border-radius: 16px;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --gradient-hero: linear-gradient(135deg, #e6f0ff 0%, #f0f7ff 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

main {
    flex: 1;
    padding: 60px 0;
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 48px; /* Slightly larger logo */
    width: auto;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:not(.btn):hover {
    color: var(--primary-color);
}

.nav-links a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-links .btn {
    color: #ffffff !important;
    font-weight: 700 !important;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 120px 40px;
    background: linear-gradient(135deg, #e6f0ff 0%, #f0f7ff 50%, #f5f9ff 100%);
    border-radius: 32px;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(30, 75, 155, 0.08);
}

.hero h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 32px;
    background: linear-gradient(to right, #1E4B9B, #0d1f3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.hero p {
    font-size: 1.35rem;
    color: #475569;
    max-width: 750px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: linear-gradient(135deg, #1E4B9B 0%, #153570 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px 0 rgba(30, 75, 155, 0.35);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: linear-gradient(135deg, #153570 0%, #0d1f3c 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(30, 75, 155, 0.45);
}

/* Cards Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #f1f5f9;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #1E4B9B, #0d1f3c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 48px rgba(30, 75, 155, 0.15);
    border-color: #e6f0ff;
}

.card h3 {
    margin-bottom: 16px;
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.card p {
    color: var(--secondary-color);
    margin-bottom: 24px;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Products Specific */
.product-category {
    margin-bottom: 80px;
}

.product-category h2 {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 2rem;
    color: #1e293b;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-badge.live {
    background-color: #dcfce7;
    color: #15803d;
}

.status-badge.dev {
    background-color: #f1f5f9;
    color: #64748b;
}

/* Footer */
footer {
    background-color: var(--white);
    padding: 60px 0;
    margin-top: auto;
    border-top: 1px solid #e2e8f0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Simple mobile hide for now */
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
}

