.workflow-card {
    animation: fadeUp .8s ease-out forwards;
    opacity: 0;
}
.card-inner {
    height: 100%;
    padding: 2rem;
    border-radius: 1.75rem;
    background: linear-gradient(135deg,#e6f4f3,#ffffff,#f8fbfb);
    border: 1px solid #e2e8f0;
    box-shadow: inset 0 0px 12px rgba(15, 118, 110, .08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all .5s ease;
    margin-bottom: .75rem;
}

.metric {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}
.metric span {
    font-size: 3.75rem;
    font-weight: 900;
    color: #0f766e;
    letter-spacing: -.05em;
}
.metric svg {
    width: 48px;
    height: 48px;
    fill: none;
    stroke: #99f6e4;
    stroke-width: 1.5;
    transition: stroke .3s ease;
}
.workflow-card:hover svg {
    stroke: #0f766e;
}
.card-inner > div > h3 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #0f172a;
}
.card-inner p {
    color: #475569;
    font-weight: 500;
    line-height: 1.6;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/*Footer*/
.site-footer-light {
    background-color: #f8fafc; /* Slate 50 */
    color: #64748b; /* Slate 500 */
    padding-top: 5rem;
    padding-bottom: 2.5rem;
    border-top: 1px solid #e2e8f0; /* Slate 200 */
    font-family: 'Inter', sans-serif;
}
.site-footer-light .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}
@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: 4fr 3fr; }
}

/* Brand Section */
.footer-brand { display: flex; flex-direction: column; gap: 1.5rem; }
.brand-link { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; color: #0f172a; /* Slate 900 */ }
.brand-logo {
    height: 2.5rem; width: 2.5rem;
    background-color: #0d9488; /* Teal 600 */
    color: white;
    border-radius: 0.75rem;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(13, 148, 136, 0.1), 0 2px 4px -1px rgba(13, 148, 136, 0.06);
}
.brand-name { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.025em; }
.brand-desc { color: #64748b; line-height: 1.625; max-width: 24rem; font-size: 15px }

/* Navigation Columns */
.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
@media (min-width: 768px) {
    .footer-nav { grid-template-columns: repeat(3, 1fr); }
}
.nav-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}
.nav-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.875rem; }
.nav-col a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-col a:hover { color: #0d9488; /* Teal 600 */ }
.badge {
    font-size: 0.625rem;
    background-color: #ccfbf1; /* Teal 100 */
    color: #0f766e; /* Teal 700 */
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    margin-left: 0.25rem;
    font-weight: 600;
}

/* Social Links */
.social-links { display: flex; flex-direction: row; gap: 0.75rem; }
.social-link { display: flex; align-items: center; gap: 0.625rem; color: #64748b; text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
.social-link:hover { color: #0f172a; }
.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: inline-flex;
    text-decoration: none;
}

.icon-box {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;

    background: #ffffff;
    border: 1px solid #e2e8f0;

    color: #006964;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 
    transform 250ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 250ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 250ms ease,
    background-color 250ms ease,
    color 250ms ease;

    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.icon-box i {
    font-size: 16px;
    color: currentColor;
    transition: transform 250ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Hover */
.social-link:hover .icon-box {
    border-color: #0d9488;
    color: #0d9488;

    transform: translateY(-3px) scale(1.06);

    box-shadow:
    0 10px 20px rgba(13, 148, 136, 0.15),
    0 6px 10px rgba(0, 0, 0, 0.08);
}

.social-link:hover .icon-box i {
    transform: scale(1.08);
}

/* Active (click) */
.social-link:active .icon-box {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

/* Keyboard accessibility */
.social-link:focus-visible .icon-box {
    outline: none;
    border-color: #0d9488;
    box-shadow:
    0 0 0 4px rgba(13, 148, 136, 0.18),
    0 8px 18px rgba(0, 0, 0, 0.08);
}


/* Bottom Bar */
.footer-bottom {
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}
@media (min-width: 768px) {
    .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.copyright, .legal-links, .status-indicator { font-size: 0.875rem; color: #64748b; }
.legal-links { display: flex; gap: 1.5rem; margin-right: 1rem; }
.legal-links a { color: #64748b; text-decoration: none; transition: color 0.2s; }
.legal-links a:hover { color: #0f172a; }

.status-indicator {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #475569;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.status-dot { position: relative; display: flex; height: 0.5rem; width: 0.5rem; }
.ping {
    position: absolute; display: inline-flex; height: 100%; width: 100%;
    border-radius: 9999px; background-color: #2dd4bf; opacity: 0.75;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.dot { position: relative; display: inline-flex; height: 0.5rem; width: 0.5rem; border-radius: 9999px; background-color: #14b8a6; }
@keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } }
