:root {
    --primary: #4f46e5; /* Indigo */
    --accent: #06b6d4;  /* Cyan */
    --text-main: #1f2937;
    --bg-light: #f9fafb;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    color: var(--text-main);
    background: white;
}

/* --- Navigation --- */
nav {
    display: flex;
    justify-content: space-between;
    padding: 2rem 10%;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -1px;
    color: var(--primary);
}

.links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    margin-left: 2rem;
    font-size: 0.9rem;
}

/* --- Colorful Minimal Hero --- */
.hero {
    padding: 100px 10%;
    text-align: center;
    /* Soft Innovation Gradient */
    background: radial-gradient(at top left, #e0e7ff 0%, #ffffff 50%),
                radial-gradient(at bottom right, #f0f9ff 0%, #ffffff 50%);
}

h1 {
    font-size: 1.5rem; /* Small, uniform size as requested */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #111827;
}

.hero p {
    font-size: 1rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.cta {
    background: var(--primary);
    color: white;
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    border-radius: 50px; /* Modern pill shape */
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.3);
}

.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

/* --- Capabilities Grid --- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 80px 10%;
    background: var(--bg-light);
}

.card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: 0.3s;
}

.card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card h3 {
    font-size: 1.2rem;
    margin: 1rem 0;
}

/* Colorful Accents for Cards */
.icon-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-bottom: 10px;
}
.blue { background: #3b82f6; }
.purple { background: #8b5cf6; }
.cyan { background: #06b6d4; }

/* --- Footer --- */
footer {
    text-align: center;
    padding: 4rem;
    font-size: 0.8rem;
    color: #9ca3af;
}

/* --- Capabilities Detail Page Styles --- */

.capabilities-hero {
    padding: 60px 10% 40px;
    background: radial-gradient(at top right, #f5f3ff 0%, #ffffff 100%);
}

.capabilities-detail {
    padding: 40px 10%;
    background: #fff;
}

.detail-block {
    padding: 60px 0;
    border-bottom: 1px solid #f3f4f6;
    max-width: 800px;
    margin: 0 auto;
}

.detail-block:last-child {
    border-bottom: none;
}

.detail-text h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #111827;
}

.detail-text p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.detail-text ul {
    list-style: none;
    padding: 0;
}

.detail-text li {
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
    position: relative;
    color: #374151;
}

.detail-text li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.cta-section {
    text-align: center;
    padding: 100px 10%;
    background: var(--bg-light);
}

.cta-section h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}