:root {
    --primary: #3879a9;
    --primary-dark: #0D3082;
    --primary-light: #5a9bc9;
    --secondary: #014D40;
    --accent: #6339EF;
    --dark: #0c1430;
    --gray-100: #E6EBF3;
    --gray-200: #DAD1EB;
    --gray-600: #475569;
    --gray-800: #0c1430;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: var(--dark) !important;
}
.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: white !important;
}
.navbar-brand img {
    height: 40px;
    width: auto;
}
.nav-link {
    font-weight: 500;
    color: rgba(255,255,255,0.85) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s;
    position: relative;
}
.nav-link:hover {
    color: white !important;
}
.nav-link.active {
    color: white !important;
}
.nav-link.active::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}
.dropdown-toggle.active::before {
    right: 2rem;
}
.navbar-toggler {
    border-color: rgba(255,255,255,0.3);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.dropdown-menu {
    background: white;
    border: 1px solid var(--gray-200);
}
.dropdown-item {
    color: var(--gray-800);
}
.dropdown-item:hover {
    background: var(--gray-100);
    color: var(--primary);
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.2s;
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}
.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
}
.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
}
.btn-light {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0fdf4 100%);
    padding: 5rem 0 6rem;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-badge {
    display: inline-block;
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 1.5rem;
}
.hero-title span {
    color: var(--primary);
}
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Trust Bar */
.trust-bar {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid var(--gray-200);
}
.trust-bar p {
    color: var(--gray-600);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}
.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.6;
}
.trust-logos img {
    height: 32px;
    filter: grayscale(100%);
    transition: all 0.3s;
}
.trust-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Section Styling */
section {
    padding: 5rem 0;
}
.section-badge {
    display: inline-block;
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary);
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}
.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0fdf4 100%);
    padding: 6rem 0 4rem;
}
.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.page-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 700px;
}

/* Problem Statement Cards */
.problem-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}
.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: var(--primary-light);
}
.problem-card .icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.problem-card .icon i {
    font-size: 1.5rem;
    color: white;
}
.problem-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}
.problem-card p {
    color: var(--gray-600);
    margin-bottom: 0;
    font-size: 0.9375rem;
}

/* Services Grid */
.service-card {
    background: white;
    border-radius: 12px;
    padding: 1.75rem;
    height: 100%;
    border: 1px solid var(--gray-200);
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: var(--primary-light);
    color: inherit;
}
.service-card .number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}
.service-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}
.service-card p {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 0;
}
.service-card .arrow {
    color: var(--primary);
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s;
}
.service-card:hover .arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Therapeutic Areas */
.therapeutic-section {
    background: var(--gray-100);
}

/* Simple therapeutic card (homepage - horizontal) */
.therapeutic-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}
.therapeutic-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    color: var(--primary);
    border-color: var(--primary-light);
}
.therapeutic-card > i {
    font-size: 1.5rem;
    color: var(--primary);
}
.therapeutic-card > span {
    font-weight: 600;
    font-size: 0.9375rem;
}

/* Detailed therapeutic card (therapeutic areas pages - vertical) */
.therapeutic-card .icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.therapeutic-card .icon ~ * {
    /* When .icon exists, switch to vertical layout */
    display: block;
}
.therapeutic-card:has(.icon) {
    display: block;
    padding: 2rem;
    border-radius: 16px;
    height: 100%;
}
.therapeutic-card:has(.icon):hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
    color: var(--dark);
}
.therapeutic-card .icon i {
    font-size: 2rem;
    color: white;
}
.therapeutic-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}
.therapeutic-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.therapeutic-card .stats {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 1rem;
}
.therapeutic-card .stat-item {
    text-align: left;
}
.therapeutic-card .stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.therapeutic-card .stat-label {
    font-size: 0.75rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}
.therapeutic-card .arrow {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.therapeutic-card:hover .arrow {
    gap: 0.75rem;
}

/* Specialty List */
.specialty-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}
.specialty-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    transition: all 0.2s ease;
}
.specialty-item:hover {
    border-color: var(--primary-light);
    background: rgba(56, 121, 169, 0.03);
}
.specialty-item i {
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}
.specialty-item span {
    font-weight: 500;
    color: var(--dark);
    font-size: 0.9375rem;
}

/* Resource Cards */
.resource-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    height: 100%;
}
.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

/* Contact Cards */
.contact-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--gray-200);
    height: auto;
    transition: all 0.3s ease;
}
.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: var(--primary-light);
}
.contact-card .icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.contact-card .icon i {
    font-size: 1.5rem;
    color: white;
}
.contact-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}
.contact-card p {
    color: var(--gray-600);
    margin-bottom: 0;
    font-size: 0.9375rem;
}
.contact-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-top: 0.5rem;
}
.contact-card a:hover {
    color: var(--primary-dark);
}

/* Office Cards */
.office-card {
    background: white;
    border-radius: 12px;
    padding: 1.75rem;
    border: 1px solid var(--gray-200);
    height: 100%;
    transition: all 0.3s ease;
}
.office-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border-color: var(--primary-light);
}
.office-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}
.office-card p {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.office-card p i {
    color: var(--primary);
    font-size: 1rem;
}

/* Differentiation Section */
.diff-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}
.diff-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}
.diff-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.diff-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}
.diff-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.diff-item .check {
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.diff-item .check i {
    font-size: 0.875rem;
}
.diff-item-content h5 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.diff-item-content p {
    font-size: 0.9375rem;
    opacity: 0.85;
    margin-bottom: 0;
}

/* Stats Section */
.stats-section {
    background: var(--gray-100);
}
.stat-card {
    text-align: center;
    padding: 2rem 1rem;
}
.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    color: var(--gray-600);
    font-weight: 500;
}

