/* Homepage Matured Design System */
:root {
    --primary-matured: #0F172A;     /* Deep Charcoal */
    --secondary-matured: #475569;   /* Slate Gray */
    --accent-matured: #1E293B;      /* Soft Navy */
    --bg-light: #F8FAFC;            /* Subtle Ivory/White */
    --text-main: #1E293B;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    overflow-x: hidden;
}

.font-heading {
    font-family: 'Merriweather', serif;
}

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

/* Hero Section */
.hero-matured {
    position: relative;
    padding: 120px 0;
    background-color: var(--primary-matured);
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.7) 50%, rgba(15, 23, 42, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Feature Cards */
.card-matured {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.card-matured:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-matured);
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    background-color: #F1F5F9;
    color: var(--accent-matured);
    font-size: 1.5rem;
}

/* Buttons */
.btn-matured-primary {
    background-color: var(--accent-matured);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-matured-primary:hover {
    background-color: var(--primary-matured);
    transform: scale(1.02);
    color: #fff;
}

.btn-matured-outline {
    background-color: transparent;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-matured-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
}

/* Trusted By Section */
.trusted-section {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.partner-logo {
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    max-height: 40px;
}

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

/* Section Headings */
.section-title {
    color: var(--primary-matured);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}
