/* Landing page styles */
.landing-body {
    background: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.landing-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.landing-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--gray-100);
    z-index: 100;
}

.landing-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.landing-logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.landing-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-large {
    padding: 0.75rem 2rem;
    font-size: 1.05rem;
}

/* Hero */
.hero {
    padding: 5rem 0 4rem;
    background: linear-gradient(180deg, #f0f7ff 0%, #fff 100%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    background: #e3f2fd;
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    letter-spacing: 0.2px;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero-highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Hero visual card */
.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(13, 103, 179, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: 400px;
    overflow: hidden;
}

.hero-card-header {
    display: flex;
    gap: 6px;
    align-items: center;
    padding: 12px 16px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
}

.hero-card-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-200);
}
.hero-card-dot:first-child { background: #ff5f56; }
.hero-card-dot:nth-child(2) { background: #ffbd2e; }
.hero-card-dot:nth-child(3) { background: #27c93f; }

.hero-card-title {
    margin-left: 8px;
    font-size: 0.75rem;
    color: var(--gray-600);
    font-weight: 500;
}

.hero-card-body {
    padding: 1.25rem;
}

.hero-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--gray-100);
}
.hero-card-row:last-child { border-bottom: none; }

.hero-card-row-accent {
    background: #f0fdf4;
    margin: 0 -1.25rem;
    padding: 0.6rem 1.25rem;
    border-bottom: none;
    border-radius: 0 0 12px 12px;
}

.hero-card-label {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
}

.hero-card-value {
    font-size: 0.9rem;
    color: var(--gray-900);
    font-weight: 600;
}

.hero-card-badge {
    background: #e3f2fd;
    color: #1565c0;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.hero-card-sent {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

/* Stats section */
.stats-section {
    padding: 2.5rem 0;
    background: var(--primary);
}

.landing-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.landing-stat {
    text-align: center;
}

.landing-stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.landing-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
    display: block;
}

.landing-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.25);
}

/* Features */
.features {
    padding: 5rem 0;
}

.section-heading {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.section-subheading {
    text-align: center;
    font-size: 1.05rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
}
.feature-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.feature-step {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(13, 103, 179, 0.3);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #e3f2fd;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.feature-card h3 {
    font-size: 1.15rem;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Benefits section */
.benefits-section {
    padding: 4rem 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 2rem auto 0;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--gray-100);
    transition: box-shadow 0.2s;
}
.benefit-item:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #e3f2fd;
    color: var(--primary);
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 0.95rem;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.benefit-item p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: #fff;
}

.cta-inner {
    text-align: center;
}