/* Case Studies */
.case-study-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    height: 100%;
}
.case-study-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.case-study-card .card-img {
    height: 180px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.case-study-card .metric {
    font-size: 3rem;
    font-weight: 800;
    color: white;
}
.case-study-card .card-body {
    padding: 1.5rem;
}
.case-study-card .tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}
.case-study-card h5 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}
.case-study-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}
.case-study-card .read-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.case-study-card .read-more:hover {
    gap: 0.75rem;
}

/* Platform Preview */
.platform-section {
    background: linear-gradient(180deg, white 0%, var(--gray-100) 100%);
}
.platform-preview {
    background: white;
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.12);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}
.platform-preview .browser-bar {
    background: var(--gray-100);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--gray-200);
}
.platform-preview .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-200);
}
.platform-preview .dot.red { background: #ef4444; }
.platform-preview .dot.yellow { background: #f59e0b; }
.platform-preview .dot.green { background: #22c55e; }
.platform-preview .dashboard {
    padding: 2rem;
    background: var(--gray-100);
}
.dashboard-card {
    background: white;
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid var(--gray-200);
}
.dashboard-card h6 {
    font-size: 0.75rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}
.dashboard-card .value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
}
.dashboard-card .change {
    font-size: 0.875rem;
    color: #22c55e;
    font-weight: 600;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}
.feature-list li:last-child {
    border-bottom: none;
}
.feature-list li i {
    color: var(--secondary);
    font-size: 1.25rem;
}
.feature-list li span {
    font-weight: 500;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--gray-200);
    height: 100%;
}
.testimonial-card .stars {
    color: var(--accent);
    margin-bottom: 1rem;
}
.testimonial-card blockquote {
    font-size: 1.0625rem;
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.testimonial-card .avatar {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}
.testimonial-card .author-info h6 {
    font-weight: 600;
    margin-bottom: 0.125rem;
    color: var(--dark);
}
.testimonial-card .author-info p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    background: var(--gray-100);
}
.accordion-item {
    border: 1px solid var(--gray-200);
    margin-bottom: 1rem;
    border-radius: 12px !important;
    overflow: hidden;
}
.accordion-button {
    font-weight: 600;
    color: var(--dark);
    padding: 1.25rem 1.5rem;
}
.accordion-button:not(.collapsed) {
    background: white;
    color: var(--primary);
}
.accordion-button:focus {
    box-shadow: none;
}
.accordion-body {
    padding: 0 1.5rem 1.25rem;
    color: var(--gray-600);
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--secondary) 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}
.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.final-cta p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Footer */
footer {
    background: #0c1430;
    color: white;
    padding: 4rem 0 2rem;
}
footer h6 {
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: white;
}
footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    display: block;
    padding: 0.375rem 0;
    transition: color 0.2s;
}
footer a:hover {
    color: white;
}
footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    margin-right: 0.5rem;
    transition: all 0.2s;
}
footer .social-links a:hover {
    background: var(--primary);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding-top: 2rem;
}
.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

/* Value Cards (About Page) */
.value-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: var(--primary-light);
}
.value-card .icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.value-card .icon i {
    font-size: 1.5rem;
    color: white;
}
.value-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}
.value-card p {
    color: var(--gray-600);
    margin-bottom: 0;
    font-size: 0.9375rem;
}

/* Timeline (About Page) */
.timeline {
    position: relative;
    padding-left: 2rem;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--primary-light));
    border-radius: 2px;
}
.timeline-item {
    position: relative;
    padding-left: 2rem;
    padding-bottom: 2.5rem;
}
.timeline-item:last-child {
    padding-bottom: 0;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.25rem;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--gray-100);
}
.timeline-year {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.timeline-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.timeline-text {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* Team Cards (About Page) */
.team-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    height: 100%;
}
.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
    border-color: var(--primary-light);
}
.team-card .avatar {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 800;
    color: white;
}
.team-card .card-body {
    padding: 1.5rem;
}
.team-card h5 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}
.team-card .role {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.team-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}
.team-card .social-links {
    display: flex;
    gap: 0.5rem;
}
.team-card .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--gray-100);
    border-radius: 8px;
    color: var(--gray-600);
    transition: all 0.2s;
    text-decoration: none;
}
.team-card .social-links a:hover {
    background: var(--primary);
    color: white;
}

/* Filter Buttons (Case Studies) */
.filter-btn {
    background: white;
    border: 1px solid var(--gray-200);
    color: var(--gray-600);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
}
.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(56, 121, 169, 0.05);
}
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Feature Grid (Solutions Pages) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.feature-item {
    background: white;
    border-radius: 12px;
    padding: 1.75rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}
.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: var(--primary-light);
}
.feature-item .icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.feature-item .icon i {
    font-size: 1.25rem;
    color: white;
}
.feature-item h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}
.feature-item p {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--secondary) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}
.cta-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.cta-section p {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}
.cta-section .btn-light {
    background: white;
    color: var(--primary);
    border-color: white;
}
.cta-section .btn-light:hover {
    background: var(--gray-100);
    color: var(--primary-dark);
    border-color: var(--gray-100);
}
.cta-section .btn-outline-light {
    color: white;
    border-color: white;
}
.cta-section .btn-outline-light:hover {
    background: white;
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .stat-number {
        font-size: 2.25rem;
    }
    .timeline {
        padding-left: 1.5rem;
    }
    .timeline-item {
        padding-left: 1.5rem;
    }
    .cta-section h2 {
        font-size: 1.75rem;
    }
}
