@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Space+Grotesk:wght@500;600&display=swap');

:root {
    --primary: #0f172a;
    --accent: #0d9488;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
}

.font-display {
    font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    font-weight: 600;
}

.section-header {
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.page-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f766e 100%);
}

.nav-link {
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: #0891b2;
}

.nav-active {
    color: #0891b2;
    font-weight: 600;
}

.card-hover {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.modern-shadow {
    box-shadow: 0 10px 15px -3px rgb(15 23 42 / 0.08),
                0 4px 6px -4px rgb(15 23 42 / 0.08);
}

.definition-card {
    border-left: 4px solid #0891b2;
}

.service-icon {
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(3deg);
    color: #0891b2;
}

.lifecycle-tab {
    transition: all 0.2s ease;
}

.lifecycle-tab.active {
    background-color: #0891b2;
    color: white;
    box-shadow: 0 10px 15px -3px rgb(8 145 178 / 0.2);
}

.hero-slide {
    background-size: cover;
    background-position: center;
}

.partner-logo {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.blog-content h2,
.blog-content h3 {
    font-weight: 600;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    color: #0f172a;
}

.blog-content h2 { font-size: 1.5rem; }
.blog-content h3 { font-size: 1.25rem; }

.blog-content p {
    margin-bottom: 1em;
}

.blog-content ul,
.blog-content ol {
    margin: 1em 0;
    padding-left: 1.5em;
}

.blog-content ul { list-style-type: disc; }
.blog-content ol { list-style-type: decimal; }

.blog-content li { margin-bottom: 0.35em; }

.blog-content a {
    color: #0891b2;
    text-decoration: underline;
}

.blog-content blockquote {
    border-left: 4px solid #0891b2;
    padding-left: 1em;
    margin: 1.5em 0;
    color: #52525b;
    font-style: italic;
}

.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
}

.blog-content th,
.blog-content td {
    border: 1px solid #e4e4e7;
    padding: 0.5em 0.75em;
    text-align: left;
}

.blog-content th {
    background: #f4f4f5;
    font-weight: 600;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin: 1.25em 0;
}

.blog-content h4 {
    font-weight: 600;
    margin-top: 1.25em;
    margin-bottom: 0.5em;
    color: #0f172a;
}

.blog-content pre {
    background: #f4f4f5;
    padding: 1em;
    border-radius: 0.5rem;
    overflow-x: auto;
    font-size: 0.875rem;
}

.blog-content .lead {
    font-size: 1.125rem;
    color: #52525b;
}