.cta-inner h2 {
    font-size: 1.75rem;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.cta-inner p {
    color: var(--gray-600);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.75rem;
}

/* Footer */
.landing-footer {
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-top: auto;
    border-top: 1px solid var(--gray-100);
}

.wm-barrio {
    font-size: 10px;
    font-weight: 700;
    background: #e3f2fd;
    color: #1565c0;
    padding: 3px 5px;
    border-radius: 4px;
    text-align: center;
    white-space: nowrap;
    align-self: center;
}
.wm-avp-cell { display: flex; flex-direction: column; gap: 3px; }
.wm-avp-actions { display: flex; gap: 3px; }
.wm-avp-btn {
    font-size: 9px;
    font-weight: 600;
    padding: 2px 5px;
    border-radius: 3px;
    background: #e3f2fd;
    color: #1565c0;
}
.wm-avp-btn-del { background: #ffebee; color: #c62828; padding: 2px 4px; }

/* Google sign-in button */
.btn-google {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.2rem;
    background: #fff;
    color: var(--gray-800);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    font-family: inherit;
    width: 100%;
    justify-content: center;
}
.btn-google:hover {
    background: var(--gray-50);
    border-color: var(--gray-600);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
.btn-google svg {
    flex-shrink: 0;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.25rem 0;
    font-size: 0.85rem;
    color: var(--gray-600);
}
.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}

/* Invitation card (register page) */
.register-info {
    background: #e3f2fd;
    border: 1px solid #90caf9;
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    color: #1565c0;
}

/* Invitation management (admin) */
.invitation-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.invitation-item {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.invitation-info {
    flex: 1;
    min-width: 0;
}

.invitation-email {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 0.95rem;
}

.invitation-meta {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-top: 0.25rem;
    display: flex;
    gap: 1rem;
}

.invitation-link-box {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    font-family: monospace;
    word-break: break-all;
    color: var(--gray-800);
    margin-top: 0.5rem;
    cursor: pointer;
    position: relative;
    transition: background 0.2s;
}
.invitation-link-box:hover { background: #e3f2fd; }
.invitation-link-box::after {
    content: 'Click para copiar';
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: var(--primary);
    font-family: inherit;
}

.badge-invitation {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}
.badge-pending-inv { background: #fff8e1; color: #f57f17; }
.badge-accepted-inv { background: #e8f5e9; color: #2e7d32; }
.badge-expired-inv { background: #ffebee; color: #c62828; }

.invitation-item-highlight {
    border-left: 3px solid var(--primary);
    background: #f0f7ff;
}
.invitation-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Create invitation form */
.invitation-form {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    max-width: 500px;
    margin-bottom: 2rem;
}

.invitation-form h3 {
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.invitation-form .form-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
}

/* Hero cues list */
.hero-cues {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.hero-cues li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.95rem;
    color: var(--gray-600);
}
.hero-cues li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 50%;
    font-size: 0.68rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* Workers mock (hero visual) */
.workers-mock {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(13, 103, 179, 0.12), 0 2px 8px rgba(0,0,0,0.06);
    width: 100%;
    max-width: 460px;
    overflow: hidden;
    font-size: 13px;
}
.workers-mock-body { padding: 0; }

.wm-toprow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px 8px;
    border-bottom: 1px solid var(--gray-100);
}
.wm-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--gray-900);
}
.wm-sync {
    font-size: 11px;
    color: var(--gray-600);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    padding: 3px 9px;
    border-radius: 5px;
}

.wm-badges {
    display: flex;
    gap: 6px;
    padding: 8px 14px;
    border-bottom: 1px solid var(--gray-100);
}
.wm-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
    white-space: nowrap;
}
.wm-badge-green  { background: #e8f5e9; color: #2e7d32; }
.wm-badge-orange { background: #fff3e0; color: #e65100; }
.wm-badge-red    { background: #ffebee; color: #c62828; }

.wm-colheads {
    display: grid;
    grid-template-columns: 18px 1fr 90px 90px;
    gap: 6px;
    padding: 6px 14px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gray-600);
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
}

.wm-row {
    display: grid;
    grid-template-columns: 18px 1fr 90px 90px;
    gap: 6px;
    padding: 9px 14px;
    align-items: center;
    border-bottom: 1px solid var(--gray-100);
}
.wm-row-last { border-bottom: none; }

.wm-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.wm-dot-green  { background: #4caf50; }
.wm-dot-orange { background: #ff9800; }
.wm-dot-red    { background: #ef5350; }

.wm-name {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-900);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wm-pill {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    text-align: center;
    white-space: nowrap;
}
.wm-pill em { font-style: normal; opacity: 0.7; font-weight: 500; }
.wm-pill-ok      { background: #e8f5e9; color: #2e7d32; }
.wm-pill-blocked { background: #ffebee; color: #c62828; }

/* Workers carousel — 3-column variant (idéntica para ambos slides) */
.wm-colheads-3,
.wm-row-3 {
    grid-template-columns: 18px 1fr 120px;
}
.wm-row-3 { min-height: 50px; } /* altura fija → ambos slides igual tamaño */

/* Logo pequeño en cabecera de columna — centrado */
.wm-col-logo-head { display: flex; align-items: center; justify-content: center; }
.wm-col-logo { height: 13px; width: auto; max-width: 60px; object-fit: contain; }

/* Celda de status: centra verticalmente, apila pill + fecha/botones */
.wm-status-cell {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    min-height: 34px;
}

/* Rango de fechas bajo el pill (slide 1) */
.wm-date-range { font-size: 9px; color: var(--gray-600); white-space: nowrap; }
.wm-date-warn  { color: #e65100; font-weight: 700; }

/* Carousel slide transitions */
.wm-carousel-wrap { position: relative; overflow: hidden; }
.wm-slide {
    width: 100%;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}
.wm-slide-right  { position: absolute; top: 0; left: 0; transform: translateX(100%);  opacity: 0; pointer-events: none; }
.wm-slide-active { position: relative;           transform: translateX(0);            opacity: 1; pointer-events: auto; }
.wm-slide-left   { position: absolute; top: 0; left: 0; transform: translateX(-100%); opacity: 0; pointer-events: none; }

/* Carousel dots */
.wm-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 8px 14px 6px;
    border-top: 1px solid var(--gray-100);
}
.wm-cdot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gray-200);
    transition: background 0.3s;
    cursor: pointer;
}
.wm-cdot-active { background: var(--primary); }

/* Expiring pill */
.wm-pill-expiring { background: #fff3e0; color: #e65100; }

.wm-footer {
    padding: 7px 14px;
    font-size: 11px;
    color: var(--gray-600);
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
    text-align: right;
}

/* Problem section */
.problem-section {
    padding: 5rem 0;
    background: #fff;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.problem-card {
    padding: 1.75rem;
    border-radius: 12px;
    border: 1.5px solid;
}
.problem-card-bad  { background: #fffbfb; border-color: #fca5a5; }
.problem-card-good { background: #f7fffe; border-color: #86efac; }

.problem-card-heading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}
.problem-card-bad  .problem-card-heading { color: #b91c1c; }
.problem-card-good .problem-card-heading { color: #166534; }

.problem-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.problem-list li {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
    padding-left: 1.25rem;
    position: relative;
}
.problem-card-bad  .problem-list li::before { content: '→'; position: absolute; left: 0; color: #ef4444; font-size: 0.8rem; top: 1px; }
.problem-card-good .problem-list li::before { content: '✓'; position: absolute; left: 0; color: #22c55e; font-size: 0.8rem; font-weight: 700; top: 1px; }
.problem-list li strong { color: var(--gray-900); }

/* Section tag */
.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

/* Workers feature section */
.workers-feature-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #fafffe 100%);
    border-top: 1px solid var(--gray-100);
}
.workers-feature-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.workers-feature-text h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.workers-feature-text p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.wf-semaforo-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.wf-semaforo-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}
.wf-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 3px;
}
.wf-dot-green  { background: #4caf50; }
.wf-dot-orange { background: #ff9800; }
.wf-dot-red    { background: #ef5350; }
.wf-semaforo-list li div { display: flex; flex-direction: column; gap: 2px; }
.wf-semaforo-list li strong { font-size: 0.9rem; color: var(--gray-900); }
.wf-semaforo-list li span  { font-size: 0.85rem; color: var(--gray-600); }

/* Workers feature visual card */
.wf-semaforo-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(13, 103, 179, 0.1), 0 1px 4px rgba(0,0,0,0.04);
    overflow: hidden;
    max-width: 320px;
    margin: 0 auto;
}
.wf-sc-header {
    padding: 12px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-600);
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
}
.wf-sc-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    border-bottom: 1px solid var(--gray-100);
}
.wf-sc-name {
    flex: 1;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-900);
}
.wf-sc-days {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 4px;
    background: #e8f5e9;
    color: #2e7d32;
}
.wf-sc-days-warn    { background: #fff3e0; color: #e65100; }
.wf-sc-days-blocked { background: #ffebee; color: #c62828; }
.wf-sc-summary {
    display: flex;
    gap: 6px;
    padding: 10px 16px;
    flex-wrap: wrap;
}
.wf-sum-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
}
.wf-sum-green  { background: #e8f5e9; color: #2e7d32; }
.wf-sum-orange { background: #fff3e0; color: #e65100; }
.wf-sum-red    { background: #ffebee; color: #c62828; }

/* Connected apps section */
.connected-apps-section {
    padding: 5rem 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}
.connected-apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}
.connected-app-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--gray-100);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: box-shadow 0.2s, transform 0.2s;
}
.connected-app-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    transform: translateY(-2px);
}
.ca-logo-wrap {
    height: 48px;
    display: flex;
    align-items: center;
}
.ca-logo {
    height: 36px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
}
.ca-soon-icon { color: var(--gray-600); }
.connected-app-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}
.connected-app-card p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
    flex: 1;
}
.ca-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    align-self: flex-start;
    margin-top: auto;
}
.ca-badge-connected { background: #e8f5e9; color: #2e7d32; }
.ca-badge-soon      { background: var(--gray-100); color: var(--gray-600); }
.ca-badge-free      { background: #e3f2fd; color: #1565c0; }
.ca-soon {
    border-style: dashed;
    background: var(--gray-50);
}
.apps-suggest-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--gray-600);
}
.apps-suggest-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}
.apps-suggest-link:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 768px) {
    .hero { padding: 3rem 0 2rem; }
    .hero-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .hero-text h1 { font-size: 2rem; }
    .hero-subtitle { max-width: none; }
    .hero-actions { justify-content: center; flex-wrap: wrap; }
    .features-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .feature-card { padding: 2rem 1.25rem; }
    .benefits-grid { grid-template-columns: 1fr; }
    .landing-stats { flex-direction: column; gap: 1.5rem; }
    .landing-stat-divider { width: 48px; height: 1px; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; max-width: 280px; text-align: center; }
    .invitation-item { flex-direction: column; align-items: flex-start; }
    .invitation-form .form-row { grid-template-columns: 1fr; }
    .hero-cues { align-items: flex-start; }
    .workers-mock { max-width: 100%; font-size: 11px; }
    .wm-colheads,
    .wm-row { grid-template-columns: 14px 1fr 70px 70px; gap: 4px; padding: 8px 10px; }
    .problem-grid { grid-template-columns: 1fr; }
    .workers-feature-inner { grid-template-columns: 1fr; gap: 2rem; }
    .wf-semaforo-card { max-width: 100%; }
    .connected-apps-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .connected-apps-grid { grid-template-columns: 1fr; }
    .wm-colheads,
    .wm-row { grid-template-columns: 14px 1fr 62px 62px; }
}
